diff options
author | coyote <coyote@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-09-10 19:29:41 +0000 |
---|---|---|
committer | coyote <coyote@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-09-10 19:29:41 +0000 |
commit | cce17c47ea2fcaea762c0d28a8445c2ce0e88c9b (patch) | |
tree | b9ce4daf63f5a569cbc2aea540ef42932684b374 /Makefile | |
parent | fb759e76016e4ecc7eeeffdf6e543cfac062d9ce (diff) | |
download | ioquake3-aero-cce17c47ea2fcaea762c0d28a8445c2ce0e88c9b.tar.gz ioquake3-aero-cce17c47ea2fcaea762c0d28a8445c2ce0e88c9b.zip |
Forget about SDL_DIR, remove versioncheck on sunos until I can fix it.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1174 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -599,7 +599,6 @@ ifeq ($(PLATFORM),sunos) MKDIR=gmkdir GREP=/usr/xpg4/bin/grep COPYDIR="/usr/local/share/games/quake3" - SDL_DIR=/usr/local ifneq (,$(findstring i86pc,$(shell uname -m))) ARCH=i386 @@ -884,6 +883,7 @@ BASE_CFLAGS += -DMINSDL_MAJOR=$(MINSDL_MAJOR) \ -DMINSDL_PATCH=$(MINSDL_PATCH) libversioncheck: +ifneq ($(COMPILE_PLATFORM),sunos) @/bin/echo -e "#include \"SDL_version.h\"\n" \ "#if SDL_VERSION_ATLEAST(" \ "$(MINSDL_MAJOR),$(MINSDL_MINOR),$(MINSDL_PATCH)" \ @@ -892,7 +892,7 @@ libversioncheck: ( /bin/echo "SDL version" \ "$(MINSDL_MAJOR).$(MINSDL_MINOR).$(MINSDL_PATCH)" \ "or greater required" && exit 1 ) - +endif ############################################################################# # CLIENT/SERVER |