summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adler <fork@madler.net>2022-10-06 01:03:18 -0700
committerMark Adler <fork@madler.net>2022-10-06 01:03:18 -0700
commit095da07753035a2b80654553e1cad92d1dee1481 (patch)
tree84a77bac096eb7368c32ae32f409fad2fc143c23
parentcc8d08c21ec7211bd844eec50bb6d042c59d9426 (diff)
downloadzlib-095da07753035a2b80654553e1cad92d1dee1481.tar.gz
Remove -pedantic from configure -w compile options.
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index fbaf253..545664a 100755
--- a/configure
+++ b/configure
@@ -205,9 +205,9 @@ if test "$gcc" -eq 1 && ($cc -c $test.c) >> configure.log 2>&1; then
fi
if test "$warn" -eq 1; then
if test "$zconst" -eq 1; then
- CFLAGS="${CFLAGS} -Wall -Wextra -Wcast-qual -pedantic -DZLIB_CONST"
+ CFLAGS="${CFLAGS} -Wall -Wextra -Wcast-qual -DZLIB_CONST"
else
- CFLAGS="${CFLAGS} -Wall -Wextra -pedantic"
+ CFLAGS="${CFLAGS} -Wall -Wextra"
fi
fi
if test $sanitize -eq 1; then