configure.in 39 KB

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