Differences From Artifact [ebb33ac593]:
- File
configure.ac
— part of check-in
[b9e3c7741b]
at
2010-05-14 06:08:46
on branch trunk
— Updated to decompress certificates
Updated to correctly process TLV elements -- fixes bug where iterated past them when processing
Updated to correclty process TLV element total length (user: rkeene, size: 1756) [annotate] [blame] [check-ins using]
To Artifact [0ec6a4dc40]:
- File
configure.ac
— part of check-in
[b491412695]
at
2010-05-17 05:04:11
on branch trunk
— Updated to strip release library
Updated list of headers to check for (user: rkeene, size: 1883) [annotate] [blame] [check-ins using]
︙ | |||
16 17 18 19 20 21 22 23 24 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | + + + - + | ACX_PTHREAD(, [ AC_WARN([Can't figure out how to compile with pthreads support, run-time will likely fail.]) ]) dnl Determine how to create static archives on this platform AC_CHECK_TOOL(AR, ar) AC_CHECK_TOOL(RANLIB, ranlib) dnl Determine how to strip executables AC_CHECK_TOOL(STRIP, strip) dnl Check for all required headers |
︙ | |||
57 58 59 60 61 62 63 64 65 66 67 68 69 70 | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | + + + | #endif #ifdef HAVE_UNISTD_H # include <unistd.h> #endif #ifdef HAVE_PTHREAD_H # include <pthread.h> #endif #ifdef HAVE_LIMITS_H # include <limits.h> #endif #ifdef HAVE_ZLIB_H # include <zlib.h> #endif ]) dnl Check for PC/SC headers and libraries DC_PCSC |
︙ |