diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-08-26 23:36:48 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-08-26 23:36:48 +0000 |
commit | e19889ff5b55be991302e11dae942c9b2b8450fb (patch) | |
tree | 62a9dd220a8069b41cd6906b9928386d2ab57954 /configure.in | |
parent | 0ca3a710da49bf6dfa027ed36bd2df93ea3fdc82 (diff) | |
download | tinyproxy-e19889ff5b55be991302e11dae942c9b2b8450fb.tar.gz tinyproxy-e19889ff5b55be991302e11dae942c9b2b8450fb.zip |
Added the NDEBUG define in the optimized builds.
Diffstat (limited to '')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 37a9b8f..872383f 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $Id: configure.in,v 1.16 2001-08-26 21:22:09 rjkaes Exp $ +dnl $Id: configure.in,v 1.17 2001-08-26 23:36:48 rjkaes Exp $ dnl Devlopers, please strive to achieve this order: dnl @@ -212,6 +212,7 @@ if test "$enable_debug" = "yes" ; then YFLAGS="-v -d" else dnl No debugging information, include the optimizations + CFLAGS="-DNDEBUG $CFLAGS" YFLAGS="-d" fi |