diff options
author | Roger Dingledine <arma@torproject.org> | 2003-09-14 01:44:44 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-09-14 01:44:44 +0000 |
commit | 429fb381f89fe6991837898cb0cb2cf456137edc (patch) | |
tree | 924951e6f793317b9664369eb78a9051d3acf38f /configure.in | |
parent | 05612786e47678427257136217d8aff85f687b5a (diff) | |
download | tor-429fb381f89fe6991837898cb0cb2cf456137edc.tar.gz tor-429fb381f89fe6991837898cb0cb2cf456137edc.zip |
let tor compile with tls on rh9
nick: is this the right way to do the autoconf stuff? what happens when
/usr/kerberos/include/ doesn't exist?
an alternate way is to add `pkg-config --cflags openssl` to CFLAGS, but
it seems that command only works on rh9. yay portability issues.
svn:r453
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 737a431d22..7576acdc21 100644 --- a/configure.in +++ b/configure.in @@ -1,14 +1,14 @@ AC_INIT -AM_INIT_AUTOMAKE(tor, 0.0.2pre6) +AM_INIT_AUTOMAKE(tor, 0.0.2pre8) AM_CONFIG_HEADER(orconfig.h) -CFLAGS="-Wall -O2" +CFLAGS="-Wall -O2 -I/usr/kerberos/include" AC_ARG_ENABLE(debug, [ --enable-debug compiles with debugging info], [if test x$enableval = xyes; then - CFLAGS="-Wall -g -O2" + CFLAGS="$CFLAGS -g" fi]) AC_PROG_CC |