From 97521e3fdd0a20c243a54e10c6f0b054af272007 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Wed, 21 Dec 2005 01:19:03 +0000 Subject: (svn r3326) - Fix: [ 1226832 ] Build fails if SDL is built without pthread support (dst) --- Makefile | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a34c53e2b..3f3ed1ca1 100644 --- a/Makefile +++ b/Makefile @@ -226,19 +226,21 @@ endif endif # remove the dependancy for sdl if DEDICALTED is used -# and add -lpthread to LDFLAGS, because SDL normally adds that... ifdef DEDICATED -WITH_SDL:= -ifndef WIN32 -ifndef MORPHOS -ifndef OSX -LDFLAGS+=-lpthread -endif + WITH_SDL:= endif + +# add -lpthread to LDFLAGS +ifndef WIN32 + ifndef MORPHOS + ifndef OSX + LDFLAGS+=-lpthread + endif + endif endif + ifdef OSX -LDFLAGS+=-framework Cocoa -endif + LDFLAGS+=-framework Cocoa endif -- cgit v1.2.3-54-g00ecf