scintilla: Don't build with C++11 regex support
It seems to cause some compatibility issues with some current compilers and we don't use it nor need it for extended regex support, so stay on the safe side at least for the moment.
This commit is contained in:
parent
934b47158c
commit
04296390de
@ -3,7 +3,7 @@ SUBDIRS = include
|
||||
|
||||
noinst_LTLIBRARIES=libscintilla.la
|
||||
|
||||
AM_CXXFLAGS = -DNDEBUG -DGTK -DSCI_LEXER
|
||||
AM_CXXFLAGS = -DNDEBUG -DGTK -DSCI_LEXER -DNO_CXX11_REGEX
|
||||
|
||||
LEXER_SRCS= \
|
||||
lexers/LexAbaqus.cxx \
|
||||
|
@ -32,7 +32,9 @@ vpath %.h ../src ../include ../lexlib
|
||||
vpath %.cxx ../src ../lexlib ../lexers
|
||||
|
||||
INCLUDEDIRS=-I ../include -I ../src -I ../lexlib
|
||||
CXXBASEFLAGS=-Wall -Wno-missing-braces -Wno-char-subscripts -DGTK -DSCI_LEXER $(INCLUDEDIRS) \
|
||||
CXXBASEFLAGS=-Wall -Wno-missing-braces -Wno-char-subscripts \
|
||||
-DGTK -DSCI_LEXER -DNO_CXX11_REGEX \
|
||||
$(INCLUDEDIRS) \
|
||||
-DGEANY_EXPORT_SYMBOL="__declspec(dllexport)" \
|
||||
-DGEANY_API_SYMBOL=GEANY_EXPORT_SYMBOL
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user