configure.in 40 KB

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