From 94c0bfffcb9b79370af3e445a813131359a806e4 Mon Sep 17 00:00:00 2001 From: "Bruce A. Mah" Date: Mon, 19 May 2014 15:22:08 -0700 Subject: Another try at portability. Don't do -Werror. While probably the best thing to do from a code hygeine standpoint, it's too painful to try to get right for now. Fixes #174 (second try). --- configure.ac | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 5bbc0dd..4650755 100644 --- a/configure.ac +++ b/configure.ac @@ -20,11 +20,9 @@ AC_PROG_RANLIB AC_PROG_LN_S AC_PROG_LIBTOOL -# Add -Wall -Werror if we are using GCC. -# We also need -Wno-deprecated-declarations, primarily because on MacOS, daemon(3) -# is deprecated starting from MacOS 10.5. +# Add -Wall if we are using GCC. if test "x$GCC" = "xyes"; then - CFLAGS="$CFLAGS -Wall -Werror -Wno-deprecated-declarations" + CFLAGS="$CFLAGS -Wall" fi # Checks for header files. -- cgit v1.2.3