Attempt to address points brought up in #tor flamewar. In particular, moved
[tor/rransom.git] / configure.in
blob6e7f70256801d74c48abfa69bc12bff39c0a961a
1 dnl $Id$
2 dnl Copyright (c) 2001-2004, Roger Dingledine
3 dnl Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson
4 dnl See LICENSE for licensing information
6 AC_INIT
7 AM_INIT_AUTOMAKE(tor, 0.2.0.2-alpha)
8 AM_CONFIG_HEADER(orconfig.h)
10 AC_CANONICAL_HOST
12 if test -f /etc/redhat-release ; then
13     CFLAGS="$CFLAGS -I/usr/kerberos/include"
16 AC_ARG_ENABLE(debug,
17  AS_HELP_STRING(--enable-debug, compile with debugging info),
18 [if test x$enableval = xyes; then
19     CFLAGS="$CFLAGS -g"
20 fi])
22 AC_ARG_ENABLE(cell-pool,
23      AS_HELP_STRING(--disable-cell-pool, disable pool allocator for cells))
25 if test x$enable_cell_pool != xno; then
26   AC_DEFINE(ENABLE_CELL_POOL, 1,
27             [Defined if we try to use the pool allocator for queued cells])
30 AC_ARG_ENABLE(transparent,
31      AS_HELP_STRING(--disable-transparent, disable transparent proxy support),
32      [case "${enableval}" in
33         yes) transparent=true ;;
34         no)  transparent=false ;;
35         *) AC_MSG_ERROR(bad value for --enable-transparent) ;;
36       esac], [transparent=true])
38 AC_ARG_ENABLE(threads,
39      AS_HELP_STRING(--disable-threads, disable multi-threading support))
41 if test x$enable_threads = x; then
42    case $host in
43     *-*-solaris* )
44      # Don't try multithreading on solaris -- cpuworkers seem to lock.
45      AC_MSG_NOTICE([You are running Solaris; Sometimes threading makes
46 cpu workers lock up here, so I will disable threads.])
47      enable_threads="no";;
48     *)
49      enable_threads="yes";;
50    esac
53 if test $enable_threads = "yes"; then
54   AC_DEFINE(ENABLE_THREADS, 1, [Defined if we will try to use multithreading])
57 case $host in
58    *-*-solaris* )
59      AC_DEFINE(_REENTRANT, 1, [Define on some platforms to activate x_r() functions in time.h])
60      ;;
61 esac
63 AC_ARG_ENABLE(gcc-warnings,
64      AS_HELP_STRING(--enable-gcc-warnings, enable verbose warnings))
66 AC_PROG_CC
67 AC_PROG_MAKE_SET
68 AC_PROG_RANLIB
70 TORUSER=_tor
71 AC_ARG_WITH(tor-user,
72         [  --with-tor-user=NAME    Specify username for tor daemon ],
73         [
74            TORUSER=$withval
75         ]
77 AC_SUBST(TORUSER)
79 TORGROUP=_tor
80 AC_ARG_WITH(tor-group,
81         [  --with-tor-group=NAME   Specify group name for tor daemon ],
82         [
83            TORGROUP=$withval
84         ]
86 AC_SUBST(TORGROUP)
89 dnl If WIN32 is defined and non-zero, we are building for win32
90 AC_MSG_CHECKING([for win32])
91 AC_RUN_IFELSE([
92 int main(int c, char **v) {
93 #ifdef WIN32
94 #if WIN32
95   return 0;
96 #else
97   return 1;
98 #endif
99 #else
100   return 2;
101 #endif
103 bwin32=true; AC_MSG_RESULT([yes]),
104 bwin32=false; AC_MSG_RESULT([no]),
105 bwin32=cross; AC_MSG_RESULT([cross])
108 if test $bwin32 = cross; then
109 AC_MSG_CHECKING([for win32 (cross)])
110 AC_COMPILE_IFELSE([
111 #ifdef WIN32
112 int main(int c, char **v) {return 0;}
113 #else
114 #error
115 int main(int c, char **v) {return x(y);}
116 #endif
118 bwin32=true; AC_MSG_RESULT([yes]),
119 bwin32=false; AC_MSG_RESULT([no]))
122 if test $bwin32 = true; then
123 AC_DEFINE(MS_WINDOWS, 1, [Define to 1 if we are building for Windows.])
126 dnl Enable C99 when compiling with MIPSpro
127 AC_MSG_CHECKING([for MIPSpro compiler])
128 AC_COMPILE_IFELSE(AC_LANG_PROGRAM(, [
129 #if (defined(__sgi) && defined(_COMPILER_VERSION))
130 #error
131   return x(y);
132 #endif
134 bmipspro=false; AC_MSG_RESULT(no),
135 bmipspro=true; AC_MSG_RESULT(yes))
137 if test $bmipspro = true; then
138   CFLAGS="$CFLAGS -c99"
141 AC_SEARCH_LIBS(socket, [socket])
142 AC_SEARCH_LIBS(gethostbyname, [nsl])
143 AC_SEARCH_LIBS(dlopen, [dl])
144 AC_SEARCH_LIBS(inet_aton, [resolv])
146 if test $enable_threads = "yes"; then
147   AC_SEARCH_LIBS(pthread_create, [pthread])
148   AC_SEARCH_LIBS(pthread_detach, [pthread])
151 dnl -------------------------------------------------------------------
152 dnl Check for functions before libevent, since libevent-1.2 apparently
153 dnl exports strlcpy without defining it in a header.
155 AC_CHECK_FUNCS(gettimeofday ftime socketpair uname inet_aton strptime getrlimit strlcat strlcpy strtoull ftello getaddrinfo localtime_r gmtime_r memmem strtok_r inet_pton inet_ntop)
157 if test $enable_threads = "yes"; then
158   AC_CHECK_HEADERS(pthread.h)
159   AC_CHECK_FUNCS(pthread_create)
162 dnl ------------------------------------------------------
163 dnl Where do you live, libevent?  And how do we call you?
165 if test $bwin32 = true; then
166   TOR_LIB_WS32=-lws2_32
167   # Some of the cargo-cults recommend -lwsock32 as well, but I don't
168   # think it's actually necessary.
169   TOR_LIB_GDI=-lgdi32
170 else
171   TOR_LIB_WS32=
172   TOR_LIB_GDI=
174 AC_SUBST(TOR_LIB_WS32)
175 AC_SUBST(TOR_LIB_GDI)
177 dnl This is a disgusting hack so we safely include recent libevent headers.
178 AC_CHECK_TYPE(u_int64_t, unsigned long long)
179 AC_CHECK_TYPE(u_int32_t, unsigned long)
180 AC_CHECK_TYPE(u_int16_t, unsigned short)
181 AC_CHECK_TYPE(u_int8_t, unsigned char)
183 tor_libevent_pkg_redhat="libevent"
184 tor_libevent_pkg_debian="libevent-dev"
185 tor_libevent_devpkg_redhat="libevent-devel"
186 tor_libevent_devpkg_debian="libevent-dev"
188 TOR_SEARCH_LIBRARY(libevent, $trylibeventdir, [-levent $TOR_LIB_WS32], [
189 #include <stdlib.h>
190 #include <sys/time.h>
191 #include <sys/types.h>
192 #include <event.h>], [void exit(int); void *event_init(void);],
193     [event_init(); exit(0);], [--with-libevent-dir], [/opt/libevent])
195 dnl Now check for particular libevent functions.
196 save_LIBS="$LIBS"
197 save_LDFLAGS="$LDFLAGS"
198 save_CPPFLAGS="$CPPFLAGS"
199 LIBS="-levent $TOR_LIB_WS32 $LIBS"
200 LDFLAGS="$TOR_LDFLAGS_libevent $LIBS"
201 CPPFLAGS="$TOR_CPPFLAGS_libevent $CPPFLAGS"
202 AC_CHECK_FUNCS(event_get_version event_get_method event_set_log_callback)
203 LIBS="$save_LIBS"
204 LDFLAGS="$save_LDFLAGS"
205 CPPFLAGS="$save_CPPFLAGS"
207 dnl ------------------------------------------------------
208 dnl Where do you live, openssl?  And how do we call you?
210 tor_openssl_pkg_redhat="openssl"
211 tor_openssl_pkg_debian="libssl"
212 tor_openssl_devpkg_redhat="openssl-devel"
213 tor_openssl_devpkg_debian="libssl-dev"
215 TOR_SEARCH_LIBRARY(openssl, $tryssldir, [-lssl -lcrypto $TOR_LIB_GDI],
216     [#include <openssl/rand.h>],
217     [void RAND_add(const void *buf, int num, double entropy);],
218     [RAND_add((void*)0,0,0); exit(0);], [--with-ssl-dir],
219     [/usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/athena /opt/openssl])
221 dnl XXXX check for OPENSSL_VERSION_NUMBER == SSLeay()
223 dnl ------------------------------------------------------
224 dnl Where do you live, zlib?  And how do we call you?
226 tor_openssl_pkg_redhat="zlib"
227 tor_openssl_pkg_debian="zlib1g"
228 tor_openssl_devpkg_redhat="zlib-devel"
229 tor_openssl_devpkg_debian="zlib1g-dev"
231 TOR_SEARCH_LIBRARY(zlib, $tryzlibdir, [-lz],
232     [#include <zlib.h>],
233     [const char * zlibVersion(void);],
234     [zlibVersion(); exit(0);], [--with-zlib-dir],
235     [/opt/zlib])
237 dnl Make sure to enable support for large off_t if avalable.
239 AC_SYS_LARGEFILE
241 AC_CHECK_HEADERS(unistd.h string.h signal.h ctype.h sys/stat.h sys/types.h fcntl.h sys/fcntl.h sys/time.h errno.h assert.h time.h, , 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.))
243 AC_CHECK_HEADERS(netdb.h sys/ioctl.h sys/socket.h arpa/inet.h netinet/in.h pwd.h grp.h)
245 dnl These headers are not essential
247 AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/param.h sys/wait.h limits.h sys/limits.h netinet/in.h arpa/inet.h machine/limits.h syslog.h sys/time.h sys/resource.h inttypes.h utime.h sys/utime.h sys/mman.h netintet/in.h netinet/in6.h)
249 AC_CHECK_HEADERS(net/if.h, net_if_found=1, net_if_found=0,
250 [#ifdef HAVE_SYS_TYPES_H
251 #include <sys/types.h>
252 #endif
253 #ifdef HAVE_SYS_SOCKET_H
254 #include <sys/socket.h>
255 #endif])
256 AC_CHECK_HEADERS(net/pfvar.h, net_pfvar_found=1, net_pfvar_found=0,
257 [#ifdef HAVE_SYS_TYPES_H
258 #include <sys/types.h>
259 #endif
260 #ifdef HAVE_SYS_SOCKET_H
261 #include <sys/socket.h>
262 #endif
263 #ifdef HAVE_NET_IF_H
264 #include <net/if.h>
265 #endif])
266 AC_CHECK_HEADERS(linux/netfilter_ipv4.h,
267         linux_netfilter_ipv4=1, linux_netfilter_ipv4=0,
268 [#ifdef HAVE_SYS_TYPES_H
269 #include <sys/types.h>
270 #endif
271 #ifdef HAVE_SYS_SOCKET_H
272 #include <sys/socket.h>
273 #endif])
275 if test x$transparent = xtrue ; then
276    transparent_ok=0
277    if test x$net_if_found = x1 && test x$net_pfvar_found = x1 ; then
278      transparent_ok=1
279    fi
280    if test x$linux_netfilter_ipv4 = x1 ; then
281      transparent_ok=1
282    fi
283    if test x$transparent_ok = x1 ; then
284      AC_DEFINE(USE_TRANSPARENT, 1, "Define to enable transparent proxy support")
285      case $host in
286        *-*-openbsd*)
287          AC_DEFINE(OPENBSD, 1, "Define to handle pf on OpenBSD properly") ;;
288      esac
289    else
290      AC_MSG_NOTICE([Transparent proxy support enabled, but missing headers.])
291    fi
294 AC_FUNC_FSEEKO
296 AC_CHECK_MEMBERS([struct timeval.tv_sec], , ,
297 [#ifdef HAVE_SYS_TYPES_H
298 #include <sys/types.h>
299 #endif
300 #ifdef HAVE_SYS_TIME_H
301 #include <sys/time.h>
302 #endif])
304 dnl In case we aren't given a working stdint.h, we'll need to grow our own.
305 dnl Watch out.
307 AC_CHECK_SIZEOF(int8_t)
308 AC_CHECK_SIZEOF(int16_t)
309 AC_CHECK_SIZEOF(int32_t)
310 AC_CHECK_SIZEOF(int64_t)
311 AC_CHECK_SIZEOF(uint8_t)
312 AC_CHECK_SIZEOF(uint16_t)
313 AC_CHECK_SIZEOF(uint32_t)
314 AC_CHECK_SIZEOF(uint64_t)
315 AC_CHECK_SIZEOF(intptr_t)
316 AC_CHECK_SIZEOF(uintptr_t)
318 dnl AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, intptr_t, uintptr_t])
320 AC_CHECK_SIZEOF(char)
321 AC_CHECK_SIZEOF(short)
322 AC_CHECK_SIZEOF(int)
323 AC_CHECK_SIZEOF(long)
324 AC_CHECK_SIZEOF(long long)
325 AC_CHECK_SIZEOF(__int64)
326 AC_CHECK_SIZEOF(void *)
327 AC_CHECK_SIZEOF(time_t)
328 AC_CHECK_SIZEOF(size_t)
330 AC_CHECK_TYPES([uint, u_char])
332 AC_CHECK_TYPES([struct in6_addr, struct sockaddr_storage], , ,
333 [#ifdef HAVE_SYS_TYPES_H
334 #include <sys/types.h>
335 #endif
336 #ifdef HAVE_NETINET_IN_H
337 #include <netinet/in.h>
338 #endif
339 #ifdef HAVE_NETINET_IN6_H
340 #include <netinet/in6.h>
341 #endif
342 #ifdef HAVE_SYS_SOCKET_H
343 #include <sys/socket.h>
344 #endif])
346 if test -z "$CROSS_COMPILE"; then
347 AC_CACHE_CHECK([whether time_t is signed], tor_cv_time_t_signed, [
348 AC_RUN_IFELSE(AC_LANG_SOURCE([
349 #ifdef HAVE_SYS_TYPES_H
350 #include <sys/types.h>
351 #endif
352 #ifdef HAVE_SYS_TIME_H
353 #include <sys/time.h>
354 #endif
355 #ifdef HAVE_TIME_H
356 #include <time.h>
357 #endif
358 int main(int c, char**v) { if (((time_t)-1)<0) return 1; else return 0; }]),
359   tor_cv_time_t_signed=no, tor_cv_time_t_signed=yes)
361 else
362   # Cross-compiling; let's hope the target platform isn't loony.
363   AC_MSG_NOTICE([Cross compiling: assuming that time_t is signed.])
364   tor_cv_time_t_signed=yes
367 if test $tor_cv_time_t_signed = yes; then
368   AC_DEFINE([TIME_T_IS_SIGNED], 1,
369             [Define to 1 iff time_t is signed])
372 AC_CHECK_SIZEOF(socklen_t, , [AC_INCLUDES_DEFAULT()
373 #ifdef HAVE_SYS_SOCKET_H
374 #include <sys/socket.h>
375 #endif
378 # We want to make sure that we _don't_ have a cell_t defined, like IRIX does.
380 AC_CHECK_SIZEOF(cell_t)
382 # Now make sure that NULL can be represented as zero bytes.
383 if test -z "$CROSS_COMPILE"; then
384 AC_CACHE_CHECK([whether memset(0) sets pointers to NULL], tor_cv_null_is_zero,
385 [AC_RUN_IFELSE([AC_LANG_SOURCE(
386 [[#include <stdlib.h>
387 #include <string.h>
388 #include <stdio.h>
389 #ifdef HAVE_STDDEF_H
390 #include <stddef.h>
391 #endif
392 int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2));
393 return memcmp(&p1,&p2,sizeof(char*))?1:0; }]])],
394        [tor_cv_null_is_zero=yes],
395        [tor_cv_null_is_zero=no],
396        [tor_cv_null_is_zero=cross])])
398 else
399   # Cross-compiling; let's hope that the target isn't raving mad.
400   AC_MSG_NOTICE([Cross-compiling: we'll assume that NULL is represented as a sequence of 0-valued bytes.])
401   tor_cv_null_is_zero=yes
404 if test $tor_cv_null_is_zero = yes; then
405   AC_DEFINE([NULL_REP_IS_ZERO_BYTES], 1,
406             [Define to 1 iff memset(0) sets pointers to NULL])
409 # And what happens when we malloc zero?
411 if test -z "$CROSS_COMPILE"; then
412 AC_CACHE_CHECK([whether we can malloc(0) safely.], tor_cv_malloc_zero_works,
413 [AC_RUN_IFELSE([AC_LANG_SOURCE(
414 [[#include <stdlib.h>
415 #include <string.h>
416 #include <stdio.h>
417 #ifdef HAVE_STDDEF_H
418 #include <stddef.h>
419 #endif
420 int main () { return malloc(0)?0:1; }]])],
421        [tor_cv_malloc_zero_works=yes],
422        [tor_cv_malloc_zero_works=no],
423        [tor_cv_malloc_zero_works=cross])])
425 else
426   # Cross-compiling; let's hope that the target isn't raving mad.
427   AC_MSG_NOTICE([Cross-compiling: we'll assume that we need to check malloc() arguments for 0.])
428   tor_cv_malloc_zero_works=no
431 if test $tor_cv_malloc_zero_works = yes; then
432   AC_DEFINE([MALLOC_ZERO_WORKS], 1,
433             [Define to 1 iff malloc(0) returns a pointer])
436 # whether we seem to be in a 2s-complement world.
437 if test -z "$CROSS_COMPILE"; then
438 AC_CACHE_CHECK([whether we are using 2s-complement arithmetic], tor_cv_twos_complement,
439 [AC_RUN_IFELSE([AC_LANG_SOURCE(
440 [[int main () { int problem = ((-99) != (~99)+1);
441 return problem ? 1 : 0; }]])],
442        [tor_cv_twos_complement=yes],
443        [tor_cv_twos_complement=no],
444        [tor_cv_twos_complement=cross])])
446 else
447   # Cross-compiling; let's hope that the target isn't raving mad.
448   AC_MSG_NOTICE([Cross-compiling: we'll assume that negative integers are represented with two's complement.])
449   tor_cv_twos_complement=yes
452 if test $tor_cv_twos_complement = yes; then
453   AC_DEFINE([USING_TWOS_COMPLEMENT], 1,
454             [Define to 1 iff we represent negative integers with two's complement])
457 # Whether we should use the dmalloc memory allocation debugging library.
458 AC_MSG_CHECKING(whether to use dmalloc (debug memory allocation library))
459 AC_ARG_WITH(dmalloc,
460 [  --with-dmalloc          Use debug memory allocation library. ],
461 [if [[ "$withval" = "yes" ]]; then
462   dmalloc=1
463   AC_MSG_RESULT(yes)
464 else
465   dmalloc=1
466   AC_MSG_RESULT(no)
467 fi], [ dmalloc=0; AC_MSG_RESULT(no) ]
470 if [[ $dmalloc -eq 1 ]]; then
471   AC_CHECK_HEADERS(dmalloc.h, , AC_MSG_ERROR(dmalloc header file not found. Do you have the development files for dmalloc installed?))
472   AC_SEARCH_LIBS(dmalloc_malloc, [dmallocth dmalloc], , AC_MSG_ERROR(Libdmalloc library not found. If you enable it you better have it installed.))
473   AC_DEFINE(USE_DMALLOC, 1, [Debug memory allocation library])
474   AC_DEFINE(DMALLOC_FUNC_CHECK, 1, [Enable dmalloc's malloc function check])
477 # Allow user to specify an alternate syslog facility
478 AC_ARG_WITH(syslog-facility,
479 [  --with-syslog-facility=LOG syslog facility to use (default=LOG_DAEMON)],
480 syslog_facility="$withval", syslog_facility="LOG_DAEMON")
481 AC_DEFINE_UNQUOTED(LOGFACILITY,$syslog_facility,[name of the syslog facility])
482 AC_SUBST(LOGFACILITY)
484 # Check for gethostbyname_r in all its glorious incompatible versions.
485 #   (This logic is based on that in Python's configure.in)
486 AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
487   [Define this if you have any gethostbyname_r()])
489 AC_CHECK_FUNC(gethostbyname_r, [
490   AC_MSG_CHECKING([how many arguments gethostbyname_r() wants])
491   OLD_CFLAGS=$CFLAGS
492   CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
493   AC_COMPILE_IFELSE(AC_LANG_PROGRAM([
494 #include <netdb.h>
495   ], [[
496     char *cp1, *cp2;
497     struct hostent *h1, *h2;
498     int i1, i2;
499     (void)gethostbyname_r(cp1,h1,cp2,i1,&h2,&i2);
500   ]]),[
501     AC_DEFINE(HAVE_GETHOSTBYNAME_R)
502     AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
503      [Define this if gethostbyname_r takes 6 arguments])
504     AC_MSG_RESULT(6)
505   ], [
506     AC_TRY_COMPILE([
507 #include <netdb.h>
508     ], [
509       char *cp1, *cp2;
510       struct hostent *h1;
511       int i1, i2;
512       (void)gethostbyname_r(cp1,h1,cp2,i1,&i2);
513     ], [
514       AC_DEFINE(HAVE_GETHOSTBYNAME_R)
515       AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
516         [Define this if gethostbyname_r takes 5 arguments])
517       AC_MSG_RESULT(5)
518    ], [
519       AC_TRY_COMPILE([
520 #include <netdb.h>
521      ], [
522        char *cp1;
523        struct hostent *h1;
524        struct hostent_data hd;
525        (void) gethostbyname_r(cp1,h1,&hd);
526      ], [
527        AC_DEFINE(HAVE_GETHOSTBYNAME_R)
528        AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
529          [Define this if gethostbyname_r takes 3 arguments])
530        AC_MSG_RESULT(3)
531      ], [
532        AC_MSG_RESULT(0)
533      ])
534   ])
535  ])
536  CFLAGS=$OLD_CFLAGS
539 AC_CACHE_CHECK([whether the C compiler supports __func__],
540   tor_cv_have_func_macro,
541   AC_COMPILE_IFELSE([
542 #include <stdio.h>
543 int main(int c, char **v) { puts(__func__); }],
544   tor_cv_have_func_macro=yes,
545   tor_cv_have_func_macro=no))
547 AC_CACHE_CHECK([whether the C compiler supports __FUNC__],
548   tor_cv_have_FUNC_macro,
549   AC_COMPILE_IFELSE([
550 #include <stdio.h>
551 int main(int c, char **v) { puts(__FUNC__); }],
552   tor_cv_have_FUNC_macro=yes,
553   tor_cv_have_FUNC_macro=no))
555 AC_CACHE_CHECK([whether the C compiler supports __FUNCTION__],
556   tor_cv_have_FUNCTION_macro,
557   AC_COMPILE_IFELSE([
558 #include <stdio.h>
559 int main(int c, char **v) { puts(__FUNCTION__); }],
560   tor_cv_have_FUNCTION_macro=yes,
561   tor_cv_have_FUNCTION_macro=no))
563 if test $tor_cv_have_func_macro = 'yes'; then
564   AC_DEFINE(HAVE_MACRO__func__, 1, [Defined if the compiler supports __func__])
567 if test $tor_cv_have_FUNC_macro = 'yes'; then
568   AC_DEFINE(HAVE_MACRO__FUNC__, 1, [Defined if the compiler supports __FUNC__])
571 if test $tor_cv_have_FUNCTION_macro = 'yes'; then
572   AC_DEFINE(HAVE_MACRO__FUNCTION__, 1,
573            [Defined if the compiler supports __FUNCTION__])
576 # $prefix stores the value of the --prefix command line option, or
577 # NONE if the option wasn't set.  In the case that it wasn't set, make
578 # it be the default, so that we can use it to expand directories now.
579 if test "x$prefix" = "xNONE"; then
580   prefix=$ac_default_prefix
583 # and similarly for $exec_prefix
584 if test "x$exec_prefix" = "xNONE"; then
585   exec_prefix=$prefix
588 if test "x$CONFDIR" = "x"; then
589   CONFDIR=`eval echo $sysconfdir/tor`
591 AC_SUBST(CONFDIR)
592 AH_TEMPLATE([CONFDIR],[tor's configuration directory])
593 AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
595 BINDIR=`eval echo $bindir`
596 AC_SUBST(BINDIR)
598 LOCALSTATEDIR=`eval echo $localstatedir`
599 AC_SUBST(LOCALSTATEDIR)
600 AH_TEMPLATE([LOCALSTATEDIR], [Default location to store state files.])
601 AC_DEFINE_UNQUOTED(LOCALSTATEDIR,"$LOCALSTATEDIR")
603 # Set CFLAGS _after_ all the above checks, since our warnings are stricter
604 # than autoconf's macros like.
605 if test $ac_cv_c_compiler_gnu = yes; then
606   CFLAGS="$CFLAGS -Wall -g -O2"
607 else
608   CFLAGS="$CFLAGS -g -O"
609   enable_gcc_warnings=no
612 # Add some more warnings which we use in the cvs version but not in the
613 # released versions.  (Some relevant gcc versions can't handle these.)
614 if test x$enable_gcc_warnings = xyes; then
616   AC_COMPILE_IFELSE(AC_LANG_PROGRAM([], [
617 #if !defined(__GNUC__) || (__GNUC__ < 4)
618 #error
619 #endif]), have_gcc4=yes, have_gcc4=no)
621   AC_COMPILE_IFELSE(AC_LANG_PROGRAM([], [
622 #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 2)
623 #error
624 #endif]), have_gcc42=yes, have_gcc42=no)
626   CFLAGS="$CFLAGS -W -Wfloat-equal -Wundef -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -Wredundant-decls -Wchar-subscripts -Wcomment -Wformat=2 -Wwrite-strings -Waggregate-return -Wmissing-declarations -Wredundant-decls -Wnested-externs -Wbad-function-cast -Wswitch-enum -Werror"
628   if test x$have_gcc4 = xyes ; then 
629     # These warnings break gcc 3.3.5 and work on gcc 4.0.2
630     CFLAGS="$CFLAGS -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Wold-style-definition"
631   fi
633   if test x$have_gcc42 = xyes ; then 
634     # These warnings break gcc 4.0.2 and work on gcc 4.2
635     # XXXX020 Use -fstack-protector.
636     # XXXX020 See if any of these work with earlier versions.
637     CFLAGS="$CFLAGS -Waddress -Wmissing-noreturn -Wnormalized=id -Woverride-init -Wstrict-overflow=5"
638   fi
640 ##This will break the world on some 64-bit architectures
641 # CFLAGS="$CFLAGS -Winline"
645 CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent $TOR_CPPFLAGS_openssl $TOR_CPPFLAGS_zlib"
647 AC_CONFIG_FILES([Makefile tor.spec contrib/tor.sh contrib/torctl contrib/torify contrib/tor.logrotate contrib/Makefile contrib/osx/Makefile contrib/osx/TorBundleDesc.plist contrib/osx/TorBundleInfo.plist contrib/osx/TorDesc.plist contrib/osx/TorInfo.plist contrib/osx/TorStartupDesc.plist src/config/torrc.sample doc/tor.1 src/Makefile doc/Makefile doc/design-paper/Makefile doc/spec/Makefile src/config/Makefile src/common/Makefile src/or/Makefile src/win32/Makefile src/tools/Makefile contrib/suse/Makefile contrib/suse/tor.sh])
648 AC_OUTPUT
650 if test -x /usr/bin/perl && test -x ./contrib/updateVersions.pl ; then
651   ./contrib/updateVersions.pl