configure.in 38 KB

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