configure.in 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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(event_loop, [event], , AC_MSG_ERROR(Libevent library not found. Tor requires libevent to build.))
  29. saved_LIBS="$LIBS"
  30. saved_LDFLAGS="$LDFLAGS"
  31. saved_CPPFLAGS="$CPPFLAGS"
  32. if test "x$prefix" != "xNONE" ; then
  33. tryssldir="$tryssldir $prefix"
  34. fi
  35. AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [
  36. 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
  37. CPPFLAGS="$saved_CPPFLAGS"
  38. LDFLAGS="$saved_LDFLAGS"
  39. LIBS="$saved_LIBS -lssl -lcrypto"
  40. # Skip directories if they don't exist
  41. if test ! -z "$ssldir" -a ! -d "$ssldir" ; then
  42. continue;
  43. fi
  44. if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
  45. # Try to use $ssldir/lib if it exists, otherwise
  46. # $ssldir
  47. if test -d "$ssldir/lib" ; then
  48. LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
  49. if test ! -z "$need_dash_r" ; then
  50. LDFLAGS="-R$ssldir/lib $LDFLAGS"
  51. fi
  52. else
  53. LDFLAGS="-L$ssldir $saved_LDFLAGS"
  54. if test ! -z "$need_dash_r" ; then
  55. LDFLAGS="-R$ssldir $LDFLAGS"
  56. fi
  57. fi
  58. # Try to use $ssldir/include if it exists, otherwise
  59. # $ssldir
  60. if test -d "$ssldir/include" ; then
  61. CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
  62. else
  63. CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
  64. fi
  65. fi
  66. # Basic test to check for compatible version and correct linking
  67. # *does not* test for RSA - that comes later.
  68. AC_TRY_RUN(
  69. [
  70. #include <string.h>
  71. #include <openssl/rand.h>
  72. int main(void)
  73. {
  74. char a[2048];
  75. memset(a, 0, sizeof(a));
  76. RAND_add(a, sizeof(a), sizeof(a));
  77. return(RAND_status() <= 0);
  78. }
  79. ],
  80. [
  81. found_crypto=1
  82. break;
  83. ], []
  84. )
  85. if test ! -z "$found_crypto" ; then
  86. break;
  87. fi
  88. done
  89. if test -z "$found_crypto" ; then
  90. AC_MSG_ERROR([Could not find working OpenSSL library, please install or check config.log])
  91. fi
  92. if test -z "$ssldir" ; then
  93. ssldir="(system)"
  94. fi
  95. ac_cv_openssldir=$ssldir
  96. ])
  97. if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ;
  98. then
  99. dnl Need to recover ssldir - test above runs in subshell
  100. ssldir=$ac_cv_openssldir
  101. if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
  102. # Try to use $ssldir/lib if it exists, otherwise
  103. # $ssldir
  104. if test -d "$ssldir/lib" ; then
  105. LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
  106. if test ! -z "$need_dash_r" ; then
  107. LDFLAGS="-R$ssldir/lib $LDFLAGS"
  108. fi
  109. else
  110. LDFLAGS="-L$ssldir $saved_LDFLAGS"
  111. if test ! -z "$need_dash_r" ; then
  112. LDFLAGS="-R$ssldir $LDFLAGS"
  113. fi
  114. fi
  115. # Try to use $ssldir/include if it exists, otherwise
  116. # $ssldir
  117. if test -d "$ssldir/include" ; then
  118. CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
  119. else
  120. CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
  121. fi
  122. fi
  123. fi
  124. LIBS="$saved_LIBS"
  125. AC_SYS_LARGEFILE
  126. dnl The warning message here is no longer strictly accurate.
  127. 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))
  128. AC_CHECK_HEADERS(event.h, , AC_MSG_ERROR(Libevent header (event.h) not found. Tor requires libevent to build.))
  129. dnl These headers are not essential
  130. 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)
  131. AC_CHECK_FUNCS(gettimeofday ftime socketpair uname inet_aton strptime getrlimit setrlimit strlcat strlcpy strtoull getpwnam ftello)
  132. AC_FUNC_FSEEKO
  133. AC_CHECK_MEMBERS([struct timeval.tv_sec])
  134. dnl In case we aren't given a working stdint.h, we'll need to grow our own.
  135. dnl Watch out.
  136. AC_CHECK_SIZEOF(int8_t)
  137. AC_CHECK_SIZEOF(int16_t)
  138. AC_CHECK_SIZEOF(int32_t)
  139. AC_CHECK_SIZEOF(int64_t)
  140. AC_CHECK_SIZEOF(uint8_t)
  141. AC_CHECK_SIZEOF(uint16_t)
  142. AC_CHECK_SIZEOF(uint32_t)
  143. AC_CHECK_SIZEOF(uint64_t)
  144. AC_CHECK_SIZEOF(intptr_t)
  145. AC_CHECK_SIZEOF(uintptr_t)
  146. dnl AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, intptr_t, uintptr_t])
  147. AC_CHECK_SIZEOF(char)
  148. AC_CHECK_SIZEOF(short)
  149. AC_CHECK_SIZEOF(int)
  150. AC_CHECK_SIZEOF(long)
  151. AC_CHECK_SIZEOF(long long)
  152. AC_CHECK_SIZEOF(__int64)
  153. AC_CHECK_SIZEOF(void *)
  154. # Now, let's see about alignment requirements. On some platforms, we override
  155. # the default.
  156. case $host in
  157. ia64-*-* | arm-*-* )
  158. tor_cv_unaligned_ok=no
  159. ;;
  160. *)
  161. AC_CACHE_CHECK([whether unaligned int access is allowed], tor_cv_unaligned_ok,
  162. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  163. [[int main () { char s[] = "A\x00\x00\x00\x00\x00\x00\x00";
  164. return *(int*)(&s[1]); }]])],
  165. [tor_cv_unaligned_ok=yes],
  166. [tor_cv_unaligned_ok=no],
  167. [tor_cv_unaligned_ok=cross])])
  168. esac
  169. if test $tor_cv_unaligned_ok = yes; then
  170. AC_DEFINE([UNALIGNED_INT_ACCESS_OK], 1,
  171. [Define to 1 iff unaligned int access is allowed])
  172. fi
  173. # Now make sure that NULL can be represented as zero bytes.
  174. AC_CACHE_CHECK([whether memset(0) sets pointers to NULL], tor_cv_null_is_zero,
  175. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  176. [[#include <stdlib.h>
  177. int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2));
  178. return memcmp(&p1,&p2,sizeof(char*))?1:0; }]])],
  179. [tor_cv_null_is_zero=yes],
  180. [tor_cv_null_is_zero=no],
  181. [tor_cv_null_is_zero=cross])])
  182. if test $tor_cv_null_is_zero = yes; then
  183. AC_DEFINE([NULL_REP_IS_ZERO_BYTES], 1,
  184. [Define to 1 iff memset(0) sets pointers to NULL])
  185. fi
  186. # $prefix stores the value of the --prefix command line option, or
  187. # NONE if the option wasn't set. In the case that it wasn't set, make
  188. # it be the default, so that we can use it to expand directories now.
  189. if test "x$prefix" = "xNONE"; then
  190. prefix=$ac_default_prefix
  191. fi
  192. # and similarly for $exec_prefix
  193. if test "x$exec_prefix" = "xNONE"; then
  194. exec_prefix=$prefix
  195. fi
  196. CONFDIR=`eval echo $sysconfdir/tor`
  197. AC_SUBST(CONFDIR)
  198. AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
  199. AC_DEFINE([CONFDIR], [], [tor's configuration directory])
  200. BINDIR=`eval echo $bindir`
  201. AC_SUBST(BINDIR)
  202. LOCALSTATEDIR=`eval echo $localstatedir`
  203. AC_SUBST(LOCALSTATEDIR)
  204. # Set CFLAGS _after_ all the above checks, since our warnings are stricter
  205. # than autoconf's macros like.
  206. CFLAGS="$CFLAGS -Wall -g -O2"
  207. # Add some more warnings which we use in the cvs version but not in the
  208. # released versions. (Some relevant gcc versions can't handle these.)
  209. #CFLAGS="$CFLAGS -W -Wno-unused-parameter -Wfloat-equal -Wundef -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -Wredundant-decls"
  210. # Add these in when you feel like fun.
  211. #CFLAGS="$CFLAGS -Wbad-function-cast -Werror -Wdeclaration-after-statement"
  212. echo "confdir: $CONFDIR"
  213. 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)
  214. if test -x /usr/bin/perl && test -x ./contrib/updateVersions.pl ; then
  215. ./contrib/updateVersions.pl
  216. fi