diff options
author | nyamatongwe <devnull@localhost> | 2000-06-24 00:32:59 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-06-24 00:32:59 +0000 |
commit | a53dd61d8a62229c0d3cc6f1afb314ae7e0fb8c3 (patch) | |
tree | 0e69634536cf7ade0a7a3976e833a3da19046275 | |
parent | 29a22c5945f44cecaf2a5613065a74dd71ae29bc (diff) | |
download | scintilla-mirror-a53dd61d8a62229c0d3cc6f1afb314ae7e0fb8c3.tar.gz |
Removed winmm library from build as this slows start a lot for some
machines.
-rw-r--r-- | win32/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile index 7e3406d99..c1f71fa1c 100644 --- a/win32/makefile +++ b/win32/makefile @@ -14,7 +14,7 @@ LEXCOMPONENT = ../bin/SciLexer.dll vpath %.h ../src ../include vpath %.cxx ../src -LDFLAGS = -lkernel32 -lgdi32 -luser32 -lwinmm -lcomdlg32 -lcomctl32 -limm32 -lole32 -luuid +LDFLAGS = -lkernel32 -lgdi32 -luser32 -lcomdlg32 -lcomctl32 -limm32 -lole32 -luuid # Add -MMD to get dependencies #CXXFLAGS = -g -pg -pedantic -Os -fno-exceptions -fvtable-thunks -fno-rtti INCLUDEDIRS=-I ../include -I ../src |