Overview
| Comment: | Corrected name of new Windows compiler |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
39dd453bcd154df54301b22fc0714966 |
| User & Date: | rkeene on 2012-07-19 05:43:19 |
| Other Links: | manifest | tags |
Context
|
2012-07-19
| ||
| 16:06 | Updated to a zlib compiled by a newer mingw32-w64 check-in: e095e31b05 user: rkeene tags: trunk | |
| 05:43 | Corrected name of new Windows compiler check-in: 39dd453bcd user: rkeene tags: trunk | |
| 05:39 | Updated to build using mingw32-w64 built-in winscard check-in: a2b7df3c9a user: rkeene tags: trunk | |
Changes
Modified build/cackey_win64_build/build.sh from [57487d4186] to [359d2acbba].
1 2 3 4 | #! /bin/bash make distclean | | | 1 2 3 4 5 6 7 8 9 | #! /bin/bash make distclean ./configure --with-pcsc-headers="$(pwd)/build/cackey_win64_build/include" --with-pcsc-libs="-L$(pwd)/build/cackey_win64_build/lib -lwinscard" --host=x86_64-w64-mingw32 CPPFLAGS="-I$(pwd)/build/cackey_win64_build/include" || exit 1 make || exit 1 exit 0 |