From 19b7e785f58c858ac9f849cb16078e05a0aa447a Mon Sep 17 00:00:00 2001 From: Richard Nyberg Date: Mon, 22 Dec 2008 23:34:39 +0100 Subject: [PATCH] Turn off warnings for pointer sign mismatches. --- configure.ac | 4 ++-- 1 file 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."