diff options
author | David Robillard <d@drobilla.net> | 2006-09-06 22:53:24 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-09-06 22:53:24 +0000 |
commit | f514f3a017029bcc68fab25c8b84be4e6122709d (patch) | |
tree | 8f9cc587b4fec4e4eeae4d268413f633e7069a03 /configure.ac | |
parent | 0e34ca14de840baaccadce1014bf4ae1a1ab8980 (diff) | |
download | patchage-f514f3a017029bcc68fab25c8b84be4e6122709d.tar.gz patchage-f514f3a017029bcc68fab25c8b84be4e6122709d.tar.bz2 patchage-f514f3a017029bcc68fab25c8b84be4e6122709d.zip |
Fixed -O flags for debug builds
git-svn-id: http://svn.drobilla.net/lad/patchage@117 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f905467..8a68bc7 100644 --- a/configure.ac +++ b/configure.ac @@ -74,7 +74,7 @@ AC_ARG_ENABLE(debug, [debug="$enableval"]) if test "$debug" = "yes"; then # Useless POS gnomecanvasmm doesn't build w/ -pedantic - CFLAGS="-O1 -g -DDEBUG" + CFLAGS="-O0 -g -DDEBUG" CXXFLAGS="$CFLAGS" else CFLAGS="$CFLAGS -DNDEBUG" |