summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Wilbert Pol <wilbertpol@users.noreply.github.com>2015-01-01 22:00:13 +0100
committer Wilbert Pol <wilbertpol@users.noreply.github.com>2015-01-01 23:57:25 +0100
commitd18d667665f1971ff84e853a6663957fc88c18ff (patch)
treeaff4033d57a9df55e6fe3e63ebfc209c2972bfb6
parentda7318717917484ca05ca941abe0ff185da3d373 (diff)
Fixed building of tools on OSX; patch might not be complete (nw)
-rw-r--r--src/osd/sdl/sdl.mak2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/osd/sdl/sdl.mak b/src/osd/sdl/sdl.mak
index 4929b383ee8..b8ddfbbbd75 100644
--- a/src/osd/sdl/sdl.mak
+++ b/src/osd/sdl/sdl.mak
@@ -498,8 +498,10 @@ ifndef MACOSX_USE_LIBSDL
# Compile using framework (compile using libSDL is the exception)
ifeq ($(SDL_LIBVER),sdl2)
LIBS += -F$(SDL_FRAMEWORK_PATH) -framework SDL2 -framework Cocoa -framework OpenGL -lpthread
+BASELIBS += -F$(SDL_FRAMEWORK_PATH) -framework SDL2 -framework Cocoa -framework OpenGL -lpthread
else
LIBS += -F$(SDL_FRAMEWORK_PATH) -framework SDL -framework Cocoa -framework OpenGL -lpthread
+BASELIBS += -F$(SDL_FRAMEWORK_PATH) -framework SDL -framework Cocoa -framework OpenGL -lpthread
endif
INCPATH += -F$(SDL_FRAMEWORK_PATH)
else