3 AM_INIT_AUTOMAKE(tor, 0.0.9rc6-cvs)
4 AM_CONFIG_HEADER(orconfig.h)
8 if test -f /etc/redhat-release; then
9 CFLAGS="$CFLAGS -I/usr/kerberos/include"
13 [ --enable-debug compiles with debugging info],
14 [if test x$enableval = xyes; then
22 # The big search for OpenSSL
23 # copied from openssh's configure.ac
25 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
27 if test "x$withval" != "xno" ; then
33 AC_SEARCH_LIBS(socket, [socket])
34 AC_SEARCH_LIBS(gethostbyname, [nsl])
37 saved_LDFLAGS="$LDFLAGS"
38 saved_CPPFLAGS="$CPPFLAGS"
39 if test "x$prefix" != "xNONE" ; then
40 tryssldir="$tryssldir $prefix"
42 AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [
43 for ssldir in $tryssldir "" /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/athena /usr/pkg /opt /opt/openssl ; do
44 CPPFLAGS="$saved_CPPFLAGS"
45 LDFLAGS="$saved_LDFLAGS"
46 LIBS="$saved_LIBS -lssl -lcrypto"
48 # Skip directories if they don't exist
49 if test ! -z "$ssldir" -a ! -d "$ssldir" ; then
52 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
53 # Try to use $ssldir/lib if it exists, otherwise
55 if test -d "$ssldir/lib" ; then
56 LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
57 if test ! -z "$need_dash_r" ; then
58 LDFLAGS="-R$ssldir/lib $LDFLAGS"
61 LDFLAGS="-L$ssldir $saved_LDFLAGS"
62 if test ! -z "$need_dash_r" ; then
63 LDFLAGS="-R$ssldir $LDFLAGS"
66 # Try to use $ssldir/include if it exists, otherwise
68 if test -d "$ssldir/include" ; then
69 CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
71 CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
75 # Basic test to check for compatible version and correct linking
76 # *does not* test for RSA - that comes later.
80 #include <openssl/rand.h>
84 memset(a, 0, sizeof(a));
85 RAND_add(a, sizeof(a), sizeof(a));
86 return(RAND_status() <= 0);
95 if test ! -z "$found_crypto" ; then
100 if test -z "$found_crypto" ; then
101 AC_MSG_ERROR([Could not find working OpenSSL library, please install or check config.log])
103 if test -z "$ssldir" ; then
107 ac_cv_openssldir=$ssldir
109 if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ;
111 dnl Need to recover ssldir - test above runs in subshell
112 ssldir=$ac_cv_openssldir
113 if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then
114 # Try to use $ssldir/lib if it exists, otherwise
116 if test -d "$ssldir/lib" ; then
117 LDFLAGS="-L$ssldir/lib $saved_LDFLAGS"
118 if test ! -z "$need_dash_r" ; then
119 LDFLAGS="-R$ssldir/lib $LDFLAGS"
122 LDFLAGS="-L$ssldir $saved_LDFLAGS"
123 if test ! -z "$need_dash_r" ; then
124 LDFLAGS="-R$ssldir $LDFLAGS"
127 # Try to use $ssldir/include if it exists, otherwise
129 if test -d "$ssldir/include" ; then
130 CPPFLAGS="-I$ssldir/include $saved_CPPFLAGS"
132 CPPFLAGS="-I$ssldir $saved_CPPFLAGS"
140 dnl The warning message here is no longer strictly accurate.
142 AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/stat.h sys/poll.h sys/types.h fcntl.h sys/fcntl.h sys/ioctl.h sys/socket.h sys/time.h netinet/in.h arpa/inet.h errno.h assert.h time.h pwd.h grp.h zlib.h, , AC_MSG_WARN(some headers were not found, compilation may fail))
144 dnl These headers are not essential
146 AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/param.h sys/wait.h sys/limits.h netinet/in.h arpa/inet.h machine/limits.h syslog.h sys/time.h sys/resource.h)
148 AC_CHECK_FUNCS(gettimeofday ftime socketpair uname inet_aton strptime getrlimit setrlimit strlcat strlcpy strtoull getpwnam ftello)
151 AC_CHECK_MEMBERS([struct timeval.tv_sec])
153 dnl In case we aren't given a working stdint.h, we'll need to grow our own.
156 AC_CHECK_SIZEOF(int8_t)
157 AC_CHECK_SIZEOF(int16_t)
158 AC_CHECK_SIZEOF(int32_t)
159 AC_CHECK_SIZEOF(int64_t)
160 AC_CHECK_SIZEOF(uint8_t)
161 AC_CHECK_SIZEOF(uint16_t)
162 AC_CHECK_SIZEOF(uint32_t)
163 AC_CHECK_SIZEOF(uint64_t)
164 AC_CHECK_SIZEOF(intptr_t)
165 AC_CHECK_SIZEOF(uintptr_t)
167 dnl AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, intptr_t, uintptr_t])
169 AC_CHECK_SIZEOF(char)
170 AC_CHECK_SIZEOF(short)
172 AC_CHECK_SIZEOF(long)
173 AC_CHECK_SIZEOF(long long)
174 AC_CHECK_SIZEOF(__int64)
175 AC_CHECK_SIZEOF(void *)
177 # Now, let's see about alignment requirements. On some platforms, we override
181 tor_cv_unaligned_ok=no
184 AC_CACHE_CHECK([whether unaligned int access is allowed], tor_cv_unaligned_ok,
185 [AC_RUN_IFELSE([AC_LANG_SOURCE(
186 [[int main () { char s[] = "A\x00\x00\x00\x00\x00\x00\x00";
187 return *(int*)(&s[1]); }]])],
188 [tor_cv_unaligned_ok=yes],
189 [tor_cv_unaligned_ok=no],
190 [tor_cv_unaligned_ok=cross])])
193 if test $tor_cv_unaligned_ok = yes; then
194 AC_DEFINE([UNALIGNED_INT_ACCESS_OK], 1,
195 [Define to 1 iff unaligned int access is allowed])
198 # Now make sure that NULL can be represented as zero bytes.
199 AC_CACHE_CHECK([whether memset(0) sets pointers to NULL], tor_cv_null_is_zero,
200 [AC_RUN_IFELSE([AC_LANG_SOURCE(
201 [[#include <stdlib.h>
202 int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2));
203 return memcmp(&p1,&p2,sizeof(char*))?1:0; }]])],
204 [tor_cv_null_is_zero=yes],
205 [tor_cv_null_is_zero=no],
206 [tor_cv_null_is_zero=cross])])
208 if test $tor_cv_null_is_zero = yes; then
209 AC_DEFINE([NULL_REP_IS_ZERO_BYTES], 1,
210 [Define to 1 iff memset(0) sets pointers to NULL])
213 # $prefix stores the value of the --prefix command line option, or
214 # NONE if the option wasn't set. In the case that it wasn't set, make
215 # it be the default, so that we can use it to expand directories now.
216 if test "x$prefix" = "xNONE"; then
217 prefix=$ac_default_prefix
220 # and similarly for $exec_prefix
221 if test "x$exec_prefix" = "xNONE"; then
225 CONFDIR=`eval echo $sysconfdir/tor`
227 AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
228 AC_DEFINE([CONFDIR], [], [tor's configuration directory])
230 BINDIR=`eval echo $bindir`
233 LOCALSTATEDIR=`eval echo $localstatedir`
234 AC_SUBST(LOCALSTATEDIR)
236 # Set CFLAGS _after_ all the above checks, since our warnings are stricter
237 # than autoconf's macros like.
238 CFLAGS="$CFLAGS -Wall -g -O2"
239 # Add some more warnings which we use in the cvs version but not in the
240 # released versions. (Some relevant gcc versions can't handle these.)
241 #CFLAGS="$CFLAGS -W -Wno-unused-parameter -Wfloat-equal -Wundef -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -Wredundant-decls"
242 # Add these in when you feel like fun.
243 #CFLAGS="$CFLAGS -Wbad-function-cast -Werror -Wdeclaration-after-statement"
245 echo "confdir: $CONFDIR"
247 AC_OUTPUT(Makefile tor.spec contrib/tor.sh contrib/torctl contrib/torify contrib/Makefile src/config/torrc.sample doc/tor.1 src/Makefile doc/Makefile doc/design-paper/Makefile src/config/Makefile src/common/Makefile src/or/Makefile src/win32/Makefile src/tools/Makefile)
249 if test -x /usr/bin/perl && test -x ./contrib/updateVersions.pl ; then
250 ./contrib/updateVersions.pl