configure.in 38 KB

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