configure.ac 45 KB

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