summaryrefslogtreecommitdiffstats
path: root/old-configure
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-04 18:22:49 +0200
committerwm4 <wm4@nowhere>2014-04-04 18:35:30 +0200
commitdad50c379c59f4b35daebe0db7f820f4eba5d5f3 (patch)
treed64efdb3e313f45df4ded57c227f516fbb6ea553 /old-configure
parent60e24fa8422a580e5a21f5e9e181323beef7cd8c (diff)
downloadmpv-dad50c379c59f4b35daebe0db7f820f4eba5d5f3.tar.bz2
mpv-dad50c379c59f4b35daebe0db7f820f4eba5d5f3.tar.xz
build: add -Wempty-body to compiler flags
Warns against "if(0);" but not "if(0){}" - perfect for our purposes.
Diffstat (limited to 'old-configure')
-rwxr-xr-xold-configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/old-configure b/old-configure
index db76f2123c..d8e675b7dc 100755
--- a/old-configure
+++ b/old-configure
@@ -1145,14 +1145,14 @@ if test -z "$CFLAGS" ; then
WARNFLAGS="-wd167 -wd556 -wd144"
elif test "$cc_vendor" = "clang"; then
CFLAGS="$_opt $_debug $_pipe"
- WARNFLAGS="-Wall -Wno-switch -Wno-logical-op-parentheses -Wpointer-arith -Wundef -Wno-pointer-sign -Wmissing-prototypes -Wshadow"
+ WARNFLAGS="-Wall -Wno-switch -Wno-logical-op-parentheses -Wpointer-arith -Wundef -Wno-pointer-sign -Wmissing-prototypes -Wshadow -Wempty-body"
ERRORFLAGS="-Werror=implicit-function-declaration -Wno-error=deprecated-declarations -Wno-error=unused-function"
elif test "$cc_vendor" != "gnu" ; then
CFLAGS="$_opt $_debug $_pipe"
else
CFLAGS="$_opt $_debug $_pipe"
WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
- ERRORFLAGS="-Werror-implicit-function-declaration -Wno-error=deprecated-declarations -Wno-error=unused-function -Wshadow"
+ ERRORFLAGS="-Werror-implicit-function-declaration -Wno-error=deprecated-declarations -Wno-error=unused-function -Wshadow -Wempty-body"
extra_ldflags="$extra_ldflags"
fi
else