From bfe3e801b04693bbe695332e38a23afc543be844 Mon Sep 17 00:00:00 2001 From: merlijn Date: Fri, 9 Jul 2010 22:48:47 +0200 Subject: [PATCH] add cleaner OSX version filter --- all | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/all b/all index 1f939e9e..2489f5aa 100755 --- a/all +++ b/all @@ -424,12 +424,16 @@ case "$cmd" in if [ -z "$CC" ]; then export CC=gcc fi - elif [ x"`uname`" = x"Darwin" ] && [ x"`uname -r`" = x"10.3.0" ]; then - TARGETS="sv-debug sdl-debug" - # AGL is broken in Snow Leopard, so default to SDL. - if [ x"`uname -r`" != x"10.3.0" ]; then - TARGETS="$TARGETS cl-debug" - fi + elif [ x"`uname`" = x"Darwin" ]; then + case "`uname -r`" in + ?.*) + TARGETS="sv-debug cl-debug sdl-debug" + ;; + *) + # AGL cannot be compiled on systems with a kernel > 10.x (Snow Leopard) + TARGETS="sv-debug sdl-debug" + ;; + esac export CC="gcc -I$PWD/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks/SDL.framework/Headers -F$PWD/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks" else TARGETS="sv-debug cl-debug sdl-debug" -- 2.39.2