From a975a92909c2096453650cee632be0305ba32999 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Fri, 21 Nov 2014 10:26:17 -0800 Subject: [PATCH] Revert r12298 workaround for Bug 3613 Now that Squid is starting to utilize C++11 features we need to enable them in all compilers. If the problem still exists then we need to find a better solution to bug 3613. --- configure.ac | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index bdeb91f193..818d065236 100644 --- a/configure.ac +++ b/configure.ac @@ -93,16 +93,7 @@ if test "x$squid_host_os" = "solaris" -a "x$GCC" != "x" ; then fi # Check for C++11 compiler support -if test "x$squid_host_os" != "xmingw" ; 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. - case "$CXX" in - *clang++*) ;; #do nothing - *) - AX_CXX_COMPILE_STDCXX_11([noext],[optional]) - esac -fi +AX_CXX_COMPILE_STDCXX_11([noext],[optional]) # test for programs AC_PROG_RANLIB -- 2.47.2