diff options
author | simonb <simonb> | 2006-04-24 14:29:21 (GMT) |
---|---|---|
committer | simonb <simonb> | 2006-04-24 14:29:21 (GMT) |
commit | acf4326f3cc3451aaf874b0b0777d69be5834e57 (patch) | |
tree | 8abf3c4158ece9c97c3764d7eb4eb9e1aa53bf84 /configure.in | |
parent | f6a072430d4de159e229d6172adc5ba5ae985512 (diff) | |
download | fluxbox-acf4326f3cc3451aaf874b0b0777d69be5834e57.zip fluxbox-acf4326f3cc3451aaf874b0b0777d69be5834e57.tar.bz2 |
Use -Wall when --enable-debug and some warning fixes
+ thanks Jonas Koelker
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 5f6d4f0..5659ef6 100644 --- a/configure.in +++ b/configure.in | |||
@@ -320,7 +320,7 @@ AC_ARG_ENABLE(debug, | |||
320 | [ --enable-debug include verbose debugging code [default=no]], | 320 | [ --enable-debug include verbose debugging code [default=no]], |
321 | if test x$enableval = "xyes"; then | 321 | if test x$enableval = "xyes"; then |
322 | AC_MSG_RESULT([yes]) | 322 | AC_MSG_RESULT([yes]) |
323 | DEBUG="-DDEBUG" | 323 | DEBUG="-DDEBUG -Wall" |
324 | else | 324 | else |
325 | AC_MSG_RESULT([no]) | 325 | AC_MSG_RESULT([no]) |
326 | fi, | 326 | fi, |