Turn off C2X warning about deprecated K&R function syntax.

This is a temporary workaround before excising the K&R prototypes.
diff --git a/configure b/configure
index fa4d5da..128b1be 100755
--- a/configure
+++ b/configure
@@ -194,8 +194,8 @@
 if test "$gcc" -eq 1 && ($cc -c $test.c) >> configure.log 2>&1; then
   echo ... using gcc >> configure.log
   CC="$cc"
-  CFLAGS="${CFLAGS--O3}"
-  SFLAGS="${CFLAGS--O3} -fPIC"
+  CFLAGS="${CFLAGS--O3} -Wno-deprecated-non-prototype"
+  SFLAGS="${CFLAGS--O3} -Wno-deprecated-non-prototype -fPIC"
   if test "$ARCHS"; then
     CFLAGS="${CFLAGS} ${ARCHS}"
     LDFLAGS="${LDFLAGS} ${ARCHS}"