configure.in 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186
  1. dnl Copyright (c) 2001-2004, Roger Dingledine
  2. dnl Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  3. dnl Copyright (c) 2007-2008, The Tor Project, Inc.
  4. dnl See LICENSE for licensing information
  5. AC_INIT
  6. AM_INIT_AUTOMAKE(tor, 0.2.3.0-alpha-dev)
  7. AM_CONFIG_HEADER(orconfig.h)
  8. AC_CANONICAL_HOST
  9. if test -f /etc/redhat-release ; then
  10. if test -f /usr/kerberos/include ; then
  11. CPPFLAGS="$CPPFLAGS -I/usr/kerberos/include"
  12. fi
  13. fi
  14. # Not a no-op; we want to make sure that CPPFLAGS is set before we use
  15. # the += operator on it in src/or/Makefile.am
  16. CPPFLAGS="$CPPFLAGS -I\${top_srcdir}/src/common"
  17. #XXXX020 We should make these enabled or not, before 0.2.0.x-final
  18. AC_ARG_ENABLE(buf-freelists,
  19. AS_HELP_STRING(--disable-buf-freelists, disable freelists for buffer RAM))
  20. AC_ARG_ENABLE(openbsd-malloc,
  21. AS_HELP_STRING(--enable-openbsd-malloc, Use malloc code from openbsd. Linux only))
  22. AC_ARG_ENABLE(instrument-downloads,
  23. AS_HELP_STRING(--enable-instrument-downloads, Instrument downloads of directory resources etc.))
  24. AC_ARG_ENABLE(static-openssl,
  25. AS_HELP_STRING(--enable-static-openssl, Link against a static openssl library. Requires --with-openssl-dir))
  26. AC_ARG_ENABLE(static-libevent,
  27. AS_HELP_STRING(--enable-static-libevent, Link against a static libevent library. Requires --with-libevent-dir))
  28. AC_ARG_ENABLE(static-zlib,
  29. AS_HELP_STRING(--enable-static-zlib, Link against a static zlib library. Requires --with-zlib-dir))
  30. if test x$enable_buf_freelists != xno; then
  31. AC_DEFINE(ENABLE_BUF_FREELISTS, 1,
  32. [Defined if we try to use freelists for buffer RAM chunks])
  33. fi
  34. AM_CONDITIONAL(USE_OPENBSD_MALLOC, test x$enable_openbsd_malloc = xyes)
  35. if test x$enable_instrument_downloads = xyes; then
  36. AC_DEFINE(INSTRUMENT_DOWNLOADS, 1,
  37. [Defined if we want to keep track of how much of each kind of resource we download.])
  38. fi
  39. AC_ARG_ENABLE(transparent,
  40. AS_HELP_STRING(--disable-transparent, disable transparent proxy support),
  41. [case "${enableval}" in
  42. yes) transparent=true ;;
  43. no) transparent=false ;;
  44. *) AC_MSG_ERROR(bad value for --enable-transparent) ;;
  45. esac], [transparent=true])
  46. AC_ARG_ENABLE(asciidoc,
  47. AS_HELP_STRING(--disable-asciidoc, don't use asciidoc (disables building of manpages)),
  48. [case "${enableval}" in
  49. yes) asciidoc=true ;;
  50. no) asciidoc=false ;;
  51. *) AC_MSG_ERROR(bad value for --disable-asciidoc) ;;
  52. esac], [asciidoc=true])
  53. # By default, we're not ready to ship a NAT-PMP aware Tor
  54. AC_ARG_ENABLE(nat-pmp,
  55. AS_HELP_STRING(--enable-nat-pmp, enable NAT-PMP support),
  56. [case "${enableval}" in
  57. yes) natpmp=true ;;
  58. no) natpmp=false ;;
  59. * ) AC_MSG_ERROR(bad value for --enable-nat-pmp) ;;
  60. esac], [natpmp=false])
  61. # By default, we're not ready to ship a UPnP aware Tor
  62. AC_ARG_ENABLE(upnp,
  63. AS_HELP_STRING(--enable-upnp, enable UPnP support),
  64. [case "${enableval}" in
  65. yes) upnp=true ;;
  66. no) upnp=false ;;
  67. * ) AC_MSG_ERROR(bad value for --enable-upnp) ;;
  68. esac], [upnp=false])
  69. AC_ARG_ENABLE(threads,
  70. AS_HELP_STRING(--disable-threads, disable multi-threading support))
  71. if test x$enable_threads = x; then
  72. case $host in
  73. *-*-solaris* )
  74. # Don't try multithreading on solaris -- cpuworkers seem to lock.
  75. AC_MSG_NOTICE([You are running Solaris; Sometimes threading makes
  76. cpu workers lock up here, so I will disable threads.])
  77. enable_threads="no";;
  78. *)
  79. enable_threads="yes";;
  80. esac
  81. fi
  82. if test "$enable_threads" = "yes"; then
  83. AC_DEFINE(ENABLE_THREADS, 1, [Defined if we will try to use multithreading])
  84. fi
  85. case $host in
  86. *-*-solaris* )
  87. AC_DEFINE(_REENTRANT, 1, [Define on some platforms to activate x_r() functions in time.h])
  88. ;;
  89. esac
  90. AC_ARG_ENABLE(gcc-warnings,
  91. AS_HELP_STRING(--enable-gcc-warnings, enable verbose warnings))
  92. AC_ARG_ENABLE(gcc-warnings-advisory,
  93. AS_HELP_STRING(--enable-gcc-warnings-advisory, [enable verbose warnings, excluding -Werror]))
  94. dnl Adam shostack suggests the following for Windows:
  95. dnl -D_FORTIFY_SOURCE=2 -fstack-protector-all
  96. dnl Others suggest '/gs /safeseh /nxcompat /dynamicbase' for non-gcc on Windows
  97. dnl This requires that we use gcc and that we add -O2 to the CFLAGS.
  98. AC_ARG_ENABLE(gcc-hardening,
  99. AS_HELP_STRING(--enable-gcc-hardening, enable compiler security checks),
  100. [if test x$enableval = xyes; then
  101. CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2 -fstack-protector-all"
  102. CFLAGS="$CFLAGS -fwrapv -fPIE -Wstack-protector"
  103. CFLAGS="$CFLAGS --param ssp-buffer-size=1"
  104. LDFLAGS="$LDFLAGS -pie"
  105. fi])
  106. dnl Linker hardening options
  107. dnl Currently these options are ELF specific - you can't use this with MacOSX
  108. AC_ARG_ENABLE(linker-hardening,
  109. AS_HELP_STRING(--enable-linker-hardening, enable linker security fixups),
  110. [if test x$enableval = xyes; then
  111. LDFLAGS="$LDFLAGS -z relro -z now"
  112. fi])
  113. AC_ARG_ENABLE(local-appdata,
  114. AS_HELP_STRING(--enable-local-appdata, default to host local application data paths on Windows))
  115. if test "$enable_local_appdata" = "yes"; then
  116. AC_DEFINE(ENABLE_LOCAL_APPDATA, 1,
  117. [Defined if we default to host local appdata paths on Windows])
  118. fi
  119. AC_ARG_ENABLE(bufferevents,
  120. AS_HELP_STRING(--enable-bufferevents, use Libevent's buffered IO.))
  121. AC_PROG_CC
  122. AC_PROG_CPP
  123. AC_PROG_MAKE_SET
  124. AC_PROG_RANLIB
  125. dnl autoconf 2.59 appears not to support AC_PROG_SED
  126. AC_CHECK_PROG([SED],[sed],[sed],[/bin/false])
  127. dnl check for asciidoc and a2x
  128. AC_PATH_PROG([ASCIIDOC], [asciidoc], none)
  129. AC_PATH_PROG([A2X], [a2x], none)
  130. AM_CONDITIONAL(USE_ASCIIDOC, test x$asciidoc = xtrue)
  131. AM_CONDITIONAL(USE_FW_HELPER, test x$natpmp = xtrue || test x$upnp = xtrue)
  132. AM_CONDITIONAL(NAT_PMP, test x$natpmp = xtrue)
  133. AM_CONDITIONAL(MINIUPNPC, test x$upnp = xtrue)
  134. AM_PROG_CC_C_O
  135. ifdef([AC_C_FLEXIBLE_ARRAY_MEMBER], [
  136. AC_C_FLEXIBLE_ARRAY_MEMBER
  137. ], [
  138. dnl Maybe we've got an old autoconf...
  139. AC_CACHE_CHECK([for flexible array members],
  140. tor_cv_c_flexarray,
  141. [AC_COMPILE_IFELSE(
  142. AC_LANG_PROGRAM([
  143. struct abc { int a; char b[]; };
  144. ], [
  145. struct abc *def = malloc(sizeof(struct abc)+sizeof(char));
  146. def->b[0] = 33;
  147. ]),
  148. [tor_cv_c_flexarray=yes],
  149. [tor_cv_c_flexarray=no])])
  150. if test $tor_cv_flexarray = yes ; then
  151. AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [])
  152. else
  153. AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [1])
  154. fi
  155. ])
  156. AC_PATH_PROG([SHA1SUM], [sha1sum], none)
  157. AC_PATH_PROG([OPENSSL], [openssl], none)
  158. TORUSER=_tor
  159. AC_ARG_WITH(tor-user,
  160. [ --with-tor-user=NAME Specify username for tor daemon ],
  161. [
  162. TORUSER=$withval
  163. ]
  164. )
  165. AC_SUBST(TORUSER)
  166. TORGROUP=_tor
  167. AC_ARG_WITH(tor-group,
  168. [ --with-tor-group=NAME Specify group name for tor daemon ],
  169. [
  170. TORGROUP=$withval
  171. ]
  172. )
  173. AC_SUBST(TORGROUP)
  174. dnl If WIN32 is defined and non-zero, we are building for win32
  175. AC_MSG_CHECKING([for win32])
  176. AC_RUN_IFELSE([AC_LANG_SOURCE([
  177. int main(int c, char **v) {
  178. #ifdef WIN32
  179. #if WIN32
  180. return 0;
  181. #else
  182. return 1;
  183. #endif
  184. #else
  185. return 2;
  186. #endif
  187. }])],
  188. bwin32=true; AC_MSG_RESULT([yes]),
  189. bwin32=false; AC_MSG_RESULT([no]),
  190. bwin32=cross; AC_MSG_RESULT([cross])
  191. )
  192. if test "$bwin32" = cross; then
  193. AC_MSG_CHECKING([for win32 (cross)])
  194. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  195. #ifdef WIN32
  196. int main(int c, char **v) {return 0;}
  197. #else
  198. #error
  199. int main(int c, char **v) {return x(y);}
  200. #endif
  201. ])],
  202. bwin32=true; AC_MSG_RESULT([yes]),
  203. bwin32=false; AC_MSG_RESULT([no]))
  204. fi
  205. if test "$bwin32" = true; then
  206. AC_DEFINE(MS_WINDOWS, 1, [Define to 1 if we are building for Windows.])
  207. fi
  208. AM_CONDITIONAL(BUILD_NT_SERVICES, test x$bwin32 = xtrue)
  209. dnl Enable C99 when compiling with MIPSpro
  210. AC_MSG_CHECKING([for MIPSpro compiler])
  211. AC_COMPILE_IFELSE([AC_LANG_PROGRAM(, [
  212. #if (defined(__sgi) && defined(_COMPILER_VERSION))
  213. #error
  214. return x(y);
  215. #endif
  216. ])],
  217. bmipspro=false; AC_MSG_RESULT(no),
  218. bmipspro=true; AC_MSG_RESULT(yes))
  219. if test "$bmipspro" = true; then
  220. CFLAGS="$CFLAGS -c99"
  221. fi
  222. AC_C_BIGENDIAN
  223. AC_SEARCH_LIBS(socket, [socket])
  224. AC_SEARCH_LIBS(gethostbyname, [nsl])
  225. AC_SEARCH_LIBS(dlopen, [dl])
  226. AC_SEARCH_LIBS(inet_aton, [resolv])
  227. if test "$enable_threads" = "yes"; then
  228. AC_SEARCH_LIBS(pthread_create, [pthread])
  229. AC_SEARCH_LIBS(pthread_detach, [pthread])
  230. fi
  231. dnl -------------------------------------------------------------------
  232. dnl Check for functions before libevent, since libevent-1.2 apparently
  233. dnl exports strlcpy without defining it in a header.
  234. AC_CHECK_FUNCS(
  235. accept4 \
  236. flock \
  237. ftime \
  238. getaddrinfo \
  239. getrlimit \
  240. gettimeofday \
  241. gmtime_r \
  242. inet_aton \
  243. localtime_r \
  244. memmem \
  245. prctl \
  246. socketpair \
  247. strlcat \
  248. strlcpy \
  249. strptime \
  250. strtok_r \
  251. strtoull \
  252. sysconf \
  253. uname \
  254. vasprintf \
  255. )
  256. using_custom_malloc=no
  257. if test x$enable_openbsd_malloc = xyes ; then
  258. AC_DEFINE(HAVE_MALLOC_GOOD_SIZE, 1, [Defined if we have the malloc_good_size function])
  259. using_custom_malloc=yes
  260. fi
  261. if test x$tcmalloc = xyes ; then
  262. using_custom_malloc=yes
  263. fi
  264. if test $using_custom_malloc = no ; then
  265. AC_CHECK_FUNCS(mallinfo malloc_good_size malloc_usable_size)
  266. fi
  267. if test "$enable_threads" = "yes"; then
  268. AC_CHECK_HEADERS(pthread.h)
  269. AC_CHECK_FUNCS(pthread_create)
  270. fi
  271. dnl ------------------------------------------------------
  272. dnl Where do you live, libevent? And how do we call you?
  273. if test "$bwin32" = true; then
  274. TOR_LIB_WS32=-lws2_32
  275. # Some of the cargo-cults recommend -lwsock32 as well, but I don't
  276. # think it's actually necessary.
  277. TOR_LIB_GDI=-lgdi32
  278. else
  279. TOR_LIB_WS32=
  280. TOR_LIB_GDI=
  281. fi
  282. AC_SUBST(TOR_LIB_WS32)
  283. AC_SUBST(TOR_LIB_GDI)
  284. dnl We need to do this before we try our disgusting hack below.
  285. AC_CHECK_HEADERS([sys/types.h])
  286. dnl This is a disgusting hack so we safely include older libevent headers.
  287. AC_CHECK_TYPE(u_int64_t, unsigned long long)
  288. AC_CHECK_TYPE(u_int32_t, unsigned long)
  289. AC_CHECK_TYPE(u_int16_t, unsigned short)
  290. AC_CHECK_TYPE(u_int8_t, unsigned char)
  291. tor_libevent_pkg_redhat="libevent"
  292. tor_libevent_pkg_debian="libevent-dev"
  293. tor_libevent_devpkg_redhat="libevent-devel"
  294. tor_libevent_devpkg_debian="libevent-dev"
  295. TOR_SEARCH_LIBRARY(libevent, $trylibeventdir, [-levent $TOR_LIB_WS32], [
  296. #ifdef WIN32
  297. #include <winsock2.h>
  298. #endif
  299. #include <stdlib.h>
  300. #include <sys/time.h>
  301. #include <sys/types.h>
  302. #include <event.h>], [
  303. #ifdef WIN32
  304. #include <winsock2.h>
  305. #endif
  306. void exit(int); void *event_init(void);],
  307. [
  308. #ifdef WIN32
  309. {WSADATA d; WSAStartup(0x101,&d); }
  310. #endif
  311. event_init(); exit(0);
  312. ], [--with-libevent-dir], [/opt/libevent])
  313. dnl Now check for particular libevent functions.
  314. save_LIBS="$LIBS"
  315. save_LDFLAGS="$LDFLAGS"
  316. save_CPPFLAGS="$CPPFLAGS"
  317. LIBS="-levent $TOR_LIB_WS32 $LIBS"
  318. LDFLAGS="$TOR_LDFLAGS_libevent $LDFLAGS"
  319. CPPFLAGS="$TOR_CPPFLAGS_libevent $CPPFLAGS"
  320. AC_CHECK_FUNCS(event_get_version event_get_version_number event_get_method event_set_log_callback evdns_set_outgoing_bind_address event_base_loopexit)
  321. AC_CHECK_MEMBERS([struct event.min_heap_idx], , ,
  322. [#include <event.h>
  323. ])
  324. AC_CHECK_HEADERS(event2/event.h event2/dns.h event2/bufferevent_ssl.h)
  325. LIBS="$save_LIBS"
  326. LDFLAGS="$save_LDFLAGS"
  327. CPPFLAGS="$save_CPPFLAGS"
  328. AM_CONDITIONAL(USE_EXTERNAL_EVDNS, test x$ac_cv_header_event2_dns_h = xyes)
  329. if test "$enable_static_libevent" = "yes"; then
  330. if test "$tor_cv_library_libevent_dir" = "(system)"; then
  331. AC_MSG_ERROR("You must specify an explicit --with-libevent-dir=x option when using --enable-static-libevent")
  332. else
  333. TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent.a"
  334. fi
  335. else
  336. TOR_LIBEVENT_LIBS="-levent"
  337. fi
  338. AC_SUBST(TOR_LIBEVENT_LIBS)
  339. dnl This isn't the best test for Libevent 2.0.3-alpha. Once it's released,
  340. dnl we can do much better.
  341. if test "$enable_bufferevents" = "yes" ; then
  342. if test "$ac_cv_header_event2_bufferevent_ssl_h" != "yes" ; then
  343. AC_MSG_ERROR([You've asked for bufferevent support, but you're using a version of Libevent without SSL support. This won't work. We need Libevent 2.0.8-rc or later, and you don't seem to even have Libevent 2.0.3-alpha.])
  344. else
  345. CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent"
  346. # Check for the right version. First see if version detection works.
  347. AC_MSG_CHECKING([whether we can detect the Libevent version])
  348. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  349. #include <event2/event.h>
  350. #if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 10
  351. #error
  352. int x = y(zz);
  353. #else
  354. int x = 1;
  355. #endif
  356. ])], [event_version_number_works=yes; AC_MSG_RESULT([yes]) ],
  357. [event_version_number_works=no; AC_MSG_RESULT([no])])
  358. if test "$event_version_number_works" != 'yes'; then
  359. AC_MSG_WARN([Version detection on Libevent seems broken. Your Libevent installation is probably screwed up or very old.])
  360. else
  361. AC_MSG_CHECKING([whether Libevent is new enough for bufferevents])
  362. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  363. #include <event2/event.h>
  364. #if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 0x02000800
  365. #error
  366. int x = y(zz);
  367. #else
  368. int x = 1;
  369. #endif
  370. ])], [ AC_MSG_RESULT([yes]) ],
  371. [ AC_MSG_RESULT([no])
  372. AC_MSG_ERROR([Libevent does not seem new enough to support bufferevents. We require 2.0.8-rc or later]) ] )
  373. fi
  374. fi
  375. fi
  376. LIBS="$save_LIBS"
  377. LDFLAGS="$save_LDFLAGS"
  378. CPPFLAGS="$save_CPPFLAGS"
  379. AM_CONDITIONAL(USE_BUFFEREVENTS, test "$enable_bufferevents" = "yes")
  380. if test "$enable_bufferevents" = "yes"; then
  381. AC_DEFINE(USE_BUFFEREVENTS, 1, [Defined if we're going to use Libevent's buffered IO API])
  382. fi
  383. dnl ------------------------------------------------------
  384. dnl Where do you live, openssl? And how do we call you?
  385. tor_openssl_pkg_redhat="openssl"
  386. tor_openssl_pkg_debian="libssl"
  387. tor_openssl_devpkg_redhat="openssl-devel"
  388. tor_openssl_devpkg_debian="libssl-dev"
  389. ALT_openssl_WITHVAL=""
  390. AC_ARG_WITH(ssl-dir,
  391. [ --with-ssl-dir=PATH Obsolete alias for --with-openssl-dir ],
  392. [
  393. if test "x$withval" != xno && test "x$withval" != "x" ; then
  394. ALT_openssl_WITHVAL="$withval"
  395. fi
  396. ])
  397. TOR_SEARCH_LIBRARY(openssl, $tryssldir, [-lssl -lcrypto $TOR_LIB_GDI],
  398. [#include <openssl/rand.h>],
  399. [void RAND_add(const void *buf, int num, double entropy);],
  400. [RAND_add((void*)0,0,0); exit(0);], [],
  401. [/usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/athena /opt/openssl])
  402. dnl XXXX check for OPENSSL_VERSION_NUMBER == SSLeay()
  403. echo "tor_cv_library_openssl_dir is $tor_cv_library_openssl_dir"
  404. if test "$enable_static_openssl" = "yes"; then
  405. if test "$tor_cv_library_openssl_dir" = "(system)"; then
  406. AC_MSG_ERROR("You must specify an explicit --with-openssl-dir=x option when using --enable-static-openssl")
  407. else
  408. TOR_OPENSSL_LIBS="$TOR_LIBDIR_openssl/libssl.a $TOR_LIBDIR_openssl/libcrypto.a"
  409. fi
  410. else
  411. TOR_OPENSSL_LIBS="-lssl -lcrypto"
  412. fi
  413. AC_SUBST(TOR_OPENSSL_LIBS)
  414. dnl ------------------------------------------------------
  415. dnl Where do you live, zlib? And how do we call you?
  416. tor_openssl_pkg_redhat="zlib"
  417. tor_openssl_pkg_debian="zlib1g"
  418. tor_openssl_devpkg_redhat="zlib-devel"
  419. tor_openssl_devpkg_debian="zlib1g-dev"
  420. TOR_SEARCH_LIBRARY(zlib, $tryzlibdir, [-lz],
  421. [#include <zlib.h>],
  422. [const char * zlibVersion(void);],
  423. [zlibVersion(); exit(0);], [--with-zlib-dir],
  424. [/opt/zlib])
  425. if test "$enable_static_zlib" = "yes"; then
  426. if test "$tor_cv_library_zlib_dir" = "(system)"; then
  427. AC_MSG_ERROR("You must specify an explicit --with-zlib-dir=x option when
  428. using --enable-static-zlib")
  429. else
  430. TOR_ZLIB_LIBS="$TOR_LIBDIR_zlib/libz.a"
  431. echo "$TOR_LIBDIR_zlib/libz.a"
  432. fi
  433. else
  434. TOR_ZLIB_LIBS="-lz"
  435. fi
  436. AC_SUBST(TOR_ZLIB_LIBS)
  437. dnl Make sure to enable support for large off_t if available.
  438. dnl ------------------------------------------------------
  439. dnl Where do you live, libnatpmp? And how do we call you?
  440. dnl There are no packages for Debian or Redhat as of this patch
  441. if test "$natpmp" = "true"; then
  442. AC_DEFINE(NAT_PMP, 1, [Define to 1 if we are building with nat-pmp.])
  443. TOR_SEARCH_LIBRARY(libnatpmp, $trylibnatpmpdir, [-lnatpmp],
  444. [#include <natpmp.h>],
  445. [#include <natpmp.h>],
  446. [ int r;
  447. natpmp_t natpmp;
  448. natpmpresp_t response;
  449. r = initnatpmp(&natpmp);],
  450. [printf("initnatpmp() returned %d (%s)\n", r, r?"FAILED":"SUCCESS");
  451. exit(0);],
  452. [--with-libnatpmp-dir],
  453. [/usr/lib/])
  454. fi
  455. dnl ------------------------------------------------------
  456. dnl Where do you live, libminiupnpc? And how do we call you?
  457. dnl There are no packages for Debian or Redhat as of this patch
  458. if test "$upnp" = "true"; then
  459. AC_DEFINE(MINIUPNPC, 1, [Define to 1 if we are building with UPnP.])
  460. TOR_SEARCH_LIBRARY(libminiupnpc, $trylibminiupnpcdir, [-lminiupnpc],
  461. [#include <miniupnpc/miniwget.h>
  462. #include <miniupnpc/miniupnpc.h>
  463. #include <miniupnpc/upnpcommands.h>],
  464. [void upnpDiscover(int delay, const char * multicastif,
  465. const char * minissdpdsock, int sameport);],
  466. [upnpDiscover(1, 0, 0, 0); exit(0);],
  467. [--with-libminiupnpc-dir],
  468. [/usr/lib/])
  469. fi
  470. AC_SYS_LARGEFILE
  471. AC_CHECK_HEADERS(
  472. assert.h \
  473. errno.h \
  474. fcntl.h \
  475. signal.h \
  476. string.h \
  477. sys/fcntl.h \
  478. sys/stat.h \
  479. sys/time.h \
  480. sys/types.h \
  481. time.h \
  482. unistd.h
  483. , , AC_MSG_WARN(Some headers were not found, compilation may fail. If compilation succeeds, please send your orconfig.h to the developers so we can fix this warning.))
  484. dnl These headers are not essential
  485. AC_CHECK_HEADERS(
  486. arpa/inet.h \
  487. grp.h \
  488. inttypes.h \
  489. limits.h \
  490. linux/types.h \
  491. machine/limits.h \
  492. malloc.h \
  493. malloc/malloc.h \
  494. malloc_np.h \
  495. netdb.h \
  496. netinet/in.h \
  497. netinet/in6.h \
  498. pwd.h \
  499. stdint.h \
  500. sys/file.h \
  501. sys/ioctl.h \
  502. sys/limits.h \
  503. sys/mman.h \
  504. sys/param.h \
  505. sys/prctl.h \
  506. sys/resource.h \
  507. sys/socket.h \
  508. sys/syslimits.h \
  509. sys/time.h \
  510. sys/types.h \
  511. sys/un.h \
  512. sys/utime.h \
  513. sys/wait.h \
  514. syslog.h \
  515. utime.h
  516. )
  517. TOR_CHECK_PROTOTYPE(malloc_good_size, HAVE_MALLOC_GOOD_SIZE_PROTOTYPE,
  518. [#ifdef HAVE_MALLOC_H
  519. #include <malloc.h>
  520. #endif
  521. #ifdef HAVE_MALLOC_MALLOC_H
  522. #include <malloc/malloc.h>
  523. #endif])
  524. AC_CHECK_HEADERS(net/if.h, net_if_found=1, net_if_found=0,
  525. [#ifdef HAVE_SYS_TYPES_H
  526. #include <sys/types.h>
  527. #endif
  528. #ifdef HAVE_SYS_SOCKET_H
  529. #include <sys/socket.h>
  530. #endif])
  531. AC_CHECK_HEADERS(net/pfvar.h, net_pfvar_found=1, net_pfvar_found=0,
  532. [#ifdef HAVE_SYS_TYPES_H
  533. #include <sys/types.h>
  534. #endif
  535. #ifdef HAVE_SYS_SOCKET_H
  536. #include <sys/socket.h>
  537. #endif
  538. #ifdef HAVE_NET_IF_H
  539. #include <net/if.h>
  540. #endif])
  541. AC_CHECK_HEADERS(linux/netfilter_ipv4.h,
  542. linux_netfilter_ipv4=1, linux_netfilter_ipv4=0,
  543. [#ifdef HAVE_SYS_TYPES_H
  544. #include <sys/types.h>
  545. #endif
  546. #ifdef HAVE_SYS_SOCKET_H
  547. #include <sys/socket.h>
  548. #endif
  549. #ifdef HAVE_LIMITS_H
  550. #include <limits.h>
  551. #endif
  552. #ifdef HAVE_LINUX_TYPES_H
  553. #include <linux/types.h>
  554. #endif
  555. #ifdef HAVE_NETINET_IN6_H
  556. #include <netinet/in6.h>
  557. #endif
  558. #ifdef HAVE_NETINET_IN_H
  559. #include <netinet/in.h>
  560. #endif])
  561. if test x$transparent = xtrue ; then
  562. transparent_ok=0
  563. if test x$net_if_found = x1 && test x$net_pfvar_found = x1 ; then
  564. transparent_ok=1
  565. fi
  566. if test x$linux_netfilter_ipv4 = x1 ; then
  567. transparent_ok=1
  568. fi
  569. if test x$transparent_ok = x1 ; then
  570. AC_DEFINE(USE_TRANSPARENT, 1, "Define to enable transparent proxy support")
  571. case $host in
  572. *-*-openbsd*)
  573. AC_DEFINE(OPENBSD, 1, "Define to handle pf on OpenBSD properly") ;;
  574. esac
  575. else
  576. AC_MSG_NOTICE([Transparent proxy support enabled, but missing headers.])
  577. fi
  578. fi
  579. AC_CHECK_MEMBERS([struct timeval.tv_sec], , ,
  580. [#ifdef HAVE_SYS_TYPES_H
  581. #include <sys/types.h>
  582. #endif
  583. #ifdef HAVE_SYS_TIME_H
  584. #include <sys/time.h>
  585. #endif])
  586. dnl In case we aren't given a working stdint.h, we'll need to grow our own.
  587. dnl Watch out.
  588. AC_CHECK_SIZEOF(int8_t)
  589. AC_CHECK_SIZEOF(int16_t)
  590. AC_CHECK_SIZEOF(int32_t)
  591. AC_CHECK_SIZEOF(int64_t)
  592. AC_CHECK_SIZEOF(uint8_t)
  593. AC_CHECK_SIZEOF(uint16_t)
  594. AC_CHECK_SIZEOF(uint32_t)
  595. AC_CHECK_SIZEOF(uint64_t)
  596. AC_CHECK_SIZEOF(intptr_t)
  597. AC_CHECK_SIZEOF(uintptr_t)
  598. dnl AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, intptr_t, uintptr_t])
  599. AC_CHECK_SIZEOF(char)
  600. AC_CHECK_SIZEOF(short)
  601. AC_CHECK_SIZEOF(int)
  602. AC_CHECK_SIZEOF(long)
  603. AC_CHECK_SIZEOF(long long)
  604. AC_CHECK_SIZEOF(__int64)
  605. AC_CHECK_SIZEOF(void *)
  606. AC_CHECK_SIZEOF(time_t)
  607. AC_CHECK_SIZEOF(size_t)
  608. AC_CHECK_TYPES([uint, u_char, ssize_t])
  609. dnl used to include sockaddr_storage, but everybody has that.
  610. AC_CHECK_TYPES([struct in6_addr, struct sockaddr_in6, sa_family_t], , ,
  611. [#ifdef HAVE_SYS_TYPES_H
  612. #include <sys/types.h>
  613. #endif
  614. #ifdef HAVE_NETINET_IN_H
  615. #include <netinet/in.h>
  616. #endif
  617. #ifdef HAVE_NETINET_IN6_H
  618. #include <netinet/in6.h>
  619. #endif
  620. #ifdef HAVE_SYS_SOCKET_H
  621. #include <sys/socket.h>
  622. #endif
  623. #ifdef MS_WINDOWS
  624. #define WIN32_WINNT 0x400
  625. #define _WIN32_WINNT 0x400
  626. #define WIN32_LEAN_AND_MEAN
  627. #if defined(_MSC_VER) && (_MSC_VER < 1300)
  628. #include <winsock.h>
  629. #else
  630. #include <winsock2.h>
  631. #include <ws2tcpip.h>
  632. #endif
  633. #endif
  634. ])
  635. AC_CHECK_MEMBERS([struct in6_addr.s6_addr32, struct in6_addr.s6_addr16, struct sockaddr_in.sin_len, struct sockaddr_in6.sin6_len], , ,
  636. [#ifdef HAVE_SYS_TYPES_H
  637. #include <sys/types.h>
  638. #endif
  639. #ifdef HAVE_NETINET_IN_H
  640. #include <netinet/in.h>
  641. #endif
  642. #ifdef HAVE_NETINET_IN6_H
  643. #include <netinet/in6.h>
  644. #endif
  645. #ifdef HAVE_SYS_SOCKET_H
  646. #include <sys/socket.h>
  647. #endif
  648. #ifdef MS_WINDOWS
  649. #define WIN32_WINNT 0x400
  650. #define _WIN32_WINNT 0x400
  651. #define WIN32_LEAN_AND_MEAN
  652. #if defined(_MSC_VER) && (_MSC_VER < 1300)
  653. #include <winsock.h>
  654. #else
  655. #include <winsock2.h>
  656. #include <ws2tcpip.h>
  657. #endif
  658. #endif
  659. ])
  660. AC_CHECK_TYPES([rlim_t], , ,
  661. [#ifdef HAVE_SYS_TYPES_H
  662. #include <sys/types.h>
  663. #endif
  664. #ifdef HAVE_SYS_TIME_H
  665. #include <sys/time.h>
  666. #endif
  667. #ifdef HAVE_SYS_RESOURCE_H
  668. #include <sys/resource.h>
  669. #endif
  670. ])
  671. AC_CACHE_CHECK([whether time_t is signed], tor_cv_time_t_signed, [
  672. AC_RUN_IFELSE([AC_LANG_SOURCE([
  673. #ifdef HAVE_SYS_TYPES_H
  674. #include <sys/types.h>
  675. #endif
  676. #ifdef HAVE_SYS_TIME_H
  677. #include <sys/time.h>
  678. #endif
  679. #ifdef HAVE_TIME_H
  680. #include <time.h>
  681. #endif
  682. int main(int c, char**v) { if (((time_t)-1)<0) return 1; else return 0; }])],
  683. tor_cv_time_t_signed=no, tor_cv_time_t_signed=yes, tor_cv_time_t_signed=cross)
  684. ])
  685. if test "$tor_cv_time_t_signed" = cross; then
  686. AC_MSG_NOTICE([Cross compiling: assuming that time_t is signed.])
  687. fi
  688. if test "$tor_cv_time_t_signed" != no; then
  689. AC_DEFINE([TIME_T_IS_SIGNED], 1,
  690. [Define to 1 iff time_t is signed])
  691. fi
  692. AC_CACHE_CHECK([whether size_t is signed], tor_cv_size_t_signed, [
  693. AC_RUN_IFELSE([AC_LANG_SOURCE([
  694. #ifdef HAVE_SYS_TYPES_H
  695. #include <sys/types.h>
  696. #endif
  697. int main(int c, char**v) { if (((size_t)-1)<0) return 1; else return 0; }])],
  698. tor_cv_size_t_signed=no, tor_cv_size_t_signed=yes, tor_cv_size_t_signed=cross)
  699. ])
  700. if test "$tor_cv_size_t_signed" = cross; then
  701. AC_MSG_NOTICE([Cross compiling: assuming that size_t is not signed.])
  702. fi
  703. if test "$tor_cv_size_t_signed" = yes; then
  704. AC_MSG_ERROR([You have a signed size_t; that's grossly nonconformant.])
  705. fi
  706. AC_CHECK_SIZEOF(socklen_t, , [AC_INCLUDES_DEFAULT()
  707. #ifdef HAVE_SYS_SOCKET_H
  708. #include <sys/socket.h>
  709. #endif
  710. ])
  711. # We want to make sure that we _don't_ have a cell_t defined, like IRIX does.
  712. AC_CHECK_SIZEOF(cell_t)
  713. # Now make sure that NULL can be represented as zero bytes.
  714. AC_CACHE_CHECK([whether memset(0) sets pointers to NULL], tor_cv_null_is_zero,
  715. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  716. [[#include <stdlib.h>
  717. #include <string.h>
  718. #include <stdio.h>
  719. #ifdef HAVE_STDDEF_H
  720. #include <stddef.h>
  721. #endif
  722. int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2));
  723. return memcmp(&p1,&p2,sizeof(char*))?1:0; }]])],
  724. [tor_cv_null_is_zero=yes],
  725. [tor_cv_null_is_zero=no],
  726. [tor_cv_null_is_zero=cross])])
  727. if test "$tor_cv_null_is_zero" = cross ; then
  728. # Cross-compiling; let's hope that the target isn't raving mad.
  729. AC_MSG_NOTICE([Cross-compiling: we'll assume that NULL is represented as a sequence of 0-valued bytes.])
  730. fi
  731. if test "$tor_cv_null_is_zero" != no; then
  732. AC_DEFINE([NULL_REP_IS_ZERO_BYTES], 1,
  733. [Define to 1 iff memset(0) sets pointers to NULL])
  734. fi
  735. # And what happens when we malloc zero?
  736. AC_CACHE_CHECK([whether we can malloc(0) safely.], tor_cv_malloc_zero_works,
  737. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  738. [[#include <stdlib.h>
  739. #include <string.h>
  740. #include <stdio.h>
  741. #ifdef HAVE_STDDEF_H
  742. #include <stddef.h>
  743. #endif
  744. int main () { return malloc(0)?0:1; }]])],
  745. [tor_cv_malloc_zero_works=yes],
  746. [tor_cv_malloc_zero_works=no],
  747. [tor_cv_malloc_zero_works=cross])])
  748. if test "$tor_cv_malloc_zero_works" = cross; then
  749. # Cross-compiling; let's hope that the target isn't raving mad.
  750. AC_MSG_NOTICE([Cross-compiling: we'll assume that we need to check malloc() arguments for 0.])
  751. fi
  752. if test "$tor_cv_malloc_zero_works" = yes; then
  753. AC_DEFINE([MALLOC_ZERO_WORKS], 1,
  754. [Define to 1 iff malloc(0) returns a pointer])
  755. fi
  756. # whether we seem to be in a 2s-complement world.
  757. AC_CACHE_CHECK([whether we are using 2s-complement arithmetic], tor_cv_twos_complement,
  758. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  759. [[int main () { int problem = ((-99) != (~99)+1);
  760. return problem ? 1 : 0; }]])],
  761. [tor_cv_twos_complement=yes],
  762. [tor_cv_twos_complement=no],
  763. [tor_cv_twos_complement=cross])])
  764. if test "$tor_cv_twos_complement" = cross ; then
  765. # Cross-compiling; let's hope that the target isn't raving mad.
  766. AC_MSG_NOTICE([Cross-compiling: we'll assume that negative integers are represented with two's complement.])
  767. fi
  768. if test "$tor_cv_twos_complement" != no ; then
  769. AC_DEFINE([USING_TWOS_COMPLEMENT], 1,
  770. [Define to 1 iff we represent negative integers with two's complement])
  771. fi
  772. # Whether we should use the dmalloc memory allocation debugging library.
  773. AC_MSG_CHECKING(whether to use dmalloc (debug memory allocation library))
  774. AC_ARG_WITH(dmalloc,
  775. [ --with-dmalloc Use debug memory allocation library. ],
  776. [if [[ "$withval" = "yes" ]]; then
  777. dmalloc=1
  778. AC_MSG_RESULT(yes)
  779. else
  780. dmalloc=1
  781. AC_MSG_RESULT(no)
  782. fi], [ dmalloc=0; AC_MSG_RESULT(no) ]
  783. )
  784. if [[ $dmalloc -eq 1 ]]; then
  785. AC_CHECK_HEADERS(dmalloc.h, , AC_MSG_ERROR(dmalloc header file not found. Do you have the development files for dmalloc installed?))
  786. AC_SEARCH_LIBS(dmalloc_malloc, [dmallocth dmalloc], , AC_MSG_ERROR(Libdmalloc library not found. If you enable it you better have it installed.))
  787. AC_DEFINE(USE_DMALLOC, 1, [Debug memory allocation library])
  788. AC_DEFINE(DMALLOC_FUNC_CHECK, 1, [Enable dmalloc's malloc function check])
  789. AC_CHECK_FUNCS(dmalloc_strdup dmalloc_strndup)
  790. fi
  791. AC_ARG_WITH(tcmalloc,
  792. [ --with-tcmalloc Use tcmalloc memory allocation library. ],
  793. [ tcmalloc=yes ], [ tcmalloc=no ])
  794. if test x$tcmalloc = xyes ; then
  795. LDFLAGS="-ltcmalloc $LDFLAGS"
  796. fi
  797. # By default, we're going to assume we don't have mlockall()
  798. # bionic and other platforms have various broken mlockall subsystems.
  799. # Some systems don't have a working mlockall, some aren't linkable,
  800. # and some have it but don't declare it.
  801. AC_CHECK_FUNCS(mlockall)
  802. AC_CHECK_DECLS([mlockall], , , [
  803. #ifdef HAVE_SYS_MMAN_H
  804. #include <sys/mman.h>
  805. #endif])
  806. # Allow user to specify an alternate syslog facility
  807. AC_ARG_WITH(syslog-facility,
  808. [ --with-syslog-facility=LOG syslog facility to use (default=LOG_DAEMON)],
  809. syslog_facility="$withval", syslog_facility="LOG_DAEMON")
  810. AC_DEFINE_UNQUOTED(LOGFACILITY,$syslog_facility,[name of the syslog facility])
  811. AC_SUBST(LOGFACILITY)
  812. # Check if we have getresuid and getresgid
  813. AC_CHECK_FUNCS(getresuid getresgid)
  814. # Check for gethostbyname_r in all its glorious incompatible versions.
  815. # (This logic is based on that in Python's configure.in)
  816. AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
  817. [Define this if you have any gethostbyname_r()])
  818. AC_CHECK_FUNC(gethostbyname_r, [
  819. AC_MSG_CHECKING([how many arguments gethostbyname_r() wants])
  820. OLD_CFLAGS=$CFLAGS
  821. CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
  822. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
  823. #include <netdb.h>
  824. ], [[
  825. char *cp1, *cp2;
  826. struct hostent *h1, *h2;
  827. int i1, i2;
  828. (void)gethostbyname_r(cp1,h1,cp2,i1,&h2,&i2);
  829. ]])],[
  830. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  831. AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
  832. [Define this if gethostbyname_r takes 6 arguments])
  833. AC_MSG_RESULT(6)
  834. ], [
  835. AC_TRY_COMPILE([
  836. #include <netdb.h>
  837. ], [
  838. char *cp1, *cp2;
  839. struct hostent *h1;
  840. int i1, i2;
  841. (void)gethostbyname_r(cp1,h1,cp2,i1,&i2);
  842. ], [
  843. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  844. AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
  845. [Define this if gethostbyname_r takes 5 arguments])
  846. AC_MSG_RESULT(5)
  847. ], [
  848. AC_TRY_COMPILE([
  849. #include <netdb.h>
  850. ], [
  851. char *cp1;
  852. struct hostent *h1;
  853. struct hostent_data hd;
  854. (void) gethostbyname_r(cp1,h1,&hd);
  855. ], [
  856. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  857. AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
  858. [Define this if gethostbyname_r takes 3 arguments])
  859. AC_MSG_RESULT(3)
  860. ], [
  861. AC_MSG_RESULT(0)
  862. ])
  863. ])
  864. ])
  865. CFLAGS=$OLD_CFLAGS
  866. ])
  867. AC_CACHE_CHECK([whether the C compiler supports __func__],
  868. tor_cv_have_func_macro,
  869. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  870. #include <stdio.h>
  871. int main(int c, char **v) { puts(__func__); }])],
  872. tor_cv_have_func_macro=yes,
  873. tor_cv_have_func_macro=no))
  874. AC_CACHE_CHECK([whether the C compiler supports __FUNC__],
  875. tor_cv_have_FUNC_macro,
  876. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  877. #include <stdio.h>
  878. int main(int c, char **v) { puts(__FUNC__); }])],
  879. tor_cv_have_FUNC_macro=yes,
  880. tor_cv_have_FUNC_macro=no))
  881. AC_CACHE_CHECK([whether the C compiler supports __FUNCTION__],
  882. tor_cv_have_FUNCTION_macro,
  883. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  884. #include <stdio.h>
  885. int main(int c, char **v) { puts(__FUNCTION__); }])],
  886. tor_cv_have_FUNCTION_macro=yes,
  887. tor_cv_have_FUNCTION_macro=no))
  888. if test "$tor_cv_have_func_macro" = 'yes'; then
  889. AC_DEFINE(HAVE_MACRO__func__, 1, [Defined if the compiler supports __func__])
  890. fi
  891. if test "$tor_cv_have_FUNC_macro" = 'yes'; then
  892. AC_DEFINE(HAVE_MACRO__FUNC__, 1, [Defined if the compiler supports __FUNC__])
  893. fi
  894. if test "$tor_cv_have_FUNCTION_macro" = 'yes'; then
  895. AC_DEFINE(HAVE_MACRO__FUNCTION__, 1,
  896. [Defined if the compiler supports __FUNCTION__])
  897. fi
  898. # $prefix stores the value of the --prefix command line option, or
  899. # NONE if the option wasn't set. In the case that it wasn't set, make
  900. # it be the default, so that we can use it to expand directories now.
  901. if test "x$prefix" = "xNONE"; then
  902. prefix=$ac_default_prefix
  903. fi
  904. # and similarly for $exec_prefix
  905. if test "x$exec_prefix" = "xNONE"; then
  906. exec_prefix=$prefix
  907. fi
  908. if test "x$BUILDDIR" = "x"; then
  909. BUILDDIR=`pwd`
  910. fi
  911. AC_SUBST(BUILDDIR)
  912. AH_TEMPLATE([BUILDDIR],[tor's build directory])
  913. AC_DEFINE_UNQUOTED(BUILDDIR,"$BUILDDIR")
  914. if test "x$CONFDIR" = "x"; then
  915. CONFDIR=`eval echo $sysconfdir/tor`
  916. fi
  917. AC_SUBST(CONFDIR)
  918. AH_TEMPLATE([CONFDIR],[tor's configuration directory])
  919. AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
  920. BINDIR=`eval echo $bindir`
  921. AC_SUBST(BINDIR)
  922. LOCALSTATEDIR=`eval echo $localstatedir`
  923. AC_SUBST(LOCALSTATEDIR)
  924. if test "$bwin32" = true; then
  925. # Test if the linker supports the --nxcompat and --dynamicbase options
  926. # for Windows
  927. save_LDFLAGS="$LDFLAGS"
  928. LDFLAGS="-Wl,--nxcompat -Wl,--dynamicbase"
  929. AC_MSG_CHECKING([whether the linker supports DllCharacteristics])
  930. AC_LINK_IFELSE([AC_LANG_PROGRAM([])],
  931. [AC_MSG_RESULT([yes])]
  932. [save_LDFLAGS="$save_LDFLAGS $LDFLAGS"],
  933. [AC_MSG_RESULT([no])]
  934. )
  935. LDFLAGS="$save_LDFLAGS"
  936. fi
  937. # Set CFLAGS _after_ all the above checks, since our warnings are stricter
  938. # than autoconf's macros like.
  939. if test "$GCC" = yes; then
  940. CFLAGS="$CFLAGS -Wall -g -O2"
  941. # Disable GCC's strict aliasing checks. They are an hours-to-debug
  942. # accident waiting to happen.
  943. CFLAGS="$CFLAGS -fno-strict-aliasing"
  944. else
  945. CFLAGS="$CFLAGS -g -O"
  946. enable_gcc_warnings=no
  947. enable_gcc_warnings_advisory=no
  948. fi
  949. # Add some more warnings which we use in development but not in the
  950. # released versions. (Some relevant gcc versions can't handle these.)
  951. if test x$enable_gcc_warnings = xyes || test x$enable_gcc_warnings_advisory = xyes; then
  952. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  953. #if !defined(__GNUC__) || (__GNUC__ < 4)
  954. #error
  955. #endif])], have_gcc4=yes, have_gcc4=no)
  956. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  957. #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 2)
  958. #error
  959. #endif])], have_gcc42=yes, have_gcc42=no)
  960. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  961. #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)
  962. #error
  963. #endif])], have_gcc43=yes, have_gcc43=no)
  964. save_CFLAGS="$CFLAGS"
  965. CFLAGS="$CFLAGS -Wshorten-64-to-32"
  966. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], have_shorten64_flag=yes,
  967. have_shorten64_flag=no)
  968. CFLAGS="$save_CFLAGS"
  969. case $host in
  970. *-*-openbsd*)
  971. # Some OpenBSD versions (like 4.8) have -Wsystem-headers by default.
  972. # That's fine, except that the headers don't pass -Wredundant-decls.
  973. # Therefore, let's disable -Wsystem-headers when we're building
  974. # with maximal warnings on OpenBSD.
  975. CFLAGS="$CFLAGS -Wno-system-headers" ;;
  976. esac
  977. CFLAGS="$CFLAGS -W -Wfloat-equal -Wundef -Wpointer-arith"
  978. CFLAGS="$CFLAGS -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings"
  979. CFLAGS="$CFLAGS -Wredundant-decls -Wchar-subscripts -Wcomment -Wformat=2"
  980. CFLAGS="$CFLAGS -Wwrite-strings -Wmissing-declarations -Wredundant-decls"
  981. CFLAGS="$CFLAGS -Wnested-externs -Wbad-function-cast -Wswitch-enum"
  982. if test x$enable_gcc_warnings = xyes; then
  983. CFLAGS="$CFLAGS -Werror"
  984. fi
  985. # Disabled, so we can use mallinfo(): -Waggregate-return
  986. if test x$have_gcc4 = xyes ; then
  987. # These warnings break gcc 3.3.5 and work on gcc 4.0.2
  988. CFLAGS="$CFLAGS -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Wold-style-definition"
  989. fi
  990. if test x$have_gcc42 = xyes ; then
  991. # These warnings break gcc 4.0.2 and work on gcc 4.2
  992. # XXXX020 See if any of these work with earlier versions.
  993. CFLAGS="$CFLAGS -Waddress -Wmissing-noreturn -Wnormalized=id -Woverride-init -Wstrict-overflow=1"
  994. # We used to use -Wstrict-overflow=5, but that breaks us heavily under 4.3.
  995. fi
  996. if test x$have_gcc43 = xyes ; then
  997. # These warnings break gcc 4.2 and work on gcc 4.3
  998. # XXXX020 See if any of these work with earlier versions.
  999. CFLAGS="$CFLAGS -Wextra -Warray-bounds"
  1000. fi
  1001. if test x$have_shorten64_flag = xyes ; then
  1002. CFLAGS="$CFLAGS -Wshorten-64-to-32"
  1003. fi
  1004. ##This will break the world on some 64-bit architectures
  1005. # CFLAGS="$CFLAGS -Winline"
  1006. fi
  1007. CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent $TOR_CPPFLAGS_openssl $TOR_CPPFLAGS_zlib"
  1008. AC_CONFIG_FILES([
  1009. Doxyfile
  1010. Makefile
  1011. contrib/Makefile
  1012. contrib/suse/Makefile
  1013. contrib/suse/tor.sh
  1014. contrib/tor.logrotate
  1015. contrib/tor.sh
  1016. contrib/torctl
  1017. contrib/torify
  1018. doc/Makefile
  1019. doc/spec/Makefile
  1020. src/Makefile
  1021. src/common/Makefile
  1022. src/config/Makefile
  1023. src/config/torrc.sample
  1024. src/or/Makefile
  1025. src/test/Makefile
  1026. src/tools/Makefile
  1027. src/tools/tor-fw-helper/Makefile
  1028. src/win32/Makefile
  1029. tor.spec
  1030. ])
  1031. AC_OUTPUT
  1032. if test -x /usr/bin/perl && test -x ./contrib/updateVersions.pl ; then
  1033. ./contrib/updateVersions.pl
  1034. fi