MinGW supports c++11 but in ANSI-strict way. Squid code still contains
non-standard strcasecmp strncasecmp and possibly other functions.
This is a iCelero Project.
# Check for C++0x compiler support
AX_CXX_COMPILE_STDCXX_0X
-if test "x$ax_cv_cxx_compile_cxx0x_cxx" = "xyes" ; then
+if test "x$ax_cv_cxx_compile_cxx0x_cxx" = "xyes" -a \
+ "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.