mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-09-10 12:02:53 +02:00
Disable linking with libtiff
This commit is contained in:
parent
623352269a
commit
9bf398fcc5
3 changed files with 6 additions and 4 deletions
|
@ -3,7 +3,7 @@ ARCH := arm64
|
|||
HOST := aarch64-apple-darwin
|
||||
MINIMUM_REQUIRED := 11.0
|
||||
|
||||
SDL_FLAGS := -disable-video-x11 ${SDL_FLAGS}
|
||||
SDL_FLAGS := ${SDL_FLAGS}
|
||||
SDL2_IMAGE_FLAGS := ${SDL2_IMAGE_FLAGS}
|
||||
SDL2_TTF_FLAGS := ${SDL2_TTF_FLAGS}
|
||||
OPENAL_FLAGS := -DALSOFT_CPUEXT_NEON=no ${OPENAL_FLAGS}
|
||||
|
|
|
@ -3,7 +3,7 @@ ARCH := x86_64
|
|||
HOST := $(ARCH)-apple-darwin
|
||||
MINIMUM_REQUIRED := 10.12
|
||||
|
||||
SDL_FLAGS := -disable-video-x11 ${SDL_FLAGS}
|
||||
SDL_FLAGS := ${SDL_FLAGS}
|
||||
SDL2_IMAGE_FLAGS := ${SDL2_IMAGE_FLAGS}
|
||||
SDL2_TTF_FLAGS := ${SDL2_TTF_FLAGS}
|
||||
OPENAL_FLAGS := ${OPENAL_FLAGS}
|
||||
|
|
|
@ -166,7 +166,8 @@ $(LIBDIR)/libSDL2.a: $(DOWNLOADS)/sdl2/Makefile
|
|||
|
||||
$(DOWNLOADS)/sdl2/Makefile: $(DOWNLOADS)/sdl2/configure
|
||||
cd $(DOWNLOADS)/sdl2; \
|
||||
$(CONFIGURE) --enable-static=true --enable-shared=false $(SDL_FLAGS)
|
||||
$(CONFIGURE) --enable-static=true --enable-shared=false \
|
||||
--enable-video-x11=false $(SDL_FLAGS)
|
||||
|
||||
$(DOWNLOADS)/sdl2/configure: $(DOWNLOADS)/sdl2/autogen.sh
|
||||
cd $(DOWNLOADS)/sdl2; ./autogen.sh
|
||||
|
@ -188,7 +189,8 @@ $(DOWNLOADS)/sdl2_image/Makefile: $(DOWNLOADS)/sdl2_image/configure
|
|||
--disable-imageio \
|
||||
--enable-png=yes --enable-png-shared=no \
|
||||
--enable-jpg=yes --enable-jpg-shared=no \
|
||||
--enable-webp=no $(SDL2_IMAGE_FLAGS)
|
||||
--enable-webp=no --enable-tif=no \
|
||||
$(SDL2_IMAGE_FLAGS)
|
||||
|
||||
$(DOWNLOADS)/sdl2_image/configure: $(DOWNLOADS)/sdl2_image/autogen.sh
|
||||
cd $(DOWNLOADS)/sdl2_image; ./autogen.sh
|
||||
|
|
Loading…
Add table
Reference in a new issue