about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorRichard Nyberg <rnyberg@murmeldjur.se>2008-12-22 23:34:39 +0100
committerRichard Nyberg <rnyberg@murmeldjur.se>2008-12-22 23:34:39 +0100
commit19b7e785f58c858ac9f849cb16078e05a0aa447a (patch)
tree930a9a6c4263b514ecd2a5dc4149881aa4575b01 /configure.ac
parent340fbf47377916c92dea4cd97e132dd951179060 (diff)
downloadbtpd-19b7e785f58c858ac9f849cb16078e05a0aa447a.tar.gz
btpd-19b7e785f58c858ac9f849cb16078e05a0aa447a.zip
Turn off warnings for pointer sign mismatches.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index aef2fed..9a10faa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,10 +25,10 @@ AC_ARG_WITH(warn,
     no)
 	;;
     all)
-	CFLAGS="$CFLAGS -Wall"
+	CFLAGS="$CFLAGS -Wall -Wno-pointer-sign"
 	;;
     allerr)
-	CFLAGS="$CFLAGS -Wall -Werror"
+	CFLAGS="$CFLAGS -Wall -Wno-pointer-sign -Werror"
 	;;
     *)
 	echo "Warning preset \"$withval\" not recognized. See --help."