diff options
author | 2012-06-28 16:04:38 -0400 | |
---|---|---|
committer | 2012-06-28 16:04:38 -0400 | |
commit | eb0419f911aef80a8feae08195ca82180e6b7973 (patch) | |
tree | 2d848d432c9a4b9391f2ab6f800af6da548de35a /src | |
parent | 054d8aaae69930a7c33de24dc96579ea27bc2c6f (diff) | |
download | textadept-eb0419f911aef80a8feae08195ca82180e6b7973.tar.gz textadept-eb0419f911aef80a8feae08195ca82180e6b7973.zip |
Disable font locking in Scintilla; src/Makefile
Since Textadept is not multi-threaded, there no need for font locking. This was
never available in Windows anyway with no issues being reported.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile index 3ea13922..d0851c51 100644 --- a/src/Makefile +++ b/src/Makefile @@ -76,11 +76,9 @@ endif # Scintilla. sci_flags = -pedantic -Os $(plat_flag) -DSCI_LEXER -DNDEBUG \ - -Iscintilla/include -Iscintilla/src -Iscintilla/lexlib -Wall \ - -Wno-missing-braces -Wno-char-subscripts -Wno-long-long -ifeq (win32, $(MAKECMDGOALS)) - sci_flags += -DG_THREADS_IMPL_NONE -endif + -DG_THREADS_IMPL_NONE -Iscintilla/include -Iscintilla/src \ + -Iscintilla/lexlib -Wall -Wno-missing-braces -Wno-char-subscripts \ + -Wno-long-long scintilla_objs = AutoComplete.o CallTip.o Catalogue.o CellBuffer.o \ CharClassify.o ContractionState.o Decoration.o Document.o \ |