From 1c2608dbc66e4e6589208703b214b4d7939f6743 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 16 Jul 2012 20:18:31 +1000 Subject: Reenable building for Windows NT 4 on NT 4. --- win32/makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'win32/makefile') diff --git a/win32/makefile b/win32/makefile index c71997c65..6d2846feb 100644 --- a/win32/makefile +++ b/win32/makefile @@ -8,6 +8,15 @@ CC = g++ DEL = del /q +# Discover Windows version by running 'VER' command and parsing output +# For Windows 2000 looks like:Microsoft Windows 2000 [Version 5.00.2195] +WINVERWORDS:=$(wordlist 1,2,$(subst ., ,$(lastword $(shell ver)))) +WINVER:=$(firstword $(WINVERWORDS)).$(lastword $(WINVERWORDS)) +# Windows NT 4 does not support GetMonitorInfo +ifeq '$(WINVER)' '4.0' + VERSION_DEFINES:=-DWIN_TARGET=0x0400 +endif + COMPONENT = ../bin/Scintilla.dll LEXCOMPONENT = ../bin/SciLexer.dll LEXLIB = Lexers.a -- cgit v1.2.3