diff options
author | Stef Walter <stef@memberwebs.com> | 2009-06-18 17:12:19 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2009-06-18 17:12:19 +0000 |
commit | 407df90ad78d83cf3666db25af71a9f534123472 (patch) | |
tree | 3fca4a2d180056ca76f0d429943865dcba042cd4 /configure.in | |
parent | a7557acb5423ea8e4c6bcce27472918c638d56f8 (diff) |
A bunch of fixes toward compilation. Finish today's work.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index a18d5de..7f1c9e6 100644 --- a/configure.in +++ b/configure.in @@ -39,7 +39,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(mod_auth_singleid, 0.1, stef@memberwebs.com) AM_INIT_AUTOMAKE(mod_auth_singleid, 0.1) -AC_CONFIG_SRCDIR([module/mod_auth_singleid.cc]) +AC_CONFIG_SRCDIR([module/mod_auth_singleid.c]) AM_CONFIG_HEADER([config.h]) # Checks for programs. @@ -115,7 +115,7 @@ AC_ARG_ENABLE(debug, [Compile binaries in debug mode])) if test "$enable_debug" = "yes"; then - CFLAGS="$CFLAGS -g -O0 -Wall" + CFLAGS="$CFLAGS -g -O0 -Wall -Werror" AC_DEFINE_UNQUOTED(_DEBUG, 1, [In debug mode]) echo "enabling debug compile mode" fi |