Differences From Artifact [6faadc7dde]:
- File
configure.ac
— part of check-in
[9d554f2765]
at
2011-09-08 01:51:31
on branch trunk
— CACKey 0.6.3
Fixed typo in last commit (user: rkeene, size: 3317) [annotate] [blame] [check-ins using]
To Artifact [f51a90fd29]:
- File
configure.ac
— part of check-in
[521abe23e2]
at
2011-09-08 03:01:24
on branch trunk
— CACKey 0.6.4
Moved determining how to weaken and strip symbols into an autoconf macro
Added support for stripping symbols to Mac OS X builds (user: rkeene, size: 3309) [annotate] [blame] [check-ins using]
|
| | | 1 2 3 4 5 6 7 8 | AC_INIT(cackey, 0.6.4) AC_CONFIG_HEADERS(config.h) dnl Locate standard tools AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_AIX |
︙ | ︙ | |||
18 19 20 21 22 23 24 | AC_MSG_WARN([Can not 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) | | < | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | AC_MSG_WARN([Can not 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 and remove symbols DC_FIND_STRIP_AND_REMOVESYMS(libcackey.syms) 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> |
︙ | ︙ |