mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-01-18 21:51:37 +00:00
Forget about SDL_DIR, remove versioncheck on sunos until I can fix it.
This commit is contained in:
parent
2130bce927
commit
8ca91d6731
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -599,7 +599,6 @@ ifeq ($(PLATFORM),sunos)
|
||||||
MKDIR=gmkdir
|
MKDIR=gmkdir
|
||||||
GREP=/usr/xpg4/bin/grep
|
GREP=/usr/xpg4/bin/grep
|
||||||
COPYDIR="/usr/local/share/games/quake3"
|
COPYDIR="/usr/local/share/games/quake3"
|
||||||
SDL_DIR=/usr/local
|
|
||||||
|
|
||||||
ifneq (,$(findstring i86pc,$(shell uname -m)))
|
ifneq (,$(findstring i86pc,$(shell uname -m)))
|
||||||
ARCH=i386
|
ARCH=i386
|
||||||
|
@ -884,6 +883,7 @@ BASE_CFLAGS += -DMINSDL_MAJOR=$(MINSDL_MAJOR) \
|
||||||
-DMINSDL_PATCH=$(MINSDL_PATCH)
|
-DMINSDL_PATCH=$(MINSDL_PATCH)
|
||||||
|
|
||||||
libversioncheck:
|
libversioncheck:
|
||||||
|
ifneq ($(COMPILE_PLATFORM),sunos)
|
||||||
@/bin/echo -e "#include \"SDL_version.h\"\n" \
|
@/bin/echo -e "#include \"SDL_version.h\"\n" \
|
||||||
"#if SDL_VERSION_ATLEAST(" \
|
"#if SDL_VERSION_ATLEAST(" \
|
||||||
"$(MINSDL_MAJOR),$(MINSDL_MINOR),$(MINSDL_PATCH)" \
|
"$(MINSDL_MAJOR),$(MINSDL_MINOR),$(MINSDL_PATCH)" \
|
||||||
|
@ -892,7 +892,7 @@ libversioncheck:
|
||||||
( /bin/echo "SDL version" \
|
( /bin/echo "SDL version" \
|
||||||
"$(MINSDL_MAJOR).$(MINSDL_MINOR).$(MINSDL_PATCH)" \
|
"$(MINSDL_MAJOR).$(MINSDL_MINOR).$(MINSDL_PATCH)" \
|
||||||
"or greater required" && exit 1 )
|
"or greater required" && exit 1 )
|
||||||
|
endif
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
# CLIENT/SERVER
|
# CLIENT/SERVER
|
||||||
|
|
Loading…
Reference in a new issue