1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
pkcs11-helper -- PKCS#11 simplification.
Copyright (c) 2005-2006 Alon Bar-Lev <alon.barlev@gmail.com>
POSIX
Dependencies:
dl
pkcs11-helper (http://www.opensc-project.org)
Build:
$ ./configure
$ make
$ make install
Cross-MinGW32
Dependencies:
man2html
pkcs11-helper (http://www.opensc-project.org)
Build:
w32root=/tmp/w32root
./configure --prefix=/ --host=mingw32 \
PKCS11_HELPER_CFLAGS="-I${w32root}/include" \
PKCS11_HELPER_LIBS="-L${w32root}/lib -llibpkcs11-helper" \
PKCS11_HELPER_FEATURES="token data"
make
make install DESTDIR=${w32root}
Native-Cygwin
Dependencies:
Same as Cross-MinGW32
Build:
w32root=/tmp/w32root
./configure --prefix=/ --with-cygwin-native \
PKCS11_HELPER_CFLAGS="-I${w32root}/include" \
PKCS11_HELPER_LIBS="-L${w32root}/lib -llibpkcs11-helper" \
PKCS11_HELPER_FEATURES="token data"
make
make install DESTDIR=${w32root}
|