aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2014-07-11 21:07:48 -0500
committerBrent Cook <bcook@openbsd.org>2014-07-11 21:07:48 -0500
commit6017202b77e4483b6ac5db7bb48932f2e7411245 (patch)
tree06e26915725553694a91b6c92ff8f6d5befb3772
parent058914fea2b5791f8f98b8628b290d0121b3f152 (diff)
downloadportable-6017202b77e4483b6ac5db7bb48932f2e7411245.tar.gz
portable-6017202b77e4483b6ac5db7bb48932f2e7411245.tar.bz2
portable-6017202b77e4483b6ac5db7bb48932f2e7411245.zip
disable unconditional -Wno-pointer-sign
ok beck@
-rw-r--r--configure.ac.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac.tpl b/configure.ac.tpl
index e89b86e..c565485 100644
--- a/configure.ac.tpl
+++ b/configure.ac.tpl
@@ -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 -std=c99 -g -Wno-pointer-sign" 9CFLAGS="$CFLAGS -Wall -std=c99 -g"
10 10
11case $target_os in 11case $target_os in
12 *darwin*) 12 *darwin*)