aboutsummaryrefslogtreecommitdiff
path: root/m4/curl-compilers.m4
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-03-17 10:44:28 +0000
committerYang Tse <yangsita@gmail.com>2010-03-17 10:44:28 +0000
commitd9291eb4b8fbb591321760d7dfcc514c14ce4e35 (patch)
tree3586d2b5dc27bd552e83f624865c26bf4b287ff5 /m4/curl-compilers.m4
parent8d6e8e00e1d1795f52d1f444f331656dedddcc85 (diff)
replaced intel compiler option -no-ansi-alias with -fno-strict-aliasing
Diffstat (limited to 'm4/curl-compilers.m4')
-rw-r--r--m4/curl-compilers.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4
index c88917a69..9577bf738 100644
--- a/m4/curl-compilers.m4
+++ b/m4/curl-compilers.m4
@@ -5,7 +5,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -22,7 +22,7 @@
#***************************************************************************
# File version for 'aclocal' use. Keep it a single number.
-# serial 52
+# serial 55
dnl CURL_CHECK_COMPILER
@@ -1022,7 +1022,7 @@ AC_DEFUN([CURL_SET_COMPILER_WARNING_OPTS], [
dnl Disable using EBP register in optimizations
tmp_CFLAGS="$tmp_CFLAGS -fno-omit-frame-pointer"
dnl Disable use of ANSI C aliasing rules in optimizations
- tmp_CFLAGS="$tmp_CFLAGS -no-ansi-alias"
+ tmp_CFLAGS="$tmp_CFLAGS -fno-strict-aliasing"
dnl Value-safe optimizations on floating-point data
tmp_CFLAGS="$tmp_CFLAGS -fp-model precise"
dnl Only icc 10.0 or later