3055b2a
--- /home/paul/BUILD/socat-1.7.1.1/configure.in	2009-05-06 14:09:03.000000000 -0400
3055b2a
+++ configure.in	2009-05-09 09:29:03.000000000 -0400
3055b2a
@@ -84,7 +84,7 @@ AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB
3055b2a
 dnl Check for hstrerror prototype
3055b2a
 AC_MSG_CHECKING(for hstrerror prototype)
3055b2a
 AC_CACHE_VAL(sc_cv_have_prototype_hstrerror,
3055b2a
-[CFLAGS1="$CFLAGS"; CFLAGS="-Werror -O0 $CFLAGS1";
3055b2a
+[CFLAGS1="$CFLAGS"; CFLAGS="-Werror -O0 $(echo "$CFLAGS1" | sed -e 's@-Wall\>@@g')";
3055b2a
  AC_TRY_COMPILE([#include <netdb.h>],[hstrerror();],
3055b2a
  [sc_cv_have_prototype_hstrerror=no],
3055b2a
  [sc_cv_have_prototype_hstrerror=yes]);
3055b2a
@@ -1296,7 +1296,7 @@ dnl   output values: 1..short, 2..unsign
3055b2a
 dnl                  5..long, 6..u-long; others not yet supported
3055b2a
 define(AC_BASIC_TYPE,[
3055b2a
 AC_CACHE_CHECK(for equivalent simple type of $2, $4,
3055b2a
-[CFLAGS1="$CFLAGS"; CFLAGS="-Werror -O0 $CFLAGS1"
3055b2a
+[CFLAGS1="$CFLAGS"; CFLAGS="-Werror -O0 $(echo "$CFLAGS1" | sed -e 's@-Wall\>@@g')"
3055b2a
  AC_TRY_COMPILE([$1],[$2 u; short v; &u==&v;],
3055b2a
  [$4="1 /* short */"],
3055b2a
  [AC_TRY_COMPILE([$1],[$2 u; unsigned short v; &u==&v;],
3055b2a
@@ -1328,7 +1328,7 @@ dnl arg4: output variable, values see AC
3055b2a
 dnl arg5: cache variable (might be constructed automatically)
3055b2a
 define(AC_TYPEOF_COMPONENT,[
3055b2a
 AC_CACHE_CHECK(for basic type of $2.$3, $5,
3055b2a
-[CFLAGS1="$CFLAGS"; CFLAGS="-Werror -O0 $CFLAGS1"
3055b2a
+[CFLAGS1="$CFLAGS"; CFLAGS="-Werror -O0 $(echo "$CFLAGS1" | sed -e 's@-Wall\>@@g')"
3055b2a
 AC_TRY_COMPILE([$1],[$2 u;short v; &u.$3==&v;],
3055b2a
 [$5="1 /* short */"],
3055b2a
 [AC_TRY_COMPILE([$1],[$2 u; unsigned short v; &u.$3==&v;],