]> granicus.if.org Git - curl/commitdiff
icc adjustments
authorYang Tse <yangsita@gmail.com>
Wed, 10 Sep 2008 17:35:22 +0000 (17:35 +0000)
committerYang Tse <yangsita@gmail.com>
Wed, 10 Sep 2008 17:35:22 +0000 (17:35 +0000)
ares/configure.ac
configure.ac

index 9c5c426a0d24707dd38f52d87e108dfbd4cfa47c..745a39cb9af3ecdf06f64aa2f406cb30479851f1 100644 (file)
@@ -227,17 +227,17 @@ CURL_CHECK_DEF([__INTEL_COMPILER], [], [silent])
 if test "$curl_cv_have_def___INTEL_COMPILER" = "yes"; then
   AC_MSG_RESULT([yes])
   dnl Select strict ANSI C conformance
-  CFLAGS="$CFLAGS -strict-ansi"
+  CPPFLAGS="$CPPFLAGS -strict-ansi"
   dnl Select ANSI C dialect
-  CFLAGS="$CFLAGS -std=c89"
-  dnl Disable use of ANSI C aliasing rules in optimizations
-  CFLAGS="$CFLAGS -no-ansi-alias"
+  CPPFLAGS="$CPPFLAGS -std=c89 -D__STRICT_ANSI__"
   dnl Change some warnings into errors
   dnl #140: too many arguments in function call
   dnl #147: declaration is incompatible with 'previous one'
   dnl #165: too few arguments in function call
   dnl #266: function declared implicitly
-  CFLAGS="$CFLAGS -we 140,147,165,266"
+  CPPFLAGS="$CPPFLAGS -we 140,147,165,266"
+  dnl Disable use of ANSI C aliasing rules in optimizations
+  CFLAGS="$CFLAGS -no-ansi-alias"
 else
   AC_MSG_RESULT([no])
 fi
index c396e9508c87cdf46ed40315ab071aff23913f69..89ea54afb5f5633efed1bfc83f806b79e1ac9d12 100644 (file)
@@ -301,17 +301,17 @@ CURL_CHECK_DEF([__INTEL_COMPILER], [], [silent])
 if test "$curl_cv_have_def___INTEL_COMPILER" = "yes"; then
   AC_MSG_RESULT([yes])
   dnl Select strict ANSI C conformance
-  CFLAGS="$CFLAGS -strict-ansi"
+  CPPFLAGS="$CPPFLAGS -strict-ansi"
   dnl Select ANSI C dialect
-  CFLAGS="$CFLAGS -std=c89"
-  dnl Disable use of ANSI C aliasing rules in optimizations
-  CFLAGS="$CFLAGS -no-ansi-alias"
+  CPPFLAGS="$CPPFLAGS -std=c89 -D__STRICT_ANSI__"
   dnl Change some warnings into errors
   dnl #140: too many arguments in function call
   dnl #147: declaration is incompatible with 'previous one'
   dnl #165: too few arguments in function call
   dnl #266: function declared implicitly
-  CFLAGS="$CFLAGS -we 140,147,165,266"
+  CPPFLAGS="$CPPFLAGS -we 140,147,165,266"
+  dnl Disable use of ANSI C aliasing rules in optimizations
+  CFLAGS="$CFLAGS -no-ansi-alias"
 else
   AC_MSG_RESULT([no])
 fi