summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-02 22:02:59 +0000
committercehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-02 22:02:59 +0000
commit80afc9360a04b7714b97d08dab6310ff8e6a364a (patch)
treeaa34c6f41c5a4c57e4e63dcb90b7ea078a034952
parent437e32353f50cd6bd5acdaeb60f47cfebc9ff87d (diff)
downloadmpv-80afc9360a04b7714b97d08dab6310ff8e6a364a.tar.bz2
mpv-80afc9360a04b7714b97d08dab6310ff8e6a364a.tar.xz
Add equivalent of -Wno-pointer-sign for icc
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23708 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index afcc017a00..2a830d8afb 100755
--- a/configure
+++ b/configure
@@ -2249,7 +2249,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"
+ CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167"
elif test "$cc_vendor" != "gnu" ; then
CFLAGS="-O2 $_march $_mcpu $_pipe"
else