diff options
author | Brent Cook <bcook@openbsd.org> | 2014-07-11 07:30:05 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-07-11 07:30:05 -0500 |
commit | 0137439f5d1f73401a0715a39859dfb97e16d750 (patch) | |
tree | bca64c7a59f7ddea854c23a77cb68c343497d63a | |
parent | 1e71b7321589b7912066940aa62100aa250c9515 (diff) | |
download | portable-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.ac | 2 |
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]) | |||
6 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) | 6 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
7 | 7 | ||
8 | AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS") | 8 | AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS") |
9 | CFLAGS="$CFLAGS -Wall -Werror -std=c99 -g -Wno-pointer-sign" | 9 | CFLAGS="$CFLAGS -Wall -std=c99 -g -Wno-pointer-sign" |
10 | 10 | ||
11 | case $target_os in | 11 | case $target_os in |
12 | *darwin*) | 12 | *darwin*) |