From: Arun Persaud Date: Tue, 17 Apr 2012 02:08:10 +0000 (-0700) Subject: enable -Wall -Wno-parentheses for all compilers that understand them X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=commitdiff_plain;h=20786e86c5d91faa735c1534df1cafa53746d5f8 enable -Wall -Wno-parentheses for all compilers that understand them --- diff --git a/configure.ac b/configure.ac index ddd71d3..119f002 100644 --- a/configure.ac +++ b/configure.ac @@ -110,6 +110,15 @@ AC_CHECK_FUNC(setlocale, [], AC_CHECK_LIB(seq, getpseudotty) +dnl | add compiler warnings only if compiler understands them +AC_MSG_CHECKING(whether compiler understands -Wall -Wno-parentheses) +SAVE_CFLAGS="$CFLAGS" +CFLAGS="$CFLAGS -Wall -Wno-parentheses" +AC_TRY_COMPILE([],[], + AC_MSG_RESULT(yes), + AC_MSG_RESULT(no) + CFLAGS="$SAVE_CFLAGS") + dnl | check for X-libraries AC_PATH_XTRA