diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-08-08 14:43:30 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-08-08 14:43:30 +0000 |
commit | da09efe13d0d4773df067659374a96eedff88442 (patch) | |
tree | b0d56f2ae391f3dff84a1ad4785dd48af539b761 /configure.in | |
parent | 080ab832c7a574c5bf2a7106648b59fae098685c (diff) | |
download | tor-da09efe13d0d4773df067659374a96eedff88442.tar.gz tor-da09efe13d0d4773df067659374a96eedff88442.zip |
r13953@Kushana: nickm | 2007-08-08 07:40:46 -0700
Fix osx compilation.
svn:r11065
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 5539c91d37..167c606551 100644 --- a/configure.in +++ b/configure.in @@ -13,6 +13,10 @@ if test -f /etc/redhat-release ; then CPPFLAGS="$CPPFLAGS -I/usr/kerberos/include" fi +# Not a no-op; we want to make sure that CPPFLAGS is set before we use +# the += operator on it in src/or/Makefile.am +CPPFLAGS="$CPPFLAGS -I../common" + AC_ARG_ENABLE(debug, AS_HELP_STRING(--enable-debug, compile with debugging info), [if test x$enableval = xyes; then |