Overview
Comment: | Fixed issue with win32 build script
Updated ignores |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 81e42b32af4974ad93409205382464daacb0f458 |
User & Date: | rkeene on 2010-10-15 10:27:27 |
Other Links: | manifest | tags |
Context
2010-10-15
| ||
17:56 | Updated Win32 build script to use relative paths check-in: f238396b29 user: rkeene tags: trunk | |
10:27 |
Fixed issue with win32 build script
Updated ignores check-in: 81e42b32af user: rkeene tags: trunk | |
10:20 | Added local definitions of T=1 and T=0 protocols on Win32 build (seems to be missing from library) check-in: c3a8fe4086 user: rkeene tags: trunk | |
Changes
Modified build/cackey_win32_build/build.sh from [443ec84893] to [e69c404fb2].
1 |
./configure --with-pcsc-headers=/home/u4423rsk/devel/pcsc_cac/cackey/build/cackey_win32_build/include --with-pcsc-libs=-L/home/u4423rsk/devel/pcsc_cac/cackey/build/cackey_win32_build/lib -lwinscard --host=i586-mingw32msvc CPPFLAGS="-I/home/u4423rsk/devel/pcsc_cac/cackey/build/cackey_win32_build/include"
|
> > > > | > > > > |
1 2 3 4 5 6 7 8 9 |
#! /bin/bash make distclean ./configure --with-pcsc-headers=/home/u4423rsk/devel/pcsc_cac/cackey/build/cackey_win32_build/include --with-pcsc-libs="-L/home/u4423rsk/devel/pcsc_cac/cackey/build/cackey_win32_build/lib -lwinscard" --host=i586-mingw32msvc CPPFLAGS="-I/home/u4423rsk/devel/pcsc_cac/cackey/build/cackey_win32_build/include" || exit 1 make || exit 1 exit 0 |