configure.in 36 KB

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