Differences From Artifact [716f40add4]:
- Executable file build/cackey_win32_build/build.sh — part of check-in [f238396b29] at 2010-10-15 17:56:55 on branch trunk — Updated Win32 build script to use relative paths (user: rkeene, size: 284) [annotate] [blame] [check-ins using] [more...]
To Artifact [ad50b00270]:
- Executable file build/cackey_win32_build/build.sh — part of check-in [e0a76b9d35] at 2011-01-12 15:29:52 on branch trunk — Updated to remove duplicate file (causes problems on case-insensitive filesystems) (user: rkeene, size: 433) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | + + + + | #! /bin/bash make distclean cp "./build/cackey_win32_build/lib/winscard.dll" "./build/cackey_win32_build/lib/WinSCard.dll" ./configure --with-pcsc-headers="$(pwd)/build/cackey_win32_build/include" --with-pcsc-libs="-L$(pwd)/build/cackey_win32_build/lib -lwinscard" --host=i586-mingw32msvc CPPFLAGS="-I$(pwd)/build/cackey_win32_build/include" || exit 1 make || exit 1 rm -f "./build/cackey_win32_build/lib/WinSCard.dll" exit 0 |