aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/makefile
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2017-03-09 18:10:09 +1100
committerNeil <nyamatongwe@gmail.com>2017-03-09 18:10:09 +1100
commit050a6e3efd23b01a86e1c14a9b87e6ba5394db21 (patch)
treeaa1851a0c46016045ec17d52b7674e9b38a804ee /win32/makefile
parent43cd19e34362bb637d4deb7677c835f00d82766b (diff)
downloadscintilla-mirror-050a6e3efd23b01a86e1c14a9b87e6ba5394db21.tar.gz
Drop support for Windows NT 4 by statically linking to system APIs that are
only available from Windows 2000 and later.
Diffstat (limited to 'win32/makefile')
-rw-r--r--win32/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile
index 216feae3b..22819c4f0 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -33,7 +33,7 @@ vpath %.h ../src ../include ../lexlib
vpath %.cxx ../src ../lexlib ../lexers
LDFLAGS=-shared -static -mwindows $(LDMINGW)
-LIBS=-lgdi32 -luser32 -limm32 -lole32 -luuid -loleaut32 $(LIBSMINGW)
+LIBS=-lgdi32 -luser32 -limm32 -lole32 -luuid -loleaut32 -lmsimg32 $(LIBSMINGW)
# Add -MMD to get dependencies
INCLUDEDIRS=-I ../include -I ../src -I../lexlib