configure.ac 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502
  1. dnl Copyright (c) 2001-2004, Roger Dingledine
  2. dnl Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  3. dnl Copyright (c) 2007-2013, The Tor Project, Inc.
  4. dnl See LICENSE for licensing information
  5. AC_INIT([tor],[0.2.5.0-alpha-dev])
  6. AC_CONFIG_SRCDIR([src/or/main.c])
  7. AC_CONFIG_MACRO_DIR([m4])
  8. AM_INIT_AUTOMAKE
  9. m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
  10. AC_CONFIG_HEADERS([orconfig.h])
  11. AC_CANONICAL_HOST
  12. if test -f /etc/redhat-release ; then
  13. if test -f /usr/kerberos/include ; then
  14. CPPFLAGS="$CPPFLAGS -I/usr/kerberos/include"
  15. fi
  16. fi
  17. # Not a no-op; we want to make sure that CPPFLAGS is set before we use
  18. # the += operator on it in src/or/Makefile.am
  19. CPPFLAGS="$CPPFLAGS -I\${top_srcdir}/src/common"
  20. #XXXX020 We should make these enabled or not, before 0.2.0.x-final
  21. AC_ARG_ENABLE(buf-freelists,
  22. AS_HELP_STRING(--disable-buf-freelists, disable freelists for buffer RAM))
  23. AC_ARG_ENABLE(openbsd-malloc,
  24. AS_HELP_STRING(--enable-openbsd-malloc, Use malloc code from openbsd. Linux only))
  25. AC_ARG_ENABLE(instrument-downloads,
  26. AS_HELP_STRING(--enable-instrument-downloads, Instrument downloads of directory resources etc.))
  27. AC_ARG_ENABLE(static-openssl,
  28. AS_HELP_STRING(--enable-static-openssl, Link against a static openssl library. Requires --with-openssl-dir))
  29. AC_ARG_ENABLE(static-libevent,
  30. AS_HELP_STRING(--enable-static-libevent, Link against a static libevent library. Requires --with-libevent-dir))
  31. AC_ARG_ENABLE(static-zlib,
  32. AS_HELP_STRING(--enable-static-zlib, Link against a static zlib library. Requires --with-zlib-dir))
  33. AC_ARG_ENABLE(static-tor,
  34. AS_HELP_STRING(--enable-static-tor, Create an entirely static Tor binary. Requires --with-openssl-dir and --with-libevent-dir and --with-zlib-dir))
  35. AC_ARG_ENABLE(curve25519,
  36. AS_HELP_STRING(--disable-curve25519, Build Tor with no curve25519 elliptic-curve crypto support))
  37. 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_PROG([A2X], [a2x], 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 \
  347. event_get_version_number \
  348. event_get_method \
  349. event_set_log_callback \
  350. evdns_set_outgoing_bind_address \
  351. event_base_loopexit])
  352. AC_CHECK_MEMBERS([struct event.min_heap_idx], , ,
  353. [#include <event.h>
  354. ])
  355. AC_CHECK_HEADERS(event2/event.h event2/dns.h event2/bufferevent_ssl.h)
  356. LIBS="$save_LIBS"
  357. LDFLAGS="$save_LDFLAGS"
  358. CPPFLAGS="$save_CPPFLAGS"
  359. AM_CONDITIONAL(USE_EXTERNAL_EVDNS, test x$ac_cv_header_event2_dns_h = xyes)
  360. if test "$enable_static_libevent" = "yes"; then
  361. if test "$tor_cv_library_libevent_dir" = "(system)"; then
  362. AC_MSG_ERROR("You must specify an explicit --with-libevent-dir=x option when using --enable-static-libevent")
  363. else
  364. TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent.a $STATIC_LIBEVENT_FLAGS"
  365. fi
  366. else
  367. TOR_LIBEVENT_LIBS="-levent"
  368. fi
  369. dnl This isn't the best test for Libevent 2.0.3-alpha. Once it's released,
  370. dnl we can do much better.
  371. if test "$enable_bufferevents" = "yes" ; then
  372. if test "$ac_cv_header_event2_bufferevent_ssl_h" != "yes" ; then
  373. 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.])
  374. else
  375. CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent"
  376. # Check for the right version. First see if version detection works.
  377. AC_MSG_CHECKING([whether we can detect the Libevent version])
  378. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  379. #include <event2/event.h>
  380. #if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 10
  381. #error
  382. int x = y(zz);
  383. #else
  384. int x = 1;
  385. #endif
  386. ])], [event_version_number_works=yes; AC_MSG_RESULT([yes]) ],
  387. [event_version_number_works=no; AC_MSG_RESULT([no])])
  388. if test "$event_version_number_works" != 'yes'; then
  389. AC_MSG_WARN([Version detection on Libevent seems broken. Your Libevent installation is probably screwed up or very old.])
  390. else
  391. AC_MSG_CHECKING([whether Libevent is new enough for bufferevents])
  392. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  393. #include <event2/event.h>
  394. #if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 0x02000d00
  395. #error
  396. int x = y(zz);
  397. #else
  398. int x = 1;
  399. #endif
  400. ])], [ AC_MSG_RESULT([yes]) ],
  401. [ AC_MSG_RESULT([no])
  402. AC_MSG_ERROR([Libevent does not seem new enough to support bufferevents. We require 2.0.13-stable or later]) ] )
  403. fi
  404. fi
  405. fi
  406. LIBS="$save_LIBS"
  407. LDFLAGS="$save_LDFLAGS"
  408. CPPFLAGS="$save_CPPFLAGS"
  409. AM_CONDITIONAL(USE_BUFFEREVENTS, test "$enable_bufferevents" = "yes")
  410. if test "$enable_bufferevents" = "yes"; then
  411. AC_DEFINE(USE_BUFFEREVENTS, 1, [Defined if we're going to use Libevent's buffered IO API])
  412. if test "$enable_static_libevent" = "yes"; then
  413. TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent_openssl.a $TOR_LIBEVENT_LIBS"
  414. else
  415. TOR_LIBEVENT_LIBS="-levent_openssl $TOR_LIBEVENT_LIBS"
  416. fi
  417. fi
  418. AC_SUBST(TOR_LIBEVENT_LIBS)
  419. dnl ------------------------------------------------------
  420. dnl Where do you live, libm?
  421. dnl On some platforms (Haiku/BeOS) the math library is
  422. dnl part of libroot. In which case don't link against lm
  423. TOR_LIB_MATH=""
  424. save_LIBS="$LIBS"
  425. AC_SEARCH_LIBS(pow, [m], , AC_MSG_ERROR([Could not find pow in libm or libc.]))
  426. if test "$ac_cv_search_pow" != "none required"; then
  427. TOR_LIB_MATH="$ac_cv_search_pow"
  428. fi
  429. LIBS="$save_LIBS"
  430. AC_SUBST(TOR_LIB_MATH)
  431. dnl ------------------------------------------------------
  432. dnl Where do you live, openssl? And how do we call you?
  433. tor_openssl_pkg_redhat="openssl"
  434. tor_openssl_pkg_debian="libssl"
  435. tor_openssl_devpkg_redhat="openssl-devel"
  436. tor_openssl_devpkg_debian="libssl-dev"
  437. ALT_openssl_WITHVAL=""
  438. AC_ARG_WITH(ssl-dir,
  439. [ --with-ssl-dir=PATH Obsolete alias for --with-openssl-dir ],
  440. [
  441. if test "x$withval" != xno && test "x$withval" != "x" ; then
  442. ALT_openssl_WITHVAL="$withval"
  443. fi
  444. ])
  445. TOR_SEARCH_LIBRARY(openssl, $tryssldir, [-lssl -lcrypto $TOR_LIB_GDI],
  446. [#include <openssl/rand.h>],
  447. [void RAND_add(const void *buf, int num, double entropy);],
  448. [RAND_add((void*)0,0,0); exit(0);], [],
  449. [/usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/athena /opt/openssl])
  450. dnl XXXX check for OPENSSL_VERSION_NUMBER == SSLeay()
  451. if test "$enable_static_openssl" = "yes"; then
  452. if test "$tor_cv_library_openssl_dir" = "(system)"; then
  453. AC_MSG_ERROR("You must specify an explicit --with-openssl-dir=x option when using --enable-static-openssl")
  454. else
  455. TOR_OPENSSL_LIBS="$TOR_LIBDIR_openssl/libssl.a $TOR_LIBDIR_openssl/libcrypto.a"
  456. fi
  457. else
  458. TOR_OPENSSL_LIBS="-lssl -lcrypto"
  459. fi
  460. AC_SUBST(TOR_OPENSSL_LIBS)
  461. dnl ------------------------------------------------------
  462. dnl Where do you live, zlib? And how do we call you?
  463. tor_zlib_pkg_redhat="zlib"
  464. tor_zlib_pkg_debian="zlib1g"
  465. tor_zlib_devpkg_redhat="zlib-devel"
  466. tor_zlib_devpkg_debian="zlib1g-dev"
  467. TOR_SEARCH_LIBRARY(zlib, $tryzlibdir, [-lz],
  468. [#include <zlib.h>],
  469. [const char * zlibVersion(void);],
  470. [zlibVersion(); exit(0);], [--with-zlib-dir],
  471. [/opt/zlib])
  472. if test "$enable_static_zlib" = "yes"; then
  473. if test "$tor_cv_library_zlib_dir" = "(system)"; then
  474. AC_MSG_ERROR("You must specify an explicit --with-zlib-dir=x option when
  475. using --enable-static-zlib")
  476. else
  477. TOR_ZLIB_LIBS="$TOR_LIBDIR_zlib/libz.a"
  478. fi
  479. else
  480. TOR_ZLIB_LIBS="-lz"
  481. fi
  482. AC_SUBST(TOR_ZLIB_LIBS)
  483. dnl ---------------------------------------------------------------------
  484. dnl Now that we know about our major libraries, we can check for compiler
  485. dnl and linker hardening options. We need to do this with the libraries known,
  486. dnl since sometimes the linker will like an option but not be willing to
  487. dnl use it with a build of a library.
  488. all_ldflags_for_check="$TOR_LDFLAGS_zlib $TOR_LDFLAGS_openssl $TOR_LDFLAGS_libevent"
  489. all_libs_for_check="$TOR_ZLIB_LIBS $TOR_LIB_MATH $TOR_LIBEVENT_LIBS $TOR_OPENSSL_LIBS $TOR_LIB_WS32 $TOR_LIB_GDI"
  490. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  491. #if !defined(__clang__)
  492. #error
  493. #endif])], have_clang=yes, have_clang=no)
  494. if test x$enable_gcc_hardening != xno; then
  495. CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
  496. if test x$have_clang = xyes; then
  497. TOR_CHECK_CFLAGS(-Qunused-arguments)
  498. fi
  499. TOR_CHECK_CFLAGS(-fstack-protector-all)
  500. TOR_CHECK_CFLAGS(-Wstack-protector)
  501. TOR_CHECK_CFLAGS(-fwrapv)
  502. TOR_CHECK_CFLAGS(--param ssp-buffer-size=1)
  503. if test "$bwin32" = "false"; then
  504. TOR_CHECK_CFLAGS(-fPIE)
  505. TOR_CHECK_LDFLAGS(-pie, "$all_ldflags_for_check", "$all_libs_for_check")
  506. fi
  507. fi
  508. if test x$enable_linker_hardening != xno; then
  509. TOR_CHECK_LDFLAGS(-z relro -z now, "$all_ldflags_for_check", "$all_libs_for_check")
  510. fi
  511. dnl ------------------------------------------------------
  512. dnl Now see if we have a -fomit-frame-pointer compiler option.
  513. saved_CFLAGS="$CFLAGS"
  514. TOR_CHECK_CFLAGS(-fomit-frame-pointer)
  515. if test "$saved_CFLAGS" != "$CFLAGS"; then
  516. F_OMIT_FRAME_POINTER='-fomit-frame-pointer'
  517. else
  518. F_OMIT_FRAME_POINTER=''
  519. fi
  520. CFLAGS="$saved_CFLAGS"
  521. AC_SUBST(F_OMIT_FRAME_POINTER)
  522. dnl ------------------------------------------------------
  523. dnl Where do you live, libnatpmp? And how do we call you?
  524. dnl There are no packages for Debian or Redhat as of this patch
  525. if test "$natpmp" = "true"; then
  526. AC_DEFINE(NAT_PMP, 1, [Define to 1 if we are building with nat-pmp.])
  527. TOR_SEARCH_LIBRARY(libnatpmp, $trylibnatpmpdir, [-lnatpmp $TOR_LIB_WS32 $TOR_LIB_IPHLPAPI],
  528. [#include <natpmp.h>],
  529. [#ifdef _WIN32
  530. #define STATICLIB
  531. #endif
  532. #include <natpmp.h>],
  533. [ int r;
  534. natpmp_t natpmp;
  535. natpmpresp_t response;
  536. r = initnatpmp(&natpmp, 0, 0);],
  537. [printf("initnatpmp() returned %d (%s)\n", r, r?"FAILED":"SUCCESS");
  538. exit(0);],
  539. [--with-libnatpmp-dir],
  540. [/usr/lib/])
  541. fi
  542. dnl ------------------------------------------------------
  543. dnl Where do you live, libminiupnpc? And how do we call you?
  544. dnl There are no packages for Debian or Redhat as of this patch
  545. if test "$upnp" = "true"; then
  546. AC_DEFINE(MINIUPNPC, 1, [Define to 1 if we are building with UPnP.])
  547. dnl Before we call TOR_SEARCH_LIBRARY we'll do a quick compile test
  548. dnl to see if we have miniupnpc-1.5 or -1.6
  549. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <miniupnpc/miniupnpc.h>],
  550. [upnpDiscover(1, 0, 0, 0);exit(0);])],[miniupnpc15="true"],[miniupnpc15="false"])
  551. if test "$miniupnpc15" = "true" ; then
  552. AC_DEFINE([MINIUPNPC15],[1],[libminiupnpc version 1.5 found])
  553. TOR_SEARCH_LIBRARY(libminiupnpc, $trylibminiupnpcdir, [-lminiupnpc $TOR_LIB_WS32 $TOR_LIB_IPHLPAPI],
  554. [#include <miniupnpc/miniwget.h>
  555. #include <miniupnpc/miniupnpc.h>
  556. #include <miniupnpc/upnpcommands.h>],
  557. [void upnpDiscover(int delay, const char * multicastif,
  558. const char * minissdpdsock, int sameport);],
  559. [upnpDiscover(1, 0, 0, 0); exit(0);],
  560. [--with-libminiupnpc-dir],
  561. [/usr/lib/])
  562. else
  563. TOR_SEARCH_LIBRARY(libminiupnpc, $trylibminiupnpcdir, [-lminiupnpc $TOR_LIB_WS32 $TOR_LIB_IPHLPAPI],
  564. [#include <miniupnpc/miniwget.h>
  565. #include <miniupnpc/miniupnpc.h>
  566. #include <miniupnpc/upnpcommands.h>],
  567. [void upnpDiscover(int delay, const char * multicastif,
  568. const char * minissdpdsock, int sameport, int ipv6, int * error);],
  569. [upnpDiscover(1, 0, 0, 0, 0, 0); exit(0);],
  570. [--with-libminiupnpc-dir],
  571. [/usr/lib/])
  572. fi
  573. fi
  574. dnl ============================================================
  575. dnl Check for libseccomp
  576. AC_CHECK_HEADERS([seccomp.h])
  577. AC_SEARCH_LIBS(seccomp_init, [seccomp])
  578. dnl ============================================================
  579. dnl We need an implementation of curve25519.
  580. dnl set these defaults.
  581. have_a_curve25519=no
  582. build_curve25519_donna=no
  583. build_curve25519_donna_c64=no
  584. use_curve25519_donna=no
  585. use_curve25519_nacl=no
  586. CURVE25519_LIBS=
  587. if test x$enable_curve25519 != xno; then
  588. dnl The best choice is using curve25519-donna-c64, but that requires
  589. dnl that we
  590. AC_CACHE_CHECK([whether we can use curve25519-donna-c64],
  591. tor_cv_can_use_curve25519_donna_c64,
  592. [AC_RUN_IFELSE(
  593. [AC_LANG_PROGRAM([dnl
  594. #include <stdint.h>
  595. typedef unsigned uint128_t __attribute__((mode(TI)));
  596. int func(uint64_t a, uint64_t b) {
  597. uint128_t c = ((uint128_t)a) * b;
  598. int ok = ((uint64_t)(c>>96)) == 522859 &&
  599. (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L &&
  600. (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L &&
  601. (((uint64_t)(c))&0xffffffffL) == 0;
  602. return ok;
  603. }
  604. ], [dnl
  605. int ok = func( ((uint64_t)2000000000) * 1000000000,
  606. ((uint64_t)1234567890) << 24);
  607. return !ok;
  608. ])],
  609. [tor_cv_can_use_curve25519_donna_c64=yes],
  610. [tor_cv_can_use_curve25519_donna_c64=no],
  611. [AC_COMPILE_IFELSE(
  612. [AC_LANG_PROGRAM([dnl
  613. #include <stdint.h>
  614. typedef unsigned uint128_t __attribute__((mode(TI)));
  615. int func(uint64_t a, uint64_t b) {
  616. uint128_t c = ((uint128_t)a) * b;
  617. int ok = ((uint64_t)(c>>96)) == 522859 &&
  618. (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L &&
  619. (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L &&
  620. (((uint64_t)(c))&0xffffffffL) == 0;
  621. return ok;
  622. }
  623. ], [dnl
  624. int ok = func( ((uint64_t)2000000000) * 1000000000,
  625. ((uint64_t)1234567890) << 24);
  626. return !ok;
  627. ])],
  628. [tor_cv_can_use_curve25519_donna_c64=cross],
  629. [tor_cv_can_use_curve25519_donna_c64=no])])])
  630. AC_CHECK_HEADERS([crypto_scalarmult_curve25519.h \
  631. nacl/crypto_scalarmult_curve25519.h])
  632. AC_CACHE_CHECK([for nacl compiled with a fast curve25519 implementation],
  633. tor_cv_can_use_curve25519_nacl,
  634. [tor_saved_LIBS="$LIBS"
  635. LIBS="$LIBS -lnacl"
  636. AC_LINK_IFELSE(
  637. [AC_LANG_PROGRAM([dnl
  638. #ifdef HAVE_CRYPTO_SCALARMULT_CURVE25519_H
  639. #include <crypto_scalarmult_curve25519.h>
  640. #elif defined(HAVE_NACL_CRYPTO_SCALARMULT_CURVE25519_H)
  641. #include <nacl/crypto_scalarmult_curve25519.h>
  642. #endif
  643. #ifdef crypto_scalarmult_curve25519_ref_BYTES
  644. #error Hey, this is the reference implementation! That's not fast.
  645. #endif
  646. ], [
  647. unsigned char *a, *b, *c; crypto_scalarmult_curve25519(a,b,c);
  648. ])], [tor_cv_can_use_curve25519_nacl=yes],
  649. [tor_cv_can_use_curve25519_nacl=no])
  650. LIBS="$tor_saved_LIBS" ])
  651. dnl Okay, now we need to figure out which one to actually use. Fall back
  652. dnl to curve25519-donna.c
  653. if test x$tor_cv_can_use_curve25519_donna_c64 != xno; then
  654. build_curve25519_donna_c64=yes
  655. use_curve25519_donna=yes
  656. elif test x$tor_cv_can_use_curve25519_nacl = xyes; then
  657. use_curve25519_nacl=yes
  658. CURVE25519_LIBS=-lnacl
  659. else
  660. build_curve25519_donna=yes
  661. use_curve25519_donna=yes
  662. fi
  663. have_a_curve25519=yes
  664. fi
  665. if test x$have_a_curve25519 = xyes; then
  666. AC_DEFINE(CURVE25519_ENABLED, 1,
  667. [Defined if we have a curve25519 implementation])
  668. fi
  669. if test x$use_curve25519_donna = xyes; then
  670. AC_DEFINE(USE_CURVE25519_DONNA, 1,
  671. [Defined if we should use an internal curve25519_donna{,_c64} implementation])
  672. fi
  673. if test x$use_curve25519_nacl = xyes; then
  674. AC_DEFINE(USE_CURVE25519_NACL, 1,
  675. [Defined if we should use a curve25519 from nacl])
  676. fi
  677. AM_CONDITIONAL(BUILD_CURVE25519_DONNA, test x$build_curve25519_donna = xyes)
  678. AM_CONDITIONAL(BUILD_CURVE25519_DONNA_C64, test x$build_curve25519_donna_c64 = xyes)
  679. AM_CONDITIONAL(CURVE25519_ENABLED, test x$have_a_curve25519 = xyes)
  680. AC_SUBST(CURVE25519_LIBS)
  681. dnl Make sure to enable support for large off_t if available.
  682. AC_SYS_LARGEFILE
  683. AC_CHECK_HEADERS(
  684. assert.h \
  685. errno.h \
  686. fcntl.h \
  687. signal.h \
  688. string.h \
  689. sys/fcntl.h \
  690. sys/stat.h \
  691. sys/time.h \
  692. sys/types.h \
  693. time.h \
  694. unistd.h
  695. , , 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.))
  696. dnl These headers are not essential
  697. AC_CHECK_HEADERS(
  698. arpa/inet.h \
  699. crt_externs.h \
  700. grp.h \
  701. ifaddrs.h \
  702. inttypes.h \
  703. limits.h \
  704. linux/types.h \
  705. machine/limits.h \
  706. malloc.h \
  707. malloc/malloc.h \
  708. malloc_np.h \
  709. netdb.h \
  710. netinet/in.h \
  711. netinet/in6.h \
  712. pwd.h \
  713. stdint.h \
  714. sys/file.h \
  715. sys/ioctl.h \
  716. sys/limits.h \
  717. sys/mman.h \
  718. sys/param.h \
  719. sys/prctl.h \
  720. sys/resource.h \
  721. sys/socket.h \
  722. sys/syslimits.h \
  723. sys/time.h \
  724. sys/types.h \
  725. sys/un.h \
  726. sys/utime.h \
  727. sys/wait.h \
  728. syslog.h \
  729. utime.h
  730. )
  731. AC_CHECK_HEADERS(sys/param.h)
  732. AC_CHECK_HEADERS(net/if.h, net_if_found=1, net_if_found=0,
  733. [#ifdef HAVE_SYS_TYPES_H
  734. #include <sys/types.h>
  735. #endif
  736. #ifdef HAVE_SYS_SOCKET_H
  737. #include <sys/socket.h>
  738. #endif])
  739. AC_CHECK_HEADERS(net/pfvar.h, net_pfvar_found=1, net_pfvar_found=0,
  740. [#ifdef HAVE_SYS_TYPES_H
  741. #include <sys/types.h>
  742. #endif
  743. #ifdef HAVE_SYS_SOCKET_H
  744. #include <sys/socket.h>
  745. #endif
  746. #ifdef HAVE_NET_IF_H
  747. #include <net/if.h>
  748. #endif])
  749. AC_CHECK_HEADERS(linux/netfilter_ipv4.h,
  750. linux_netfilter_ipv4=1, linux_netfilter_ipv4=0,
  751. [#ifdef HAVE_SYS_TYPES_H
  752. #include <sys/types.h>
  753. #endif
  754. #ifdef HAVE_SYS_SOCKET_H
  755. #include <sys/socket.h>
  756. #endif
  757. #ifdef HAVE_LIMITS_H
  758. #include <limits.h>
  759. #endif
  760. #ifdef HAVE_LINUX_TYPES_H
  761. #include <linux/types.h>
  762. #endif
  763. #ifdef HAVE_NETINET_IN6_H
  764. #include <netinet/in6.h>
  765. #endif
  766. #ifdef HAVE_NETINET_IN_H
  767. #include <netinet/in.h>
  768. #endif])
  769. if test x$transparent = xtrue ; then
  770. transparent_ok=0
  771. if test x$net_if_found = x1 && test x$net_pfvar_found = x1 ; then
  772. transparent_ok=1
  773. fi
  774. if test x$linux_netfilter_ipv4 = x1 ; then
  775. transparent_ok=1
  776. fi
  777. if test x$transparent_ok = x1 ; then
  778. AC_DEFINE(USE_TRANSPARENT, 1, "Define to enable transparent proxy support")
  779. case $host in
  780. *-*-openbsd* | *-*-bitrig*)
  781. AC_DEFINE(OPENBSD, 1, "Define to handle pf on OpenBSD properly") ;;
  782. esac
  783. else
  784. AC_MSG_NOTICE([Transparent proxy support enabled, but missing headers.])
  785. fi
  786. fi
  787. AC_CHECK_MEMBERS([struct timeval.tv_sec], , ,
  788. [#ifdef HAVE_SYS_TYPES_H
  789. #include <sys/types.h>
  790. #endif
  791. #ifdef HAVE_SYS_TIME_H
  792. #include <sys/time.h>
  793. #endif])
  794. dnl In case we aren't given a working stdint.h, we'll need to grow our own.
  795. dnl Watch out.
  796. AC_CHECK_SIZEOF(int8_t)
  797. AC_CHECK_SIZEOF(int16_t)
  798. AC_CHECK_SIZEOF(int32_t)
  799. AC_CHECK_SIZEOF(int64_t)
  800. AC_CHECK_SIZEOF(uint8_t)
  801. AC_CHECK_SIZEOF(uint16_t)
  802. AC_CHECK_SIZEOF(uint32_t)
  803. AC_CHECK_SIZEOF(uint64_t)
  804. AC_CHECK_SIZEOF(intptr_t)
  805. AC_CHECK_SIZEOF(uintptr_t)
  806. dnl AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, intptr_t, uintptr_t])
  807. AC_CHECK_SIZEOF(char)
  808. AC_CHECK_SIZEOF(short)
  809. AC_CHECK_SIZEOF(int)
  810. AC_CHECK_SIZEOF(long)
  811. AC_CHECK_SIZEOF(long long)
  812. AC_CHECK_SIZEOF(__int64)
  813. AC_CHECK_SIZEOF(void *)
  814. AC_CHECK_SIZEOF(time_t)
  815. AC_CHECK_SIZEOF(size_t)
  816. AC_CHECK_SIZEOF(pid_t)
  817. AC_CHECK_TYPES([uint, u_char, ssize_t])
  818. dnl used to include sockaddr_storage, but everybody has that.
  819. AC_CHECK_TYPES([struct in6_addr, struct sockaddr_in6, sa_family_t], , ,
  820. [#ifdef HAVE_SYS_TYPES_H
  821. #include <sys/types.h>
  822. #endif
  823. #ifdef HAVE_NETINET_IN_H
  824. #include <netinet/in.h>
  825. #endif
  826. #ifdef HAVE_NETINET_IN6_H
  827. #include <netinet/in6.h>
  828. #endif
  829. #ifdef HAVE_SYS_SOCKET_H
  830. #include <sys/socket.h>
  831. #endif
  832. #ifdef _WIN32
  833. #define _WIN32_WINNT 0x0501
  834. #define WIN32_LEAN_AND_MEAN
  835. #if defined(_MSC_VER) && (_MSC_VER < 1300)
  836. #include <winsock.h>
  837. #else
  838. #include <winsock2.h>
  839. #include <ws2tcpip.h>
  840. #endif
  841. #endif
  842. ])
  843. AC_CHECK_MEMBERS([struct in6_addr.s6_addr32, struct in6_addr.s6_addr16, struct sockaddr_in.sin_len, struct sockaddr_in6.sin6_len], , ,
  844. [#ifdef HAVE_SYS_TYPES_H
  845. #include <sys/types.h>
  846. #endif
  847. #ifdef HAVE_NETINET_IN_H
  848. #include <netinet/in.h>
  849. #endif
  850. #ifdef HAVE_NETINET_IN6_H
  851. #include <netinet/in6.h>
  852. #endif
  853. #ifdef HAVE_SYS_SOCKET_H
  854. #include <sys/socket.h>
  855. #endif
  856. #ifdef _WIN32
  857. #define _WIN32_WINNT 0x0501
  858. #define WIN32_LEAN_AND_MEAN
  859. #if defined(_MSC_VER) && (_MSC_VER < 1300)
  860. #include <winsock.h>
  861. #else
  862. #include <winsock2.h>
  863. #include <ws2tcpip.h>
  864. #endif
  865. #endif
  866. ])
  867. AC_CHECK_TYPES([rlim_t], , ,
  868. [#ifdef HAVE_SYS_TYPES_H
  869. #include <sys/types.h>
  870. #endif
  871. #ifdef HAVE_SYS_TIME_H
  872. #include <sys/time.h>
  873. #endif
  874. #ifdef HAVE_SYS_RESOURCE_H
  875. #include <sys/resource.h>
  876. #endif
  877. ])
  878. AX_CHECK_SIGN([time_t],
  879. [ AC_DEFINE(TIME_T_IS_SIGNED, 1, [Define if time_t is signed]) ],
  880. [ : ], [
  881. #ifdef HAVE_SYS_TYPES_H
  882. #include <sys/types.h>
  883. #endif
  884. #ifdef HAVE_SYS_TIME_H
  885. #include <sys/time.h>
  886. #endif
  887. #ifdef HAVE_TIME_H
  888. #include <time.h>
  889. #endif
  890. ])
  891. if test "$ax_cv_decl_time_t_signed" = no; then
  892. AC_MSG_WARN([You have an unsigned time_t; some things will probably break. Please tell the Tor developers about your interesting platform.])
  893. fi
  894. AX_CHECK_SIGN([size_t],
  895. [ tor_cv_size_t_signed=yes ],
  896. [ tor_cv_size_t_signed=no ], [
  897. #ifdef HAVE_SYS_TYPES_H
  898. #include <sys/types.h>
  899. #endif
  900. ])
  901. if test "$ax_cv_decl_size_t_signed" = yes; then
  902. AC_MSG_ERROR([You have a signed size_t; that's grossly nonconformant.])
  903. fi
  904. AX_CHECK_SIGN([enum always],
  905. [ AC_DEFINE(ENUM_VALS_ARE_SIGNED, 1, [Define if enum is always signed]) ],
  906. [ : ], [
  907. enum always { AAA, BBB, CCC };
  908. ])
  909. AC_CHECK_SIZEOF(socklen_t, , [AC_INCLUDES_DEFAULT()
  910. #ifdef HAVE_SYS_SOCKET_H
  911. #include <sys/socket.h>
  912. #endif
  913. ])
  914. # We want to make sure that we _don't_ have a cell_t defined, like IRIX does.
  915. AC_CHECK_SIZEOF(cell_t)
  916. # Now make sure that NULL can be represented as zero bytes.
  917. AC_CACHE_CHECK([whether memset(0) sets pointers to NULL], tor_cv_null_is_zero,
  918. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  919. [[#include <stdlib.h>
  920. #include <string.h>
  921. #include <stdio.h>
  922. #ifdef HAVE_STDDEF_H
  923. #include <stddef.h>
  924. #endif
  925. int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2));
  926. return memcmp(&p1,&p2,sizeof(char*))?1:0; }]])],
  927. [tor_cv_null_is_zero=yes],
  928. [tor_cv_null_is_zero=no],
  929. [tor_cv_null_is_zero=cross])])
  930. if test "$tor_cv_null_is_zero" = cross ; then
  931. # Cross-compiling; let's hope that the target isn't raving mad.
  932. AC_MSG_NOTICE([Cross-compiling: we'll assume that NULL is represented as a sequence of 0-valued bytes.])
  933. fi
  934. if test "$tor_cv_null_is_zero" != no; then
  935. AC_DEFINE([NULL_REP_IS_ZERO_BYTES], 1,
  936. [Define to 1 iff memset(0) sets pointers to NULL])
  937. fi
  938. AC_CACHE_CHECK([whether memset(0) sets doubles to 0.0], tor_cv_dbl0_is_zero,
  939. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  940. [[#include <stdlib.h>
  941. #include <string.h>
  942. #include <stdio.h>
  943. #ifdef HAVE_STDDEF_H
  944. #include <stddef.h>
  945. #endif
  946. int main () { double d1,d2; d1=0; memset(&d2,0,sizeof(d2));
  947. return memcmp(&d1,&d2,sizeof(d1))?1:0; }]])],
  948. [tor_cv_dbl0_is_zero=yes],
  949. [tor_cv_dbl0_is_zero=no],
  950. [tor_cv_dbl0_is_zero=cross])])
  951. if test "$tor_cv_dbl0_is_zero" = cross ; then
  952. # Cross-compiling; let's hope that the target isn't raving mad.
  953. AC_MSG_NOTICE([Cross-compiling: we'll assume that 0.0 can be represented as a sequence of 0-valued bytes.])
  954. fi
  955. if test "$tor_cv_dbl0_is_zero" != no; then
  956. AC_DEFINE([DOUBLE_0_REP_IS_ZERO_BYTES], 1,
  957. [Define to 1 iff memset(0) sets doubles to 0.0])
  958. fi
  959. # And what happens when we malloc zero?
  960. AC_CACHE_CHECK([whether we can malloc(0) safely.], tor_cv_malloc_zero_works,
  961. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  962. [[#include <stdlib.h>
  963. #include <string.h>
  964. #include <stdio.h>
  965. #ifdef HAVE_STDDEF_H
  966. #include <stddef.h>
  967. #endif
  968. int main () { return malloc(0)?0:1; }]])],
  969. [tor_cv_malloc_zero_works=yes],
  970. [tor_cv_malloc_zero_works=no],
  971. [tor_cv_malloc_zero_works=cross])])
  972. if test "$tor_cv_malloc_zero_works" = cross; then
  973. # Cross-compiling; let's hope that the target isn't raving mad.
  974. AC_MSG_NOTICE([Cross-compiling: we'll assume that we need to check malloc() arguments for 0.])
  975. fi
  976. if test "$tor_cv_malloc_zero_works" = yes; then
  977. AC_DEFINE([MALLOC_ZERO_WORKS], 1,
  978. [Define to 1 iff malloc(0) returns a pointer])
  979. fi
  980. # whether we seem to be in a 2s-complement world.
  981. AC_CACHE_CHECK([whether we are using 2s-complement arithmetic], tor_cv_twos_complement,
  982. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  983. [[int main () { int problem = ((-99) != (~99)+1);
  984. return problem ? 1 : 0; }]])],
  985. [tor_cv_twos_complement=yes],
  986. [tor_cv_twos_complement=no],
  987. [tor_cv_twos_complement=cross])])
  988. if test "$tor_cv_twos_complement" = cross ; then
  989. # Cross-compiling; let's hope that the target isn't raving mad.
  990. AC_MSG_NOTICE([Cross-compiling: we'll assume that negative integers are represented with two's complement.])
  991. fi
  992. if test "$tor_cv_twos_complement" != no ; then
  993. AC_DEFINE([USING_TWOS_COMPLEMENT], 1,
  994. [Define to 1 iff we represent negative integers with two's complement])
  995. fi
  996. # What does shifting a negative value do?
  997. AC_CACHE_CHECK([whether right-shift on negative values does sign-extension], tor_cv_sign_extend,
  998. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  999. [[int main () { int okay = (-60 >> 8) == -1; return okay ? 0 : 1; }]])],
  1000. [tor_cv_sign_extend=yes],
  1001. [tor_cv_sign_extend=no],
  1002. [tor_cv_sign_extend=cross])])
  1003. if test "$tor_cv_sign_extend" = cross ; then
  1004. # Cross-compiling; let's hope that the target isn't raving mad.
  1005. AC_MSG_NOTICE([Cross-compiling: we'll assume that right-shifting negative integers causes sign-extension])
  1006. fi
  1007. if test "$tor_cv_sign_extend" != no ; then
  1008. AC_DEFINE([RSHIFT_DOES_SIGN_EXTEND], 1,
  1009. [Define to 1 iff right-shifting a negative value performs sign-extension])
  1010. fi
  1011. # Whether we should use the dmalloc memory allocation debugging library.
  1012. AC_MSG_CHECKING(whether to use dmalloc (debug memory allocation library))
  1013. AC_ARG_WITH(dmalloc,
  1014. [ --with-dmalloc Use debug memory allocation library. ],
  1015. [if [[ "$withval" = "yes" ]]; then
  1016. dmalloc=1
  1017. AC_MSG_RESULT(yes)
  1018. else
  1019. dmalloc=1
  1020. AC_MSG_RESULT(no)
  1021. fi], [ dmalloc=0; AC_MSG_RESULT(no) ]
  1022. )
  1023. if [[ $dmalloc -eq 1 ]]; then
  1024. AC_CHECK_HEADERS(dmalloc.h, , AC_MSG_ERROR(dmalloc header file not found. Do you have the development files for dmalloc installed?))
  1025. AC_SEARCH_LIBS(dmalloc_malloc, [dmallocth dmalloc], , AC_MSG_ERROR(Libdmalloc library not found. If you enable it you better have it installed.))
  1026. AC_DEFINE(USE_DMALLOC, 1, [Debug memory allocation library])
  1027. AC_DEFINE(DMALLOC_FUNC_CHECK, 1, [Enable dmalloc's malloc function check])
  1028. AC_CHECK_FUNCS(dmalloc_strdup dmalloc_strndup)
  1029. fi
  1030. AC_ARG_WITH(tcmalloc,
  1031. [ --with-tcmalloc Use tcmalloc memory allocation library. ],
  1032. [ tcmalloc=yes ], [ tcmalloc=no ])
  1033. if test x$tcmalloc = xyes ; then
  1034. LDFLAGS="-ltcmalloc $LDFLAGS"
  1035. fi
  1036. using_custom_malloc=no
  1037. if test x$enable_openbsd_malloc = xyes ; then
  1038. using_custom_malloc=yes
  1039. fi
  1040. if test x$tcmalloc = xyes ; then
  1041. using_custom_malloc=yes
  1042. fi
  1043. if test $using_custom_malloc = no ; then
  1044. AC_CHECK_FUNCS(mallinfo)
  1045. fi
  1046. # By default, we're going to assume we don't have mlockall()
  1047. # bionic and other platforms have various broken mlockall subsystems.
  1048. # Some systems don't have a working mlockall, some aren't linkable,
  1049. # and some have it but don't declare it.
  1050. AC_CHECK_FUNCS(mlockall)
  1051. AC_CHECK_DECLS([mlockall], , , [
  1052. #ifdef HAVE_SYS_MMAN_H
  1053. #include <sys/mman.h>
  1054. #endif])
  1055. # Allow user to specify an alternate syslog facility
  1056. AC_ARG_WITH(syslog-facility,
  1057. [ --with-syslog-facility=LOG syslog facility to use (default=LOG_DAEMON)],
  1058. syslog_facility="$withval", syslog_facility="LOG_DAEMON")
  1059. AC_DEFINE_UNQUOTED(LOGFACILITY,$syslog_facility,[name of the syslog facility])
  1060. AC_SUBST(LOGFACILITY)
  1061. # Check if we have getresuid and getresgid
  1062. AC_CHECK_FUNCS(getresuid getresgid)
  1063. # Check for gethostbyname_r in all its glorious incompatible versions.
  1064. # (This logic is based on that in Python's configure.in)
  1065. AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
  1066. [Define this if you have any gethostbyname_r()])
  1067. AC_CHECK_FUNC(gethostbyname_r, [
  1068. AC_MSG_CHECKING([how many arguments gethostbyname_r() wants])
  1069. OLD_CFLAGS=$CFLAGS
  1070. CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
  1071. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
  1072. #include <netdb.h>
  1073. ], [[
  1074. char *cp1, *cp2;
  1075. struct hostent *h1, *h2;
  1076. int i1, i2;
  1077. (void)gethostbyname_r(cp1,h1,cp2,i1,&h2,&i2);
  1078. ]])],[
  1079. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  1080. AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
  1081. [Define this if gethostbyname_r takes 6 arguments])
  1082. AC_MSG_RESULT(6)
  1083. ], [
  1084. AC_TRY_COMPILE([
  1085. #include <netdb.h>
  1086. ], [
  1087. char *cp1, *cp2;
  1088. struct hostent *h1;
  1089. int i1, i2;
  1090. (void)gethostbyname_r(cp1,h1,cp2,i1,&i2);
  1091. ], [
  1092. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  1093. AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
  1094. [Define this if gethostbyname_r takes 5 arguments])
  1095. AC_MSG_RESULT(5)
  1096. ], [
  1097. AC_TRY_COMPILE([
  1098. #include <netdb.h>
  1099. ], [
  1100. char *cp1;
  1101. struct hostent *h1;
  1102. struct hostent_data hd;
  1103. (void) gethostbyname_r(cp1,h1,&hd);
  1104. ], [
  1105. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  1106. AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
  1107. [Define this if gethostbyname_r takes 3 arguments])
  1108. AC_MSG_RESULT(3)
  1109. ], [
  1110. AC_MSG_RESULT(0)
  1111. ])
  1112. ])
  1113. ])
  1114. CFLAGS=$OLD_CFLAGS
  1115. ])
  1116. AC_CACHE_CHECK([whether the C compiler supports __func__],
  1117. tor_cv_have_func_macro,
  1118. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1119. #include <stdio.h>
  1120. int main(int c, char **v) { puts(__func__); }])],
  1121. tor_cv_have_func_macro=yes,
  1122. tor_cv_have_func_macro=no))
  1123. AC_CACHE_CHECK([whether the C compiler supports __FUNC__],
  1124. tor_cv_have_FUNC_macro,
  1125. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1126. #include <stdio.h>
  1127. int main(int c, char **v) { puts(__FUNC__); }])],
  1128. tor_cv_have_FUNC_macro=yes,
  1129. tor_cv_have_FUNC_macro=no))
  1130. AC_CACHE_CHECK([whether the C compiler supports __FUNCTION__],
  1131. tor_cv_have_FUNCTION_macro,
  1132. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1133. #include <stdio.h>
  1134. int main(int c, char **v) { puts(__FUNCTION__); }])],
  1135. tor_cv_have_FUNCTION_macro=yes,
  1136. tor_cv_have_FUNCTION_macro=no))
  1137. AC_CACHE_CHECK([whether we have extern char **environ already declared],
  1138. tor_cv_have_environ_declared,
  1139. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1140. /* We define _GNU_SOURCE here because it is also defined in compat.c.
  1141. * Without it environ doesn't get declared. */
  1142. #define _GNU_SOURCE
  1143. #ifdef HAVE_UNISTD_H
  1144. #include <unistd.h>
  1145. #endif
  1146. #include <stdlib.h>
  1147. int main(int c, char **v) { char **t = environ; }])],
  1148. tor_cv_have_environ_declared=yes,
  1149. tor_cv_have_environ_declared=no))
  1150. if test "$tor_cv_have_func_macro" = 'yes'; then
  1151. AC_DEFINE(HAVE_MACRO__func__, 1, [Defined if the compiler supports __func__])
  1152. fi
  1153. if test "$tor_cv_have_FUNC_macro" = 'yes'; then
  1154. AC_DEFINE(HAVE_MACRO__FUNC__, 1, [Defined if the compiler supports __FUNC__])
  1155. fi
  1156. if test "$tor_cv_have_FUNCTION_macro" = 'yes'; then
  1157. AC_DEFINE(HAVE_MACRO__FUNCTION__, 1,
  1158. [Defined if the compiler supports __FUNCTION__])
  1159. fi
  1160. if test "$tor_cv_have_environ_declared" = 'yes'; then
  1161. AC_DEFINE(HAVE_EXTERN_ENVIRON_DECLARED, 1,
  1162. [Defined if we have extern char **environ already declared])
  1163. fi
  1164. # $prefix stores the value of the --prefix command line option, or
  1165. # NONE if the option wasn't set. In the case that it wasn't set, make
  1166. # it be the default, so that we can use it to expand directories now.
  1167. if test "x$prefix" = "xNONE"; then
  1168. prefix=$ac_default_prefix
  1169. fi
  1170. # and similarly for $exec_prefix
  1171. if test "x$exec_prefix" = "xNONE"; then
  1172. exec_prefix=$prefix
  1173. fi
  1174. if test "x$BUILDDIR" = "x"; then
  1175. BUILDDIR=`pwd`
  1176. fi
  1177. AC_SUBST(BUILDDIR)
  1178. AH_TEMPLATE([BUILDDIR],[tor's build directory])
  1179. AC_DEFINE_UNQUOTED(BUILDDIR,"$BUILDDIR")
  1180. if test "x$CONFDIR" = "x"; then
  1181. CONFDIR=`eval echo $sysconfdir/tor`
  1182. fi
  1183. AC_SUBST(CONFDIR)
  1184. AH_TEMPLATE([CONFDIR],[tor's configuration directory])
  1185. AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
  1186. BINDIR=`eval echo $bindir`
  1187. AC_SUBST(BINDIR)
  1188. LOCALSTATEDIR=`eval echo $localstatedir`
  1189. AC_SUBST(LOCALSTATEDIR)
  1190. if test "$bwin32" = true; then
  1191. # Test if the linker supports the --nxcompat and --dynamicbase options
  1192. # for Windows
  1193. save_LDFLAGS="$LDFLAGS"
  1194. LDFLAGS="-Wl,--nxcompat -Wl,--dynamicbase"
  1195. AC_MSG_CHECKING([whether the linker supports DllCharacteristics])
  1196. AC_LINK_IFELSE([AC_LANG_PROGRAM([])],
  1197. [AC_MSG_RESULT([yes])]
  1198. [save_LDFLAGS="$save_LDFLAGS $LDFLAGS"],
  1199. [AC_MSG_RESULT([no])]
  1200. )
  1201. LDFLAGS="$save_LDFLAGS"
  1202. fi
  1203. # Set CFLAGS _after_ all the above checks, since our warnings are stricter
  1204. # than autoconf's macros like.
  1205. if test "$GCC" = yes; then
  1206. # Disable GCC's strict aliasing checks. They are an hours-to-debug
  1207. # accident waiting to happen.
  1208. CFLAGS="$CFLAGS -Wall -fno-strict-aliasing"
  1209. else
  1210. # Autoconf sets -g -O2 by default. Override optimization level
  1211. # for non-gcc compilers
  1212. CFLAGS="$CFLAGS -O"
  1213. enable_gcc_warnings=no
  1214. enable_gcc_warnings_advisory=no
  1215. fi
  1216. # OS X Lion started deprecating the system openssl. Let's just disable
  1217. # all deprecation warnings on OS X. Also, to potentially make the binary
  1218. # a little smaller, let's enable dead_strip.
  1219. case "$host_os" in
  1220. darwin*)
  1221. CFLAGS="$CFLAGS -Wno-deprecated-declarations"
  1222. LDFLAGS="$LDFLAGS -dead_strip" ;;
  1223. esac
  1224. # Add some more warnings which we use in development but not in the
  1225. # released versions. (Some relevant gcc versions can't handle these.)
  1226. if test x$enable_gcc_warnings = xyes || test x$enable_gcc_warnings_advisory = xyes; then
  1227. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  1228. #if !defined(__GNUC__) || (__GNUC__ < 4)
  1229. #error
  1230. #endif])], have_gcc4=yes, have_gcc4=no)
  1231. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  1232. #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 2)
  1233. #error
  1234. #endif])], have_gcc42=yes, have_gcc42=no)
  1235. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  1236. #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)
  1237. #error
  1238. #endif])], have_gcc43=yes, have_gcc43=no)
  1239. save_CFLAGS="$CFLAGS"
  1240. CFLAGS="$CFLAGS -Wshorten-64-to-32"
  1241. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], have_shorten64_flag=yes,
  1242. have_shorten64_flag=no)
  1243. CFLAGS="$save_CFLAGS"
  1244. case $host in
  1245. *-*-openbsd* | *-*-bitrig*)
  1246. # Some OpenBSD versions (like 4.8) have -Wsystem-headers by default.
  1247. # That's fine, except that the headers don't pass -Wredundant-decls.
  1248. # Therefore, let's disable -Wsystem-headers when we're building
  1249. # with maximal warnings on OpenBSD.
  1250. CFLAGS="$CFLAGS -Wno-system-headers" ;;
  1251. esac
  1252. CFLAGS="$CFLAGS -W -Wfloat-equal -Wundef -Wpointer-arith"
  1253. CFLAGS="$CFLAGS -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings"
  1254. CFLAGS="$CFLAGS -Wredundant-decls -Wchar-subscripts -Wcomment -Wformat=2"
  1255. CFLAGS="$CFLAGS -Wwrite-strings -Wmissing-declarations -Wredundant-decls"
  1256. CFLAGS="$CFLAGS -Wnested-externs -Wbad-function-cast -Wswitch-enum"
  1257. if test x$enable_gcc_warnings = xyes; then
  1258. CFLAGS="$CFLAGS -Werror"
  1259. fi
  1260. # Disabled, so we can use mallinfo(): -Waggregate-return
  1261. if test x$have_gcc4 = xyes ; then
  1262. # These warnings break gcc 3.3.5 and work on gcc 4.0.2
  1263. CFLAGS="$CFLAGS -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Wold-style-definition"
  1264. fi
  1265. if test x$have_gcc42 = xyes ; then
  1266. # These warnings break gcc 4.0.2 and work on gcc 4.2
  1267. # XXXX020 See if any of these work with earlier versions.
  1268. CFLAGS="$CFLAGS -Waddress -Wmissing-noreturn -Wstrict-overflow=1"
  1269. # We used to use -Wstrict-overflow=5, but that breaks us heavily under 4.3.
  1270. fi
  1271. if test x$have_gcc42 = xyes && test x$have_clang = xno; then
  1272. # These warnings break gcc 4.0.2 and clang, but work on gcc 4.2
  1273. CFLAGS="$CFLAGS -Wnormalized=id -Woverride-init"
  1274. fi
  1275. if test x$have_gcc43 = xyes ; then
  1276. # These warnings break gcc 4.2 and work on gcc 4.3
  1277. # XXXX020 See if any of these work with earlier versions.
  1278. CFLAGS="$CFLAGS -Wextra -Warray-bounds"
  1279. fi
  1280. if test x$have_shorten64_flag = xyes ; then
  1281. CFLAGS="$CFLAGS -Wshorten-64-to-32"
  1282. fi
  1283. ##This will break the world on some 64-bit architectures
  1284. # CFLAGS="$CFLAGS -Winline"
  1285. fi
  1286. CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent $TOR_CPPFLAGS_openssl $TOR_CPPFLAGS_zlib"
  1287. AC_CONFIG_FILES([
  1288. Doxyfile
  1289. Makefile
  1290. contrib/suse/tor.sh
  1291. contrib/tor.logrotate
  1292. contrib/tor.sh
  1293. contrib/torctl
  1294. contrib/torify
  1295. src/config/torrc.sample
  1296. ])
  1297. if test x$asciidoc = xtrue && test "$ASCIIDOC" = "none" ; then
  1298. regular_mans="doc/tor doc/tor-gencert doc/tor-resolve doc/torify"
  1299. for file in $regular_mans ; do
  1300. if ! [[ -f "$srcdir/$file.1.in" ]] || ! [[ -f "$srcdir/$file.html.in" ]] ; then
  1301. echo "==================================";
  1302. echo;
  1303. echo "You need asciidoc installed to be able to build the manpage.";
  1304. echo "To build without manpages, use the --disable-asciidoc argument";
  1305. echo "when calling configure.";
  1306. echo;
  1307. echo "==================================";
  1308. exit 1;
  1309. fi
  1310. done
  1311. fi
  1312. AC_OUTPUT
  1313. if test -x /usr/bin/perl && test -x ./contrib/updateVersions.pl ; then
  1314. ./contrib/updateVersions.pl
  1315. fi