Skip to content
Snippets Groups Projects
Commit 373ab9e6 authored by deuce's avatar deuce
Browse files

Don't make WITH_SDL_AUDIO prevent WITH_SDL from being set.

parent 2bbbb6ee
No related branches found
No related tags found
No related merge requests found
...@@ -65,29 +65,27 @@ endif ...@@ -65,29 +65,27 @@ endif
# Find SDL headers! # Find SDL headers!
ifdef USE_SDL ifdef USE_SDL
ifndef WITH_SDL_AUDIO ifdef SDL_CONFIG
ifdef SDL_CONFIG ifeq ($(shell command -v ${SDL_CONFIG} > /dev/null && if [ `${SDL_CONFIG} --version | sed -E 's/\..*$$//'` -ge 2 ] ; then echo 'YES' ; fi),YES)
ifeq ($(shell command -v ${SDL_CONFIG} > /dev/null && if [ `${SDL_CONFIG} --version | sed -E 's/\..*$$//'` -ge 2 ] ; then echo 'YES' ; fi),YES) WITH_SDL := 1
endif
else
ifeq ($(os),darwin)
ifeq ($(shell if [ -d /Library/Frameworks/SDL2.framework ] ; then echo YES ; fi),YES)
SDL_FRAMEWORK_PATH ?= /Library/Frameworks
endif
ifdef SDL_FRAMEWORK_PATH
WITH_SDL := 1 WITH_SDL := 1
CIOLIB-MT_LDFLAGS += -Wl,-rpath,@executable_path/../Frameworks
endif endif
else else
ifeq ($(os),darwin) ifeq ($(shell command -v sdl2-config > /dev/null && sdl2-config --cflags > /dev/null 2>&1 && echo YES),YES)
ifeq ($(shell if [ -d /Library/Frameworks/SDL2.framework ] ; then echo YES ; fi),YES) SDL_CONFIG := sdl2-config
SDL_FRAMEWORK_PATH ?= /Library/Frameworks WITH_SDL := 1
endif
ifdef SDL_FRAMEWORK_PATH
WITH_SDL := 1
CIOLIB-MT_LDFLAGS += -Wl,-rpath,@executable_path/../Frameworks
endif
else else
ifeq ($(shell command -v sdl2-config > /dev/null && sdl2-config --cflags > /dev/null 2>&1 && echo YES),YES) ifeq ($(shell command -v sdl-config > /dev/null && if [ `sdl-config --version | sed -E 's/\..*$$//'` -ge 2 ] ; then echo 'YES' ; fi),YES)
SDL_CONFIG := sdl2-config SDL_CONFIG := sdl-config
WITH_SDL := 1 WITH_SDL := 1
else
ifeq ($(shell command -v sdl-config > /dev/null && if [ `sdl-config --version | sed -E 's/\..*$$//'` -ge 2 ] ; then echo 'YES' ; fi),YES)
SDL_CONFIG := sdl-config
WITH_SDL := 1
endif
endif endif
endif endif
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment