From: Amos Jeffries Date: Tue, 14 May 2013 01:58:51 +0000 (-0600) Subject: Windwos: MinGW supports stdc++11. Remove exclusion. X-Git-Tag: SQUID_3_4_0_1~146 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb165250276bf3bee5ce638e48d56baf218e7f9b;p=thirdparty%2Fsquid.git Windwos: MinGW supports stdc++11. Remove exclusion. --- diff --git a/configure.ac b/configure.ac index c314a03e4b..3b638ca910 100644 --- a/configure.ac +++ b/configure.ac @@ -60,8 +60,7 @@ fi # Check for C++0x compiler support AX_CXX_COMPILE_STDCXX_0X -if test "x$ax_cv_cxx_compile_cxx0x_cxx" = "xyes" -a \ - "x$squid_host_os" != "xmingw" ; then +if test "x$ax_cv_cxx_compile_cxx0x_cxx" = "xyes" ; then #BUG 3613: when clang -std=c++0x is used, it activates a "strict mode" # in the system libraries, which makes some c99 methods unavailable # (e.g. strtoll), yet configure detects them as avilable.