summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorcehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-13 08:30:53 +0000
committercehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-13 08:30:53 +0000
commit39fc76f396f5fac2b974f45966f65a332f743854 (patch)
treed4cca34dc3bf06824365aa8de71812896ff64b90 /configure
parentf53fef1302809a03df004e371315261a6b22465e (diff)
downloadmpv-39fc76f396f5fac2b974f45966f65a332f743854.tar.bz2
mpv-39fc76f396f5fac2b974f45966f65a332f743854.tar.xz
Remove additional warnings when using icc - similar to -Wno-pointer-sign.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24051 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index cdde0d8754..d2e177e587 100755
--- a/configure
+++ b/configure
@@ -2290,7 +2290,7 @@ if test "$_profile" != "" || test "$_debug" != "" ; then
_install_strip=
elif test -z "$CFLAGS" ; then
if test "$cc_vendor" = "intel" ; then
- CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167"
+ CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
elif test "$cc_vendor" != "gnu" ; then
CFLAGS="-O2 $_march $_mcpu $_pipe"
else