blob: c186e2cdb6d0ba252d3c787d662e870d58de512e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Author: Holger Jaekel <holger.jaekel@gmx.de>
Summary: treat compiler warnings as warnings, not errors
----
--- a/configure.ac
+++ b/configure.ac
@@ -83,7 +83,7 @@
AC_SUBST(SQL)
AC_SUBST(LFLAGS)
-CFLAGS="$CFLAGS -Wall -Werror"
+CFLAGS="$CFLAGS -Wall"
LOCALE_T=locale_t
AS_CASE([$host],
[*mingw*], [LDFLAGS="$LDFLAGS -no-undefined" LOCALE_T=_locale_t], [])
|