File tree 2 files changed +0
-13
lines changed
2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
CC=gcc-4.0
3
- BINARY=ioquake3.ub
4
3
5
4
cd ` dirname $0 `
6
5
if [ ! -f Makefile ]; then
7
6
echo " This script must be run from the ioquake3 build directory"
8
7
exit 1
9
8
fi
10
9
11
- Q3_VERSION=` grep ' ^VERSION=' Makefile | sed -e ' s/.*=\(.*\)/\1/' `
12
-
13
- # We only care if we're >= 10.4, not if we're specifically Tiger.
14
- # "8" is the Darwin major kernel version.
15
- TIGERHOST=` uname -r | perl -w -p -e ' s/\A(\d+)\..*\Z/$1/; $_ = (($_ >= 8) ? "1" : "0");' `
16
-
17
10
# we want to use the oldest available SDK for max compatiblity. However 10.4 and older
18
11
# can not build 64bit binaries, making 10.5 the minimum version. This has been tested
19
12
# with xcode 3.1 (xcode31_2199_developerdvd.dmg). It contains the 10.5 SDK and a decent
Original file line number Diff line number Diff line change @@ -38,12 +38,6 @@ if [ ! -f Makefile ]; then
38
38
exit 1
39
39
fi
40
40
41
- Q3_VERSION=` grep ' ^VERSION=' Makefile | sed -e ' s/.*=\(.*\)/\1/' `
42
-
43
- # We only care if we're >= 10.4, not if we're specifically Tiger.
44
- # "8" is the Darwin major kernel version.
45
- TIGERHOST=` uname -r | perl -w -p -e ' s/\A(\d+)\..*\Z/$1/; $_ = (($_ >= 8) ? "1" : "0");' `
46
-
47
41
# we want to use the oldest available SDK for max compatiblity. However 10.4 and older
48
42
# can not build 64bit binaries, making 10.5 the minimum version. This has been tested
49
43
# with xcode 3.1 (xcode31_2199_developerdvd.dmg). It contains the 10.5 SDK and a decent
You can’t perform that action at this time.
0 commit comments