From 8bd1ef77ff060a7f0136e1c69e7c6bec1a2026d6 Mon Sep 17 00:00:00 2001 From: OV2 Date: Wed, 10 Oct 2012 20:41:00 +0200 Subject: [PATCH] win32: no -lSDL if HAVE_SDL!=1 --- Makefile.win | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.win b/Makefile.win index 000242afea..9977948245 100644 --- a/Makefile.win +++ b/Makefile.win @@ -228,9 +228,9 @@ $(TARGET): $(OBJ) $(JTARGET): $(JOBJ) ifeq ($(CXX_BUILD), 1) - $(Q)$(CXX) -o $@ $(JOBJ) -lSDL -ldxguid -ldinput8 -lole32 $(LDFLAGS) + $(Q)$(CXX) -o $@ $(JOBJ) -ldxguid -ldinput8 -lole32 $(LDFLAGS) else - $(Q)$(CC) -o $@ $(JOBJ) -lSDL -ldxguid -ldinput8 -lole32 $(LDFLAGS) + $(Q)$(CC) -o $@ $(JOBJ) -ldxguid -ldinput8 -lole32 $(LDFLAGS) endif @$(if $(Q), $(shell echo echo LD $@),)