mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
[muparser] Switch autoconf build to C++11
This will enable testing via muparser's test suite while incorporating C++11 features.
This commit is contained in:
parent
38a2e0218d
commit
dac13d51fa
1 changed files with 3 additions and 3 deletions
6
muparser-2.2.5/Makefile.in
vendored
6
muparser-2.2.5/Makefile.in
vendored
|
@ -43,7 +43,7 @@ LDFLAGS = @LDFLAGS@
|
|||
|
||||
DESTDIR =
|
||||
MUPARSER_LIB_CXXFLAGS = $(____DEBUG) $(____SHARED) $(____SHARED_0) \
|
||||
-I$(srcdir)/include $(CPPFLAGS) $(CXXFLAGS)
|
||||
-I$(srcdir)/include $(CPPFLAGS) $(CXXFLAGS) -std=c++11
|
||||
MUPARSER_LIB_OBJECTS = \
|
||||
muParser_lib_muParser.o \
|
||||
muParser_lib_muParserBase.o \
|
||||
|
@ -68,7 +68,7 @@ MUPARSER_LIB_HEADERS = \
|
|||
include/muParserToken.h \
|
||||
include/muParserTokenReader.h
|
||||
MUPARSER_DLL_CXXFLAGS = $(____DEBUG) $(____SHARED) $(____SHARED_0) \
|
||||
-I$(srcdir)/include $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS)
|
||||
-I$(srcdir)/include $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) -std=c++11
|
||||
MUPARSER_DLL_OBJECTS = \
|
||||
muParser_dll_muParser.o \
|
||||
muParser_dll_muParserBase.o \
|
||||
|
@ -92,7 +92,7 @@ MUPARSER_DLL_HEADERS = \
|
|||
include/muParserTest.h \
|
||||
include/muParserToken.h \
|
||||
include/muParserTokenReader.h
|
||||
EXAMPLE1_CXXFLAGS = $(____DEBUG) -I$(srcdir)/include $(CPPFLAGS) $(CXXFLAGS)
|
||||
EXAMPLE1_CXXFLAGS = $(____DEBUG) -I$(srcdir)/include $(CPPFLAGS) $(CXXFLAGS) -std=c++11
|
||||
EXAMPLE1_OBJECTS = \
|
||||
example1_example1.o
|
||||
|
||||
|
|
Loading…
Reference in a new issue