From 7e85d78826eecba6a92665c3add6aea2b584ebe6 Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 30 Jan 2009 21:45:54 +0000 Subject: [PATCH] Add -Wundef to CFLAGS. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28393 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 72a14613a8..21fb236247 100755 --- a/configure +++ b/configure @@ -7884,6 +7884,7 @@ if test "$cc_vendor" = "gnu" ; then cc_check -Wdeclaration-after-statement && CFLAGS="-Wdeclaration-after-statement $CFLAGS" cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS" cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS" + cc_check -Wundef && CFLAGS="-Wundef $CFLAGS" else CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS" fi