configure.ac 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530
  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, also_link)
  513. AS_VAR_PUSHDEF([can_compile], [tor_cv_cflags_-fstack-protector-all])
  514. AS_VAR_PUSHDEF([can_link], [tor_can_link_-fstack-protector-all])
  515. AS_VAR_IF(can_compile, [yes],
  516. AS_VAR_IF(can_link, [yes],
  517. [],
  518. AC_MSG_ERROR([We tried to build with stack protection; it looks like your compiler supports it but your libc does not provide it. Are you missing libssp? (You can --disable-gcc-hardening to ignore this error.)]))
  519. )
  520. AS_VAR_POPDEF([can_link])
  521. AS_VAR_POPDEF([can_compile])
  522. TOR_CHECK_CFLAGS(-Wstack-protector)
  523. TOR_CHECK_CFLAGS(-fwrapv)
  524. TOR_CHECK_CFLAGS(--param ssp-buffer-size=1)
  525. if test "$bwin32" = "false"; then
  526. TOR_CHECK_CFLAGS(-fPIE)
  527. TOR_CHECK_LDFLAGS(-pie, "$all_ldflags_for_check", "$all_libs_for_check")
  528. fi
  529. fi
  530. if test x$enable_linker_hardening != xno; then
  531. TOR_CHECK_LDFLAGS(-z relro -z now, "$all_ldflags_for_check", "$all_libs_for_check")
  532. fi
  533. dnl ------------------------------------------------------
  534. dnl Now see if we have a -fomit-frame-pointer compiler option.
  535. saved_CFLAGS="$CFLAGS"
  536. TOR_CHECK_CFLAGS(-fomit-frame-pointer)
  537. if test "$saved_CFLAGS" != "$CFLAGS"; then
  538. F_OMIT_FRAME_POINTER='-fomit-frame-pointer'
  539. else
  540. F_OMIT_FRAME_POINTER=''
  541. fi
  542. CFLAGS="$saved_CFLAGS"
  543. AC_SUBST(F_OMIT_FRAME_POINTER)
  544. dnl ------------------------------------------------------
  545. dnl Where do you live, libnatpmp? And how do we call you?
  546. dnl There are no packages for Debian or Redhat as of this patch
  547. if test "$natpmp" = "true"; then
  548. AC_DEFINE(NAT_PMP, 1, [Define to 1 if we are building with nat-pmp.])
  549. TOR_SEARCH_LIBRARY(libnatpmp, $trylibnatpmpdir, [-lnatpmp $TOR_LIB_WS32 $TOR_LIB_IPHLPAPI],
  550. [#include <natpmp.h>],
  551. [#ifdef _WIN32
  552. #define STATICLIB
  553. #endif
  554. #include <natpmp.h>],
  555. [ int r;
  556. natpmp_t natpmp;
  557. natpmpresp_t response;
  558. r = initnatpmp(&natpmp, 0, 0);],
  559. [printf("initnatpmp() returned %d (%s)\n", r, r?"FAILED":"SUCCESS");
  560. exit(0);],
  561. [--with-libnatpmp-dir],
  562. [/usr/lib/])
  563. fi
  564. dnl ------------------------------------------------------
  565. dnl Where do you live, libminiupnpc? And how do we call you?
  566. dnl There are no packages for Debian or Redhat as of this patch
  567. if test "$upnp" = "true"; then
  568. AC_DEFINE(MINIUPNPC, 1, [Define to 1 if we are building with UPnP.])
  569. dnl Before we call TOR_SEARCH_LIBRARY we'll do a quick compile test
  570. dnl to see if we have miniupnpc-1.5 or -1.6
  571. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <miniupnpc/miniupnpc.h>],
  572. [upnpDiscover(1, 0, 0, 0);exit(0);])],[miniupnpc15="true"],[miniupnpc15="false"])
  573. if test "$miniupnpc15" = "true" ; then
  574. AC_DEFINE([MINIUPNPC15],[1],[libminiupnpc version 1.5 found])
  575. TOR_SEARCH_LIBRARY(libminiupnpc, $trylibminiupnpcdir, [-lminiupnpc $TOR_LIB_WS32 $TOR_LIB_IPHLPAPI],
  576. [#include <miniupnpc/miniwget.h>
  577. #include <miniupnpc/miniupnpc.h>
  578. #include <miniupnpc/upnpcommands.h>],
  579. [void upnpDiscover(int delay, const char * multicastif,
  580. const char * minissdpdsock, int sameport);],
  581. [upnpDiscover(1, 0, 0, 0); exit(0);],
  582. [--with-libminiupnpc-dir],
  583. [/usr/lib/])
  584. else
  585. TOR_SEARCH_LIBRARY(libminiupnpc, $trylibminiupnpcdir, [-lminiupnpc $TOR_LIB_WS32 $TOR_LIB_IPHLPAPI],
  586. [#include <miniupnpc/miniwget.h>
  587. #include <miniupnpc/miniupnpc.h>
  588. #include <miniupnpc/upnpcommands.h>],
  589. [void upnpDiscover(int delay, const char * multicastif,
  590. const char * minissdpdsock, int sameport, int ipv6, int * error);],
  591. [upnpDiscover(1, 0, 0, 0, 0, 0); exit(0);],
  592. [--with-libminiupnpc-dir],
  593. [/usr/lib/])
  594. fi
  595. fi
  596. dnl ============================================================
  597. dnl Check for libseccomp
  598. AC_CHECK_HEADERS([seccomp.h])
  599. AC_SEARCH_LIBS(seccomp_init, [seccomp])
  600. dnl ============================================================
  601. dnl We need an implementation of curve25519.
  602. dnl set these defaults.
  603. have_a_curve25519=no
  604. build_curve25519_donna=no
  605. build_curve25519_donna_c64=no
  606. use_curve25519_donna=no
  607. use_curve25519_nacl=no
  608. CURVE25519_LIBS=
  609. if test x$enable_curve25519 != xno; then
  610. dnl The best choice is using curve25519-donna-c64, but that requires
  611. dnl that we
  612. AC_CACHE_CHECK([whether we can use curve25519-donna-c64],
  613. tor_cv_can_use_curve25519_donna_c64,
  614. [AC_RUN_IFELSE(
  615. [AC_LANG_PROGRAM([dnl
  616. #include <stdint.h>
  617. typedef unsigned uint128_t __attribute__((mode(TI)));
  618. int func(uint64_t a, uint64_t b) {
  619. uint128_t c = ((uint128_t)a) * b;
  620. int ok = ((uint64_t)(c>>96)) == 522859 &&
  621. (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L &&
  622. (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L &&
  623. (((uint64_t)(c))&0xffffffffL) == 0;
  624. return ok;
  625. }
  626. ], [dnl
  627. int ok = func( ((uint64_t)2000000000) * 1000000000,
  628. ((uint64_t)1234567890) << 24);
  629. return !ok;
  630. ])],
  631. [tor_cv_can_use_curve25519_donna_c64=yes],
  632. [tor_cv_can_use_curve25519_donna_c64=no],
  633. [AC_COMPILE_IFELSE(
  634. [AC_LANG_PROGRAM([dnl
  635. #include <stdint.h>
  636. typedef unsigned uint128_t __attribute__((mode(TI)));
  637. int func(uint64_t a, uint64_t b) {
  638. uint128_t c = ((uint128_t)a) * b;
  639. int ok = ((uint64_t)(c>>96)) == 522859 &&
  640. (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L &&
  641. (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L &&
  642. (((uint64_t)(c))&0xffffffffL) == 0;
  643. return ok;
  644. }
  645. ], [dnl
  646. int ok = func( ((uint64_t)2000000000) * 1000000000,
  647. ((uint64_t)1234567890) << 24);
  648. return !ok;
  649. ])],
  650. [tor_cv_can_use_curve25519_donna_c64=cross],
  651. [tor_cv_can_use_curve25519_donna_c64=no])])])
  652. AC_CHECK_HEADERS([crypto_scalarmult_curve25519.h \
  653. nacl/crypto_scalarmult_curve25519.h])
  654. AC_CACHE_CHECK([for nacl compiled with a fast curve25519 implementation],
  655. tor_cv_can_use_curve25519_nacl,
  656. [tor_saved_LIBS="$LIBS"
  657. LIBS="$LIBS -lnacl"
  658. AC_LINK_IFELSE(
  659. [AC_LANG_PROGRAM([dnl
  660. #ifdef HAVE_CRYPTO_SCALARMULT_CURVE25519_H
  661. #include <crypto_scalarmult_curve25519.h>
  662. #elif defined(HAVE_NACL_CRYPTO_SCALARMULT_CURVE25519_H)
  663. #include <nacl/crypto_scalarmult_curve25519.h>
  664. #endif
  665. #ifdef crypto_scalarmult_curve25519_ref_BYTES
  666. #error Hey, this is the reference implementation! That's not fast.
  667. #endif
  668. ], [
  669. unsigned char *a, *b, *c; crypto_scalarmult_curve25519(a,b,c);
  670. ])], [tor_cv_can_use_curve25519_nacl=yes],
  671. [tor_cv_can_use_curve25519_nacl=no])
  672. LIBS="$tor_saved_LIBS" ])
  673. dnl Okay, now we need to figure out which one to actually use. Fall back
  674. dnl to curve25519-donna.c
  675. if test x$tor_cv_can_use_curve25519_donna_c64 != xno; then
  676. build_curve25519_donna_c64=yes
  677. use_curve25519_donna=yes
  678. elif test x$tor_cv_can_use_curve25519_nacl = xyes; then
  679. use_curve25519_nacl=yes
  680. CURVE25519_LIBS=-lnacl
  681. else
  682. build_curve25519_donna=yes
  683. use_curve25519_donna=yes
  684. fi
  685. have_a_curve25519=yes
  686. fi
  687. if test x$have_a_curve25519 = xyes; then
  688. AC_DEFINE(CURVE25519_ENABLED, 1,
  689. [Defined if we have a curve25519 implementation])
  690. fi
  691. if test x$use_curve25519_donna = xyes; then
  692. AC_DEFINE(USE_CURVE25519_DONNA, 1,
  693. [Defined if we should use an internal curve25519_donna{,_c64} implementation])
  694. fi
  695. if test x$use_curve25519_nacl = xyes; then
  696. AC_DEFINE(USE_CURVE25519_NACL, 1,
  697. [Defined if we should use a curve25519 from nacl])
  698. fi
  699. AM_CONDITIONAL(BUILD_CURVE25519_DONNA, test x$build_curve25519_donna = xyes)
  700. AM_CONDITIONAL(BUILD_CURVE25519_DONNA_C64, test x$build_curve25519_donna_c64 = xyes)
  701. AM_CONDITIONAL(CURVE25519_ENABLED, test x$have_a_curve25519 = xyes)
  702. AC_SUBST(CURVE25519_LIBS)
  703. dnl Make sure to enable support for large off_t if available.
  704. AC_SYS_LARGEFILE
  705. AC_CHECK_HEADERS(
  706. assert.h \
  707. errno.h \
  708. fcntl.h \
  709. signal.h \
  710. string.h \
  711. sys/fcntl.h \
  712. sys/stat.h \
  713. sys/time.h \
  714. sys/types.h \
  715. time.h \
  716. unistd.h
  717. , , 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.))
  718. dnl These headers are not essential
  719. AC_CHECK_HEADERS(
  720. arpa/inet.h \
  721. crt_externs.h \
  722. grp.h \
  723. ifaddrs.h \
  724. inttypes.h \
  725. limits.h \
  726. linux/types.h \
  727. machine/limits.h \
  728. malloc.h \
  729. malloc/malloc.h \
  730. malloc_np.h \
  731. netdb.h \
  732. netinet/in.h \
  733. netinet/in6.h \
  734. pwd.h \
  735. stdint.h \
  736. sys/file.h \
  737. sys/ioctl.h \
  738. sys/limits.h \
  739. sys/mman.h \
  740. sys/param.h \
  741. sys/prctl.h \
  742. sys/resource.h \
  743. sys/socket.h \
  744. sys/syslimits.h \
  745. sys/time.h \
  746. sys/types.h \
  747. sys/un.h \
  748. sys/utime.h \
  749. sys/wait.h \
  750. syslog.h \
  751. utime.h
  752. )
  753. AC_CHECK_HEADERS(sys/param.h)
  754. AC_CHECK_HEADERS(net/if.h, net_if_found=1, net_if_found=0,
  755. [#ifdef HAVE_SYS_TYPES_H
  756. #include <sys/types.h>
  757. #endif
  758. #ifdef HAVE_SYS_SOCKET_H
  759. #include <sys/socket.h>
  760. #endif])
  761. AC_CHECK_HEADERS(net/pfvar.h, net_pfvar_found=1, net_pfvar_found=0,
  762. [#ifdef HAVE_SYS_TYPES_H
  763. #include <sys/types.h>
  764. #endif
  765. #ifdef HAVE_SYS_SOCKET_H
  766. #include <sys/socket.h>
  767. #endif
  768. #ifdef HAVE_NET_IF_H
  769. #include <net/if.h>
  770. #endif])
  771. AC_CHECK_HEADERS(linux/netfilter_ipv4.h,
  772. linux_netfilter_ipv4=1, linux_netfilter_ipv4=0,
  773. [#ifdef HAVE_SYS_TYPES_H
  774. #include <sys/types.h>
  775. #endif
  776. #ifdef HAVE_SYS_SOCKET_H
  777. #include <sys/socket.h>
  778. #endif
  779. #ifdef HAVE_LIMITS_H
  780. #include <limits.h>
  781. #endif
  782. #ifdef HAVE_LINUX_TYPES_H
  783. #include <linux/types.h>
  784. #endif
  785. #ifdef HAVE_NETINET_IN6_H
  786. #include <netinet/in6.h>
  787. #endif
  788. #ifdef HAVE_NETINET_IN_H
  789. #include <netinet/in.h>
  790. #endif])
  791. if test x$transparent = xtrue ; then
  792. transparent_ok=0
  793. if test x$net_if_found = x1 && test x$net_pfvar_found = x1 ; then
  794. transparent_ok=1
  795. fi
  796. if test x$linux_netfilter_ipv4 = x1 ; then
  797. transparent_ok=1
  798. fi
  799. if test x$transparent_ok = x1 ; then
  800. AC_DEFINE(USE_TRANSPARENT, 1, "Define to enable transparent proxy support")
  801. case $host in
  802. *-*-openbsd* | *-*-bitrig*)
  803. AC_DEFINE(OPENBSD, 1, "Define to handle pf on OpenBSD properly") ;;
  804. esac
  805. else
  806. AC_MSG_NOTICE([Transparent proxy support enabled, but missing headers.])
  807. fi
  808. fi
  809. AC_CHECK_MEMBERS([struct timeval.tv_sec], , ,
  810. [#ifdef HAVE_SYS_TYPES_H
  811. #include <sys/types.h>
  812. #endif
  813. #ifdef HAVE_SYS_TIME_H
  814. #include <sys/time.h>
  815. #endif])
  816. dnl In case we aren't given a working stdint.h, we'll need to grow our own.
  817. dnl Watch out.
  818. AC_CHECK_SIZEOF(int8_t)
  819. AC_CHECK_SIZEOF(int16_t)
  820. AC_CHECK_SIZEOF(int32_t)
  821. AC_CHECK_SIZEOF(int64_t)
  822. AC_CHECK_SIZEOF(uint8_t)
  823. AC_CHECK_SIZEOF(uint16_t)
  824. AC_CHECK_SIZEOF(uint32_t)
  825. AC_CHECK_SIZEOF(uint64_t)
  826. AC_CHECK_SIZEOF(intptr_t)
  827. AC_CHECK_SIZEOF(uintptr_t)
  828. dnl AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, intptr_t, uintptr_t])
  829. AC_CHECK_SIZEOF(char)
  830. AC_CHECK_SIZEOF(short)
  831. AC_CHECK_SIZEOF(int)
  832. AC_CHECK_SIZEOF(long)
  833. AC_CHECK_SIZEOF(long long)
  834. AC_CHECK_SIZEOF(__int64)
  835. AC_CHECK_SIZEOF(void *)
  836. AC_CHECK_SIZEOF(time_t)
  837. AC_CHECK_SIZEOF(size_t)
  838. AC_CHECK_SIZEOF(pid_t)
  839. AC_CHECK_TYPES([uint, u_char, ssize_t])
  840. dnl used to include sockaddr_storage, but everybody has that.
  841. AC_CHECK_TYPES([struct in6_addr, struct sockaddr_in6, sa_family_t], , ,
  842. [#ifdef HAVE_SYS_TYPES_H
  843. #include <sys/types.h>
  844. #endif
  845. #ifdef HAVE_NETINET_IN_H
  846. #include <netinet/in.h>
  847. #endif
  848. #ifdef HAVE_NETINET_IN6_H
  849. #include <netinet/in6.h>
  850. #endif
  851. #ifdef HAVE_SYS_SOCKET_H
  852. #include <sys/socket.h>
  853. #endif
  854. #ifdef _WIN32
  855. #define _WIN32_WINNT 0x0501
  856. #define WIN32_LEAN_AND_MEAN
  857. #if defined(_MSC_VER) && (_MSC_VER < 1300)
  858. #include <winsock.h>
  859. #else
  860. #include <winsock2.h>
  861. #include <ws2tcpip.h>
  862. #endif
  863. #endif
  864. ])
  865. AC_CHECK_MEMBERS([struct in6_addr.s6_addr32, struct in6_addr.s6_addr16, struct sockaddr_in.sin_len, struct sockaddr_in6.sin6_len], , ,
  866. [#ifdef HAVE_SYS_TYPES_H
  867. #include <sys/types.h>
  868. #endif
  869. #ifdef HAVE_NETINET_IN_H
  870. #include <netinet/in.h>
  871. #endif
  872. #ifdef HAVE_NETINET_IN6_H
  873. #include <netinet/in6.h>
  874. #endif
  875. #ifdef HAVE_SYS_SOCKET_H
  876. #include <sys/socket.h>
  877. #endif
  878. #ifdef _WIN32
  879. #define _WIN32_WINNT 0x0501
  880. #define WIN32_LEAN_AND_MEAN
  881. #if defined(_MSC_VER) && (_MSC_VER < 1300)
  882. #include <winsock.h>
  883. #else
  884. #include <winsock2.h>
  885. #include <ws2tcpip.h>
  886. #endif
  887. #endif
  888. ])
  889. AC_CHECK_TYPES([rlim_t], , ,
  890. [#ifdef HAVE_SYS_TYPES_H
  891. #include <sys/types.h>
  892. #endif
  893. #ifdef HAVE_SYS_TIME_H
  894. #include <sys/time.h>
  895. #endif
  896. #ifdef HAVE_SYS_RESOURCE_H
  897. #include <sys/resource.h>
  898. #endif
  899. ])
  900. AX_CHECK_SIGN([time_t],
  901. [ AC_DEFINE(TIME_T_IS_SIGNED, 1, [Define if time_t is signed]) ],
  902. [ : ], [
  903. #ifdef HAVE_SYS_TYPES_H
  904. #include <sys/types.h>
  905. #endif
  906. #ifdef HAVE_SYS_TIME_H
  907. #include <sys/time.h>
  908. #endif
  909. #ifdef HAVE_TIME_H
  910. #include <time.h>
  911. #endif
  912. ])
  913. if test "$ax_cv_decl_time_t_signed" = no; then
  914. AC_MSG_WARN([You have an unsigned time_t; some things will probably break. Please tell the Tor developers about your interesting platform.])
  915. fi
  916. AX_CHECK_SIGN([size_t],
  917. [ tor_cv_size_t_signed=yes ],
  918. [ tor_cv_size_t_signed=no ], [
  919. #ifdef HAVE_SYS_TYPES_H
  920. #include <sys/types.h>
  921. #endif
  922. ])
  923. if test "$ax_cv_decl_size_t_signed" = yes; then
  924. AC_MSG_ERROR([You have a signed size_t; that's grossly nonconformant.])
  925. fi
  926. AX_CHECK_SIGN([enum always],
  927. [ AC_DEFINE(ENUM_VALS_ARE_SIGNED, 1, [Define if enum is always signed]) ],
  928. [ : ], [
  929. enum always { AAA, BBB, CCC };
  930. ])
  931. AC_CHECK_SIZEOF(socklen_t, , [AC_INCLUDES_DEFAULT()
  932. #ifdef HAVE_SYS_SOCKET_H
  933. #include <sys/socket.h>
  934. #endif
  935. ])
  936. # We want to make sure that we _don't_ have a cell_t defined, like IRIX does.
  937. AC_CHECK_SIZEOF(cell_t)
  938. # Now make sure that NULL can be represented as zero bytes.
  939. AC_CACHE_CHECK([whether memset(0) sets pointers to NULL], tor_cv_null_is_zero,
  940. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  941. [[#include <stdlib.h>
  942. #include <string.h>
  943. #include <stdio.h>
  944. #ifdef HAVE_STDDEF_H
  945. #include <stddef.h>
  946. #endif
  947. int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2));
  948. return memcmp(&p1,&p2,sizeof(char*))?1:0; }]])],
  949. [tor_cv_null_is_zero=yes],
  950. [tor_cv_null_is_zero=no],
  951. [tor_cv_null_is_zero=cross])])
  952. if test "$tor_cv_null_is_zero" = cross ; then
  953. # Cross-compiling; let's hope that the target isn't raving mad.
  954. AC_MSG_NOTICE([Cross-compiling: we'll assume that NULL is represented as a sequence of 0-valued bytes.])
  955. fi
  956. if test "$tor_cv_null_is_zero" != no; then
  957. AC_DEFINE([NULL_REP_IS_ZERO_BYTES], 1,
  958. [Define to 1 iff memset(0) sets pointers to NULL])
  959. fi
  960. AC_CACHE_CHECK([whether memset(0) sets doubles to 0.0], tor_cv_dbl0_is_zero,
  961. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  962. [[#include <stdlib.h>
  963. #include <string.h>
  964. #include <stdio.h>
  965. #ifdef HAVE_STDDEF_H
  966. #include <stddef.h>
  967. #endif
  968. int main () { double d1,d2; d1=0; memset(&d2,0,sizeof(d2));
  969. return memcmp(&d1,&d2,sizeof(d1))?1:0; }]])],
  970. [tor_cv_dbl0_is_zero=yes],
  971. [tor_cv_dbl0_is_zero=no],
  972. [tor_cv_dbl0_is_zero=cross])])
  973. if test "$tor_cv_dbl0_is_zero" = cross ; then
  974. # Cross-compiling; let's hope that the target isn't raving mad.
  975. AC_MSG_NOTICE([Cross-compiling: we'll assume that 0.0 can be represented as a sequence of 0-valued bytes.])
  976. fi
  977. if test "$tor_cv_dbl0_is_zero" != no; then
  978. AC_DEFINE([DOUBLE_0_REP_IS_ZERO_BYTES], 1,
  979. [Define to 1 iff memset(0) sets doubles to 0.0])
  980. fi
  981. # And what happens when we malloc zero?
  982. AC_CACHE_CHECK([whether we can malloc(0) safely.], tor_cv_malloc_zero_works,
  983. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  984. [[#include <stdlib.h>
  985. #include <string.h>
  986. #include <stdio.h>
  987. #ifdef HAVE_STDDEF_H
  988. #include <stddef.h>
  989. #endif
  990. int main () { return malloc(0)?0:1; }]])],
  991. [tor_cv_malloc_zero_works=yes],
  992. [tor_cv_malloc_zero_works=no],
  993. [tor_cv_malloc_zero_works=cross])])
  994. if test "$tor_cv_malloc_zero_works" = cross; then
  995. # Cross-compiling; let's hope that the target isn't raving mad.
  996. AC_MSG_NOTICE([Cross-compiling: we'll assume that we need to check malloc() arguments for 0.])
  997. fi
  998. if test "$tor_cv_malloc_zero_works" = yes; then
  999. AC_DEFINE([MALLOC_ZERO_WORKS], 1,
  1000. [Define to 1 iff malloc(0) returns a pointer])
  1001. fi
  1002. # whether we seem to be in a 2s-complement world.
  1003. AC_CACHE_CHECK([whether we are using 2s-complement arithmetic], tor_cv_twos_complement,
  1004. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  1005. [[int main () { int problem = ((-99) != (~99)+1);
  1006. return problem ? 1 : 0; }]])],
  1007. [tor_cv_twos_complement=yes],
  1008. [tor_cv_twos_complement=no],
  1009. [tor_cv_twos_complement=cross])])
  1010. if test "$tor_cv_twos_complement" = cross ; then
  1011. # Cross-compiling; let's hope that the target isn't raving mad.
  1012. AC_MSG_NOTICE([Cross-compiling: we'll assume that negative integers are represented with two's complement.])
  1013. fi
  1014. if test "$tor_cv_twos_complement" != no ; then
  1015. AC_DEFINE([USING_TWOS_COMPLEMENT], 1,
  1016. [Define to 1 iff we represent negative integers with two's complement])
  1017. fi
  1018. # What does shifting a negative value do?
  1019. AC_CACHE_CHECK([whether right-shift on negative values does sign-extension], tor_cv_sign_extend,
  1020. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  1021. [[int main () { int okay = (-60 >> 8) == -1; return okay ? 0 : 1; }]])],
  1022. [tor_cv_sign_extend=yes],
  1023. [tor_cv_sign_extend=no],
  1024. [tor_cv_sign_extend=cross])])
  1025. if test "$tor_cv_sign_extend" = cross ; then
  1026. # Cross-compiling; let's hope that the target isn't raving mad.
  1027. AC_MSG_NOTICE([Cross-compiling: we'll assume that right-shifting negative integers causes sign-extension])
  1028. fi
  1029. if test "$tor_cv_sign_extend" != no ; then
  1030. AC_DEFINE([RSHIFT_DOES_SIGN_EXTEND], 1,
  1031. [Define to 1 iff right-shifting a negative value performs sign-extension])
  1032. fi
  1033. # Whether we should use the dmalloc memory allocation debugging library.
  1034. AC_MSG_CHECKING(whether to use dmalloc (debug memory allocation library))
  1035. AC_ARG_WITH(dmalloc,
  1036. [ --with-dmalloc Use debug memory allocation library. ],
  1037. [if [[ "$withval" = "yes" ]]; then
  1038. dmalloc=1
  1039. AC_MSG_RESULT(yes)
  1040. else
  1041. dmalloc=1
  1042. AC_MSG_RESULT(no)
  1043. fi], [ dmalloc=0; AC_MSG_RESULT(no) ]
  1044. )
  1045. if [[ $dmalloc -eq 1 ]]; then
  1046. AC_CHECK_HEADERS(dmalloc.h, , AC_MSG_ERROR(dmalloc header file not found. Do you have the development files for dmalloc installed?))
  1047. AC_SEARCH_LIBS(dmalloc_malloc, [dmallocth dmalloc], , AC_MSG_ERROR(Libdmalloc library not found. If you enable it you better have it installed.))
  1048. AC_DEFINE(USE_DMALLOC, 1, [Debug memory allocation library])
  1049. AC_DEFINE(DMALLOC_FUNC_CHECK, 1, [Enable dmalloc's malloc function check])
  1050. AC_CHECK_FUNCS(dmalloc_strdup dmalloc_strndup)
  1051. fi
  1052. AC_ARG_WITH(tcmalloc,
  1053. [ --with-tcmalloc Use tcmalloc memory allocation library. ],
  1054. [ tcmalloc=yes ], [ tcmalloc=no ])
  1055. if test x$tcmalloc = xyes ; then
  1056. LDFLAGS="-ltcmalloc $LDFLAGS"
  1057. fi
  1058. using_custom_malloc=no
  1059. if test x$enable_openbsd_malloc = xyes ; then
  1060. using_custom_malloc=yes
  1061. fi
  1062. if test x$tcmalloc = xyes ; then
  1063. using_custom_malloc=yes
  1064. fi
  1065. if test $using_custom_malloc = no ; then
  1066. AC_CHECK_FUNCS(mallinfo)
  1067. fi
  1068. # By default, we're going to assume we don't have mlockall()
  1069. # bionic and other platforms have various broken mlockall subsystems.
  1070. # Some systems don't have a working mlockall, some aren't linkable,
  1071. # and some have it but don't declare it.
  1072. AC_CHECK_FUNCS(mlockall)
  1073. AC_CHECK_DECLS([mlockall], , , [
  1074. #ifdef HAVE_SYS_MMAN_H
  1075. #include <sys/mman.h>
  1076. #endif])
  1077. # Allow user to specify an alternate syslog facility
  1078. AC_ARG_WITH(syslog-facility,
  1079. [ --with-syslog-facility=LOG syslog facility to use (default=LOG_DAEMON)],
  1080. syslog_facility="$withval", syslog_facility="LOG_DAEMON")
  1081. AC_DEFINE_UNQUOTED(LOGFACILITY,$syslog_facility,[name of the syslog facility])
  1082. AC_SUBST(LOGFACILITY)
  1083. # Check if we have getresuid and getresgid
  1084. AC_CHECK_FUNCS(getresuid getresgid)
  1085. # Check for gethostbyname_r in all its glorious incompatible versions.
  1086. # (This logic is based on that in Python's configure.in)
  1087. AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
  1088. [Define this if you have any gethostbyname_r()])
  1089. AC_CHECK_FUNC(gethostbyname_r, [
  1090. AC_MSG_CHECKING([how many arguments gethostbyname_r() wants])
  1091. OLD_CFLAGS=$CFLAGS
  1092. CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
  1093. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
  1094. #include <netdb.h>
  1095. ], [[
  1096. char *cp1, *cp2;
  1097. struct hostent *h1, *h2;
  1098. int i1, i2;
  1099. (void)gethostbyname_r(cp1,h1,cp2,i1,&h2,&i2);
  1100. ]])],[
  1101. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  1102. AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
  1103. [Define this if gethostbyname_r takes 6 arguments])
  1104. AC_MSG_RESULT(6)
  1105. ], [
  1106. AC_TRY_COMPILE([
  1107. #include <netdb.h>
  1108. ], [
  1109. char *cp1, *cp2;
  1110. struct hostent *h1;
  1111. int i1, i2;
  1112. (void)gethostbyname_r(cp1,h1,cp2,i1,&i2);
  1113. ], [
  1114. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  1115. AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
  1116. [Define this if gethostbyname_r takes 5 arguments])
  1117. AC_MSG_RESULT(5)
  1118. ], [
  1119. AC_TRY_COMPILE([
  1120. #include <netdb.h>
  1121. ], [
  1122. char *cp1;
  1123. struct hostent *h1;
  1124. struct hostent_data hd;
  1125. (void) gethostbyname_r(cp1,h1,&hd);
  1126. ], [
  1127. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  1128. AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
  1129. [Define this if gethostbyname_r takes 3 arguments])
  1130. AC_MSG_RESULT(3)
  1131. ], [
  1132. AC_MSG_RESULT(0)
  1133. ])
  1134. ])
  1135. ])
  1136. CFLAGS=$OLD_CFLAGS
  1137. ])
  1138. AC_CACHE_CHECK([whether the C compiler supports __func__],
  1139. tor_cv_have_func_macro,
  1140. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1141. #include <stdio.h>
  1142. int main(int c, char **v) { puts(__func__); }])],
  1143. tor_cv_have_func_macro=yes,
  1144. tor_cv_have_func_macro=no))
  1145. AC_CACHE_CHECK([whether the C compiler supports __FUNC__],
  1146. tor_cv_have_FUNC_macro,
  1147. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1148. #include <stdio.h>
  1149. int main(int c, char **v) { puts(__FUNC__); }])],
  1150. tor_cv_have_FUNC_macro=yes,
  1151. tor_cv_have_FUNC_macro=no))
  1152. AC_CACHE_CHECK([whether the C compiler supports __FUNCTION__],
  1153. tor_cv_have_FUNCTION_macro,
  1154. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1155. #include <stdio.h>
  1156. int main(int c, char **v) { puts(__FUNCTION__); }])],
  1157. tor_cv_have_FUNCTION_macro=yes,
  1158. tor_cv_have_FUNCTION_macro=no))
  1159. AC_CACHE_CHECK([whether we have extern char **environ already declared],
  1160. tor_cv_have_environ_declared,
  1161. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1162. /* We define _GNU_SOURCE here because it is also defined in compat.c.
  1163. * Without it environ doesn't get declared. */
  1164. #define _GNU_SOURCE
  1165. #ifdef HAVE_UNISTD_H
  1166. #include <unistd.h>
  1167. #endif
  1168. #include <stdlib.h>
  1169. int main(int c, char **v) { char **t = environ; }])],
  1170. tor_cv_have_environ_declared=yes,
  1171. tor_cv_have_environ_declared=no))
  1172. if test "$tor_cv_have_func_macro" = 'yes'; then
  1173. AC_DEFINE(HAVE_MACRO__func__, 1, [Defined if the compiler supports __func__])
  1174. fi
  1175. if test "$tor_cv_have_FUNC_macro" = 'yes'; then
  1176. AC_DEFINE(HAVE_MACRO__FUNC__, 1, [Defined if the compiler supports __FUNC__])
  1177. fi
  1178. if test "$tor_cv_have_FUNCTION_macro" = 'yes'; then
  1179. AC_DEFINE(HAVE_MACRO__FUNCTION__, 1,
  1180. [Defined if the compiler supports __FUNCTION__])
  1181. fi
  1182. if test "$tor_cv_have_environ_declared" = 'yes'; then
  1183. AC_DEFINE(HAVE_EXTERN_ENVIRON_DECLARED, 1,
  1184. [Defined if we have extern char **environ already declared])
  1185. fi
  1186. # $prefix stores the value of the --prefix command line option, or
  1187. # NONE if the option wasn't set. In the case that it wasn't set, make
  1188. # it be the default, so that we can use it to expand directories now.
  1189. if test "x$prefix" = "xNONE"; then
  1190. prefix=$ac_default_prefix
  1191. fi
  1192. # and similarly for $exec_prefix
  1193. if test "x$exec_prefix" = "xNONE"; then
  1194. exec_prefix=$prefix
  1195. fi
  1196. if test "x$BUILDDIR" = "x"; then
  1197. BUILDDIR=`pwd`
  1198. fi
  1199. AC_SUBST(BUILDDIR)
  1200. AH_TEMPLATE([BUILDDIR],[tor's build directory])
  1201. AC_DEFINE_UNQUOTED(BUILDDIR,"$BUILDDIR")
  1202. if test "x$CONFDIR" = "x"; then
  1203. CONFDIR=`eval echo $sysconfdir/tor`
  1204. fi
  1205. AC_SUBST(CONFDIR)
  1206. AH_TEMPLATE([CONFDIR],[tor's configuration directory])
  1207. AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
  1208. BINDIR=`eval echo $bindir`
  1209. AC_SUBST(BINDIR)
  1210. LOCALSTATEDIR=`eval echo $localstatedir`
  1211. AC_SUBST(LOCALSTATEDIR)
  1212. if test "$bwin32" = true; then
  1213. # Test if the linker supports the --nxcompat and --dynamicbase options
  1214. # for Windows
  1215. save_LDFLAGS="$LDFLAGS"
  1216. LDFLAGS="-Wl,--nxcompat -Wl,--dynamicbase"
  1217. AC_MSG_CHECKING([whether the linker supports DllCharacteristics])
  1218. AC_LINK_IFELSE([AC_LANG_PROGRAM([])],
  1219. [AC_MSG_RESULT([yes])]
  1220. [save_LDFLAGS="$save_LDFLAGS $LDFLAGS"],
  1221. [AC_MSG_RESULT([no])]
  1222. )
  1223. LDFLAGS="$save_LDFLAGS"
  1224. fi
  1225. # Set CFLAGS _after_ all the above checks, since our warnings are stricter
  1226. # than autoconf's macros like.
  1227. if test "$GCC" = yes; then
  1228. # Disable GCC's strict aliasing checks. They are an hours-to-debug
  1229. # accident waiting to happen.
  1230. CFLAGS="$CFLAGS -Wall -fno-strict-aliasing"
  1231. else
  1232. # Autoconf sets -g -O2 by default. Override optimization level
  1233. # for non-gcc compilers
  1234. CFLAGS="$CFLAGS -O"
  1235. enable_gcc_warnings=no
  1236. enable_gcc_warnings_advisory=no
  1237. fi
  1238. # OS X Lion started deprecating the system openssl. Let's just disable
  1239. # all deprecation warnings on OS X. Also, to potentially make the binary
  1240. # a little smaller, let's enable dead_strip.
  1241. case "$host_os" in
  1242. darwin*)
  1243. CFLAGS="$CFLAGS -Wno-deprecated-declarations"
  1244. LDFLAGS="$LDFLAGS -dead_strip" ;;
  1245. esac
  1246. # Add some more warnings which we use in development but not in the
  1247. # released versions. (Some relevant gcc versions can't handle these.)
  1248. if test x$enable_gcc_warnings = xyes || test x$enable_gcc_warnings_advisory = xyes; then
  1249. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  1250. #if !defined(__GNUC__) || (__GNUC__ < 4)
  1251. #error
  1252. #endif])], have_gcc4=yes, have_gcc4=no)
  1253. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  1254. #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 2)
  1255. #error
  1256. #endif])], have_gcc42=yes, have_gcc42=no)
  1257. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  1258. #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)
  1259. #error
  1260. #endif])], have_gcc43=yes, have_gcc43=no)
  1261. save_CFLAGS="$CFLAGS"
  1262. CFLAGS="$CFLAGS -Wshorten-64-to-32"
  1263. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], have_shorten64_flag=yes,
  1264. have_shorten64_flag=no)
  1265. CFLAGS="$save_CFLAGS"
  1266. case $host in
  1267. *-*-openbsd* | *-*-bitrig*)
  1268. # Some OpenBSD versions (like 4.8) have -Wsystem-headers by default.
  1269. # That's fine, except that the headers don't pass -Wredundant-decls.
  1270. # Therefore, let's disable -Wsystem-headers when we're building
  1271. # with maximal warnings on OpenBSD.
  1272. CFLAGS="$CFLAGS -Wno-system-headers" ;;
  1273. esac
  1274. CFLAGS="$CFLAGS -W -Wfloat-equal -Wundef -Wpointer-arith"
  1275. CFLAGS="$CFLAGS -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings"
  1276. CFLAGS="$CFLAGS -Wredundant-decls -Wchar-subscripts -Wcomment -Wformat=2"
  1277. CFLAGS="$CFLAGS -Wwrite-strings -Wmissing-declarations -Wredundant-decls"
  1278. CFLAGS="$CFLAGS -Wnested-externs -Wbad-function-cast -Wswitch-enum"
  1279. if test x$enable_gcc_warnings = xyes; then
  1280. CFLAGS="$CFLAGS -Werror"
  1281. fi
  1282. # Disabled, so we can use mallinfo(): -Waggregate-return
  1283. if test x$have_gcc4 = xyes ; then
  1284. # These warnings break gcc 3.3.5 and work on gcc 4.0.2
  1285. CFLAGS="$CFLAGS -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Wold-style-definition"
  1286. fi
  1287. if test x$have_gcc42 = xyes ; then
  1288. # These warnings break gcc 4.0.2 and work on gcc 4.2
  1289. # XXXX020 See if any of these work with earlier versions.
  1290. CFLAGS="$CFLAGS -Waddress -Wmissing-noreturn -Wstrict-overflow=1"
  1291. # We used to use -Wstrict-overflow=5, but that breaks us heavily under 4.3.
  1292. fi
  1293. if test x$have_gcc42 = xyes && test x$have_clang = xno; then
  1294. # These warnings break gcc 4.0.2 and clang, but work on gcc 4.2
  1295. CFLAGS="$CFLAGS -Wnormalized=id -Woverride-init"
  1296. fi
  1297. if test x$have_gcc43 = xyes ; then
  1298. # These warnings break gcc 4.2 and work on gcc 4.3
  1299. # XXXX020 See if any of these work with earlier versions.
  1300. CFLAGS="$CFLAGS -Wextra -Warray-bounds"
  1301. fi
  1302. if test x$have_shorten64_flag = xyes ; then
  1303. CFLAGS="$CFLAGS -Wshorten-64-to-32"
  1304. fi
  1305. ##This will break the world on some 64-bit architectures
  1306. # CFLAGS="$CFLAGS -Winline"
  1307. fi
  1308. if test "$enable_coverage" = yes && test "$have_clang" = "no"; then
  1309. case "$host_os" in
  1310. darwin*)
  1311. 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.])
  1312. esac
  1313. fi
  1314. CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent $TOR_CPPFLAGS_openssl $TOR_CPPFLAGS_zlib"
  1315. AC_CONFIG_FILES([
  1316. Doxyfile
  1317. Makefile
  1318. contrib/suse/tor.sh
  1319. contrib/tor.logrotate
  1320. contrib/tor.sh
  1321. contrib/torctl
  1322. src/config/torrc.sample
  1323. ])
  1324. if test x$asciidoc = xtrue && test "$ASCIIDOC" = "none" ; then
  1325. regular_mans="doc/tor doc/tor-gencert doc/tor-resolve doc/torify"
  1326. for file in $regular_mans ; do
  1327. if ! [[ -f "$srcdir/$file.1.in" ]] || ! [[ -f "$srcdir/$file.html.in" ]] ; then
  1328. echo "==================================";
  1329. echo;
  1330. echo "You need asciidoc installed to be able to build the manpage.";
  1331. echo "To build without manpages, use the --disable-asciidoc argument";
  1332. echo "when calling configure.";
  1333. echo;
  1334. echo "==================================";
  1335. exit 1;
  1336. fi
  1337. done
  1338. fi
  1339. AC_OUTPUT
  1340. if test -x /usr/bin/perl && test -x ./contrib/updateVersions.pl ; then
  1341. ./contrib/updateVersions.pl
  1342. fi