Add equivalent of -Wno-pointer-sign for icc

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23708 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2007-07-02 22:02:59 +00:00
parent 437e32353f
commit 80afc9360a
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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