Browse Source

Turn off warnings for pointer sign mismatches.

master
Richard Nyberg 16 years ago
parent
commit
19b7e785f5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      configure.ac

+ 2
- 2
configure.ac View File

@@ -25,10 +25,10 @@ AC_ARG_WITH(warn,
no) no)
;; ;;
all) all)
CFLAGS="$CFLAGS -Wall"
CFLAGS="$CFLAGS -Wall -Wno-pointer-sign"
;; ;;
allerr) allerr)
CFLAGS="$CFLAGS -Wall -Werror"
CFLAGS="$CFLAGS -Wall -Wno-pointer-sign -Werror"
;; ;;
*) *)
echo "Warning preset \"$withval\" not recognized. See --help." echo "Warning preset \"$withval\" not recognized. See --help."


Loading…
Cancel
Save