configure.in 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. AC_INIT
  2. AM_INIT_AUTOMAKE(tor, 0.1.0.0-alpha-cvs)
  3. AM_CONFIG_HEADER(orconfig.h)
  4. AC_CANONICAL_HOST
  5. if test -f /etc/redhat-release; then
  6. CFLAGS="$CFLAGS -I/usr/kerberos/include"
  7. fi
  8. AC_ARG_ENABLE(debug,
  9. [ --enable-debug compiles with debugging info],
  10. [if test x$enableval = xyes; then
  11. CFLAGS="$CFLAGS -g"
  12. fi])
  13. AC_PROG_CC
  14. AC_PROG_MAKE_SET
  15. AC_PROG_RANLIB
  16. # The big search for OpenSSL
  17. # copied from openssh's configure.ac
  18. AC_ARG_WITH(ssl-dir,
  19. [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
  20. [
  21. if test "x$withval" != "xno" ; then
  22. tryssldir=$withval
  23. fi
  24. ]
  25. )
  26. AC_SEARCH_LIBS(socket, [socket])
  27. AC_SEARCH_LIBS(gethostbyname, [nsl])
  28. AC_SEARCH_LIBS(pthread_create, [pthread])
  29. AC_SEARCH_LIBS(event_loop, [event], , AC_MSG_ERROR(Libevent library not found. Tor requires libevent to build.))
  30. saved_LIBS="$LIBS"
  31. saved_LDFLAGS="$LDFLAGS"
  32. saved_CPPFLAGS="$CPPFLAGS"
  33. if test "x$prefix" != "xNONE" ; then
  34. tryssldir="$tryssldir $prefix"
  35. fi
  36. AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [
  37. for ssldir in $tryssldir "" /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/athena /usr/pkg /opt /opt/openssl ; do
  38. CPPFLAGS="$saved_CPPFLAGS"
  39. LDFLAGS="$saved_LDFLAGS"
  40. LIBS="$saved_LIBS -lssl -lcrypto"
  41. # Skip directories if they don't exist
  42. if test ! -z "$ssldir" -a ! -d "$ssldir" ; then
  43. continue;
  44. fi
  45. if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
  46. # Try to use $ssldir/lib if it exists, otherwise
  47. # $ssldir
  48. if test -d "$ssldir/lib" ; then
  49. LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
  50. if test ! -z "$need_dash_r" ; then
  51. LDFLAGS="-R$ssldir/lib $LDFLAGS"
  52. fi
  53. else
  54. LDFLAGS="-L$ssldir $saved_LDFLAGS"
  55. if test ! -z "$need_dash_r" ; then
  56. LDFLAGS="-R$ssldir $LDFLAGS"
  57. fi
  58. fi
  59. # Try to use $ssldir/include if it exists, otherwise
  60. # $ssldir
  61. if test -d "$ssldir/include" ; then
  62. CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
  63. else
  64. CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
  65. fi
  66. fi
  67. # Basic test to check for compatible version and correct linking
  68. # *does not* test for RSA - that comes later.
  69. AC_TRY_RUN(
  70. [
  71. #include <string.h>
  72. #include <openssl/rand.h>
  73. int main(void)
  74. {
  75. char a[2048];
  76. memset(a, 0, sizeof(a));
  77. RAND_add(a, sizeof(a), sizeof(a));
  78. return(RAND_status() <= 0);
  79. }
  80. ],
  81. [
  82. found_crypto=1
  83. break;
  84. ], []
  85. )
  86. if test ! -z "$found_crypto" ; then
  87. break;
  88. fi
  89. done
  90. if test -z "$found_crypto" ; then
  91. AC_MSG_ERROR([Could not find working OpenSSL library, please install or check config.log])
  92. fi
  93. if test -z "$ssldir" ; then
  94. ssldir="(system)"
  95. fi
  96. ac_cv_openssldir=$ssldir
  97. ])
  98. if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ;
  99. then
  100. dnl Need to recover ssldir - test above runs in subshell
  101. ssldir=$ac_cv_openssldir
  102. if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
  103. # Try to use $ssldir/lib if it exists, otherwise
  104. # $ssldir
  105. if test -d "$ssldir/lib" ; then
  106. LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
  107. if test ! -z "$need_dash_r" ; then
  108. LDFLAGS="-R$ssldir/lib $LDFLAGS"
  109. fi
  110. else
  111. LDFLAGS="-L$ssldir $saved_LDFLAGS"
  112. if test ! -z "$need_dash_r" ; then
  113. LDFLAGS="-R$ssldir $LDFLAGS"
  114. fi
  115. fi
  116. # Try to use $ssldir/include if it exists, otherwise
  117. # $ssldir
  118. if test -d "$ssldir/include" ; then
  119. CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
  120. else
  121. CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
  122. fi
  123. fi
  124. fi
  125. LIBS="$saved_LIBS"
  126. AC_SYS_LARGEFILE
  127. dnl The warning message here is no longer strictly accurate.
  128. AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h sys/stat.h sys/types.h fcntl.h sys/fcntl.h sys/ioctl.h sys/socket.h sys/time.h netinet/in.h arpa/inet.h errno.h assert.h time.h pwd.h grp.h zlib.h, , AC_MSG_WARN(some headers were not found, compilation may fail))
  129. AC_CHECK_HEADERS(event.h, , AC_MSG_ERROR(Libevent header (event.h) not found. Tor requires libevent to build.))
  130. dnl These headers are not essential
  131. AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/param.h sys/wait.h sys/limits.h netinet/in.h arpa/inet.h machine/limits.h syslog.h sys/time.h sys/resource.h pthread.h)
  132. AC_CHECK_FUNCS(gettimeofday ftime socketpair uname inet_aton strptime getrlimit setrlimit strlcat strlcpy strtoull getpwnam ftello pthread_create gethostbyname_r getaddrinfo)
  133. AC_FUNC_FSEEKO
  134. AC_CHECK_MEMBERS([struct timeval.tv_sec])
  135. dnl In case we aren't given a working stdint.h, we'll need to grow our own.
  136. dnl Watch out.
  137. AC_CHECK_SIZEOF(int8_t)
  138. AC_CHECK_SIZEOF(int16_t)
  139. AC_CHECK_SIZEOF(int32_t)
  140. AC_CHECK_SIZEOF(int64_t)
  141. AC_CHECK_SIZEOF(uint8_t)
  142. AC_CHECK_SIZEOF(uint16_t)
  143. AC_CHECK_SIZEOF(uint32_t)
  144. AC_CHECK_SIZEOF(uint64_t)
  145. AC_CHECK_SIZEOF(intptr_t)
  146. AC_CHECK_SIZEOF(uintptr_t)
  147. dnl AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, intptr_t, uintptr_t])
  148. AC_CHECK_SIZEOF(char)
  149. AC_CHECK_SIZEOF(short)
  150. AC_CHECK_SIZEOF(int)
  151. AC_CHECK_SIZEOF(long)
  152. AC_CHECK_SIZEOF(long long)
  153. AC_CHECK_SIZEOF(__int64)
  154. AC_CHECK_SIZEOF(void *)
  155. # Now, let's see about alignment requirements. On some platforms, we override
  156. # the default.
  157. case $host in
  158. ia64-*-* | arm-*-* )
  159. tor_cv_unaligned_ok=no
  160. ;;
  161. *)
  162. AC_CACHE_CHECK([whether unaligned int access is allowed], tor_cv_unaligned_ok,
  163. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  164. [[int main () { char s[] = "A\x00\x00\x00\x00\x00\x00\x00";
  165. return *(int*)(&s[1]); }]])],
  166. [tor_cv_unaligned_ok=yes],
  167. [tor_cv_unaligned_ok=no],
  168. [tor_cv_unaligned_ok=cross])])
  169. esac
  170. if test $tor_cv_unaligned_ok = yes; then
  171. AC_DEFINE([UNALIGNED_INT_ACCESS_OK], 1,
  172. [Define to 1 iff unaligned int access is allowed])
  173. fi
  174. # Now make sure that NULL can be represented as zero bytes.
  175. AC_CACHE_CHECK([whether memset(0) sets pointers to NULL], tor_cv_null_is_zero,
  176. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  177. [[#include <stdlib.h>
  178. int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2));
  179. return memcmp(&p1,&p2,sizeof(char*))?1:0; }]])],
  180. [tor_cv_null_is_zero=yes],
  181. [tor_cv_null_is_zero=no],
  182. [tor_cv_null_is_zero=cross])])
  183. if test $tor_cv_null_is_zero = yes; then
  184. AC_DEFINE([NULL_REP_IS_ZERO_BYTES], 1,
  185. [Define to 1 iff memset(0) sets pointers to NULL])
  186. fi
  187. # Whether we should use the dmalloc memory allocation debugging library.
  188. AC_MSG_CHECKING(whether to use dmalloc (debug memory allocation library))
  189. AC_ARG_WITH(dmalloc,
  190. [ --with-dmalloc Use debug memory allocation library. ],
  191. [if [[ "$withval" = "yes" ]]; then
  192. dmalloc=1
  193. AC_MSG_RESULT(yes)
  194. else
  195. dmalloc=1
  196. AC_MSG_RESULT(no)
  197. fi], [ dmalloc=0; AC_MSG_RESULT(no) ]
  198. )
  199. if [[ $dmalloc -eq 1 ]]; then
  200. AC_CHECK_HEADERS(dmalloc.h, , AC_MSG_ERROR(dmalloc header file not found. Do you have the development files for dmalloc installed?))
  201. AC_SEARCH_LIBS(dmalloc_malloc, [dmalloc], , AC_MSG_ERROR(Libdmalloc library not found. If you enable it you better have it installed.))
  202. AC_DEFINE(USE_DMALLOC, 1, [Debug memory allocation library])
  203. AC_DEFINE(DMALLOC_FUNC_CHECK, 1, [Enable dmalloc's malloc function check])
  204. fi
  205. # $prefix stores the value of the --prefix command line option, or
  206. # NONE if the option wasn't set. In the case that it wasn't set, make
  207. # it be the default, so that we can use it to expand directories now.
  208. if test "x$prefix" = "xNONE"; then
  209. prefix=$ac_default_prefix
  210. fi
  211. # and similarly for $exec_prefix
  212. if test "x$exec_prefix" = "xNONE"; then
  213. exec_prefix=$prefix
  214. fi
  215. CONFDIR=`eval echo $sysconfdir/tor`
  216. AC_SUBST(CONFDIR)
  217. AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
  218. AC_DEFINE([CONFDIR], [], [tor's configuration directory])
  219. BINDIR=`eval echo $bindir`
  220. AC_SUBST(BINDIR)
  221. LOCALSTATEDIR=`eval echo $localstatedir`
  222. AC_SUBST(LOCALSTATEDIR)
  223. # Set CFLAGS _after_ all the above checks, since our warnings are stricter
  224. # than autoconf's macros like.
  225. CFLAGS="$CFLAGS -Wall -g -O2"
  226. # Add some more warnings which we use in the cvs version but not in the
  227. # released versions. (Some relevant gcc versions can't handle these.)
  228. #CFLAGS="$CFLAGS -W -Wno-unused-parameter -Wfloat-equal -Wundef -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -Wredundant-decls"
  229. # Add these in when you feel like fun.
  230. #CFLAGS="$CFLAGS -Wbad-function-cast -Werror -Wdeclaration-after-statement"
  231. echo "confdir: $CONFDIR"
  232. AC_OUTPUT(Makefile tor.spec contrib/tor.sh contrib/torctl contrib/torify contrib/Makefile contrib/osx/Makefile contrib/osx/TorBundleDesc.plist contrib/osx/TorBundleInfo.plist contrib/osx/TorDesc.plist contrib/osx/TorInfo.plist src/config/torrc.sample doc/tor.1 src/Makefile doc/Makefile doc/design-paper/Makefile src/config/Makefile src/common/Makefile src/or/Makefile src/win32/Makefile src/tools/Makefile)
  233. if test -x /usr/bin/perl && test -x ./contrib/updateVersions.pl ; then
  234. ./contrib/updateVersions.pl
  235. fi