summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-09-27 10:57:20 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-09-27 10:57:20 +0200
commit092f33d6bf5bc46da6aeb27b3f993b464a4811cd (patch)
treec87e55430d8bbbd89516b0dc28e81fa3ae2ebae6 /m4
parent09a13a1c0109c799abe66e4f89ad1a9d642a64de (diff)
downloadgnurl-092f33d6bf5bc46da6aeb27b3f993b464a4811cd.tar.gz
gnurl-092f33d6bf5bc46da6aeb27b3f993b464a4811cd.tar.bz2
gnurl-092f33d6bf5bc46da6aeb27b3f993b464a4811cd.zip
configure: use icc options without space
The latest version(s) of the icc compiler no longer accept the extra space in the -we (warning enable), -wd (warning disable), etc. Reported-by: Elmira A Semenova Bug: http://curl.haxx.se/mail/lib-2013-09/0182.html
Diffstat (limited to 'm4')
-rw-r--r--m4/curl-compilers.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4
index 59135ef3d..f1a634bff 100644
--- a/m4/curl-compilers.m4
+++ b/m4/curl-compilers.m4
@@ -615,12 +615,12 @@ AC_DEFUN([CURL_SET_COMPILER_BASIC_OPTS], [
dnl #147: declaration is incompatible with 'previous one'
dnl #165: too few arguments in function call
dnl #266: function declared implicitly
- tmp_CPPFLAGS="$tmp_CPPFLAGS -we 140,147,165,266"
+ tmp_CPPFLAGS="$tmp_CPPFLAGS -we140,147,165,266"
dnl Disable some remarks
dnl #279: controlling expression is constant
dnl #981: operands are evaluated in unspecified order
dnl #1469: "cc" clobber ignored
- tmp_CPPFLAGS="$tmp_CPPFLAGS -wd 279,981,1469"
+ tmp_CPPFLAGS="$tmp_CPPFLAGS -wd279,981,1469"
;;
#
INTEL_WINDOWS_C)