configure.ac 47 KB

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