summaryrefslogtreecommitdiff
path: root/Examples
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2021-03-20 00:23:25 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2021-03-20 00:53:13 +0000
commit82fb0540ca253e14f479ffcb4b94b5ee31b30fea (patch)
treefcc2aefc74427ade2a032aafc3d82bfd4eea176e /Examples
parent67cfaf5a8037be7018c59b62be4d5c9d37d9b6b1 (diff)
downloadswig-82fb0540ca253e14f479ffcb4b94b5ee31b30fea.tar.gz
Modernise C++11 compiler support detection in autotools
Replace AX_CXX_COMPILE_STDCXX_11 with AX_CXX_COMPILE_STDCXX from autoconf archive.
Diffstat (limited to 'Examples')
-rw-r--r--Examples/test-suite/common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/test-suite/common.mk b/Examples/test-suite/common.mk
index 414bada62..de65e7b9f 100644
--- a/Examples/test-suite/common.mk
+++ b/Examples/test-suite/common.mk
@@ -676,7 +676,7 @@ ifndef SKIP_CPP_STD_CASES
CPP_TEST_CASES += ${CPP_STD_TEST_CASES}
endif
-ifneq (,$(HAVE_CXX11_COMPILER))
+ifneq (,$(HAVE_CXX11))
CPP_TEST_CASES += $(CPP11_TEST_CASES)
endif