summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2013-10-08 20:12:18 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2013-10-08 20:12:18 +0100
commitde5e0c8655a2409814211415e086868be94031a8 (patch)
tree11617a5513eb2a04a8d7d28f67931c7ef1dbbb92 /Makefile.in
parent738cc36aabb80c8a0abbc22147f39cbe3cb13915 (diff)
downloadswig-de5e0c8655a2409814211415e086868be94031a8.tar.gz
C++11 testing moved to a configure option
Use './configure --enable-cpp11-testing' to enable the C++11 test. Off by default for now.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index c6259916b..377086231 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -22,6 +22,7 @@ TARGET = $(TARGET_NOEXE)@EXEEXT@
SOURCE = Source
CCACHE = CCache
DOCS = Doc/Manual
+HAVE_CXX11_COMPILER = @HAVE_CXX11_COMPILER@
swig: libfiles source ccache
@@ -240,7 +241,7 @@ check-%-test-suite:
echo warning: cannot $(ACTION) $* test-suite "(no dir $$dir)";\
else \
echo $(ACTION)ing $* test-suite; \
- (cd $$dir && $(MAKE) -k -s $(ACTION)) \
+ (cd $$dir && $(MAKE) -k -s $(ACTION) HAVE_CXX11_COMPILER=$(HAVE_CXX11_COMPILER)) \
|| passed=false; \
fi; \
test $$passed = true