aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2014-07-11 07:30:05 -0500
committerBrent Cook <bcook@openbsd.org>2014-07-11 07:30:05 -0500
commit0137439f5d1f73401a0715a39859dfb97e16d750 (patch)
treebca64c7a59f7ddea854c23a77cb68c343497d63a
parent1e71b7321589b7912066940aa62100aa250c9515 (diff)
downloadportable-0137439f5d1f73401a0715a39859dfb97e16d750.tar.gz
portable-0137439f5d1f73401a0715a39859dfb97e16d750.tar.bz2
portable-0137439f5d1f73401a0715a39859dfb97e16d750.zip
remove unconditional -Werror
Allow warnings to be reported without failing the entire build. ok beck@
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 391e6e2..a0ddc84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,7 +6,7 @@ AC_CONFIG_MACRO_DIR([m4])
6m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) 6m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
7 7
8AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS") 8AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS")
9CFLAGS="$CFLAGS -Wall -Werror -std=c99 -g -Wno-pointer-sign" 9CFLAGS="$CFLAGS -Wall -std=c99 -g -Wno-pointer-sign"
10 10
11case $target_os in 11case $target_os in
12 *darwin*) 12 *darwin*)