diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-17 15:11:10 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-17 15:11:10 +0000 |
commit | f0fd71911809c1ae056e4c10e0abc2bb7e021d65 (patch) | |
tree | 962b179869542bc75aaedf81d671084d48a8dc50 | |
parent | c00784bb22ead3ea0cb416c7362d5686bdbc4afb (diff) |
Add -Wdeclaration-after-statement to CFLAGS if available to ensure people
won't miss this requirement and thus don't have to fix it later.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19423 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7086,6 +7086,10 @@ else echores "no" fi +if cc_check -Wdeclaration-after-statement ; then + CFLAGS="-Wdeclaration-after-statement $CFLAGS" +fi + echocheck "ftello()" # if we don't have ftello use the osdep/ compatibility module cat > $TMPC << EOF |