diff options
author | Neil <nyamatongwe@gmail.com> | 2016-09-10 13:29:15 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2016-09-10 13:29:15 +1000 |
commit | bd923ceb3fba78f13a6cd6a9650b99e176b5eddb (patch) | |
tree | 72514a274cba19eaf7a9c73bf3291bb05083171a | |
parent | 6ca40572fdf4d50e90c715e30831e7dac0ebaf7a (diff) | |
download | scintilla-mirror-bd923ceb3fba78f13a6cd6a9650b99e176b5eddb.tar.gz |
Expose NO_CXX11_REGEX in Win32 makefiles.
-rw-r--r-- | win32/makefile | 4 | ||||
-rw-r--r-- | win32/scintilla.mak | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/win32/makefile b/win32/makefile index 05d6f8f70..944af0b34 100644 --- a/win32/makefile +++ b/win32/makefile @@ -33,8 +33,8 @@ endif CXXBASEFLAGS=--std=gnu++0x -Wall -pedantic $(INCLUDEDIRS) $(D2DFLAGS) -ifdef CXX11_REGEX -REFLAGS=-DCXX11_REGEX +ifdef NO_CXX11_REGEX +REFLAGS=-DNO_CXX11_REGEX endif ifdef DEBUG diff --git a/win32/scintilla.mak b/win32/scintilla.mak index ad72c51c7..6a3be2564 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -45,8 +45,8 @@ CXXFLAGS=$(CXXFLAGS) -DDISABLE_D2D !MESSAGE Direct2D is not available !ENDIF -!IFDEF CXX11_REGEX -CXXFLAGS=$(CXXFLAGS) -DCXX11_REGEX +!IFDEF NO_CXX11_REGEX +CXXFLAGS=$(CXXFLAGS) -DNO_CXX11_REGEX !ENDIF !IFDEF DEBUG |