Differences From Artifact [01379c117b]:
- File configure.ac — part of check-in [6d0500d7e7] at 2011-08-26 05:40:33 on branch trunk — CACKey 0.6.1 (user: rkeene, size: 3273) [annotate] [blame] [check-ins using]
To Artifact [9e35aba144]:
- File
configure.ac
— part of check-in
[02f5cea2da]
at
2011-09-08 01:47:17
on branch trunk
— CACKey 0.6.2
Updated to include sha1.c, md5.c, and asn1-x509.c in the cackey.c translation unit so that these symbols never get exported and conflict with existing programs
Updated to try harder to remove and weaken symbols from shared object (user: rkeene, size: 3318) [annotate] [blame] [check-ins using]
|
| | | 1 2 3 4 5 6 7 8 | AC_INIT(cackey, 0.6.2) AC_CONFIG_HEADERS(config.h) dnl Locate standard tools AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_AIX |
︙ | ︙ | |||
19 20 21 22 23 24 25 | ]) 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 | > | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ]) 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(OBJCOPY, objcopy) AC_CHECK_TOOL(STRIP, stripf, [$OBJCOPY]) dnl Check for all required headers AC_CHECK_HEADERS(arpa/inet.h inttypes.h stdarg.h stdint.h stdio.h stdlib.h string.h sys/socket.h sys/types.h sys/un.h time.h unistd.h pthread.h zlib.h limits.h,,[ AC_WARN([Required header missing, compilation will likely fail.]) ], [ #ifdef HAVE_ARPA_INET_H # include <arpa/inet.h> |
︙ | ︙ |