Fix for issue #1647805 (detecting -fexceptions support doesn't work

with Intel compiler). Thanks to Hazael (hmaldonado) for the fix.
This commit is contained in:
Karl Waclawek 2007-05-09 13:26:48 +00:00
parent 5e0d9e6078
commit 9f2d9f234b

View File

@ -72,8 +72,8 @@ if test "$GCC" = yes ; then
dnl
OLDCFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wstrict-prototypes"
CFLAGS="$OLDCFLAGS -fexceptions"
AC_MSG_CHECKING(whether gcc accepts -fexceptions)
AC_TRY_COMPILE(,(void)1,
AC_MSG_CHECKING(whether $CC accepts -fexceptions)
AC_TRY_LINK( , ,
AC_MSG_RESULT(yes),
AC_MSG_RESULT(no); CFLAGS="$OLDCFLAGS")
CXXFLAGS=`echo "$CFLAGS" | sed 's/ -Wmissing-prototypes -Wstrict-prototypes//'`