aboutsummaryrefslogtreecommitdiff
path: root/games/q3cellshading/files/patch-code-unix-cons
diff options
context:
space:
mode:
Diffstat (limited to 'games/q3cellshading/files/patch-code-unix-cons')
-rw-r--r--games/q3cellshading/files/patch-code-unix-cons27
1 files changed, 0 insertions, 27 deletions
diff --git a/games/q3cellshading/files/patch-code-unix-cons b/games/q3cellshading/files/patch-code-unix-cons
deleted file mode 100644
index b2e41f55f747..000000000000
--- a/games/q3cellshading/files/patch-code-unix-cons
+++ /dev/null
@@ -1,27 +0,0 @@
---- code/unix/cons.orig Fri Jun 14 13:01:32 2002
-+++ code/unix/cons Wed Nov 23 10:32:49 2005
-@@ -271,11 +271,11 @@
- # Defaults for a typical (?) UNIX platform.
- # Your mileage may vary.
- 'unix' => [
-- 'CC' => 'cc',
-- 'CFLAGS' => '',
-+ 'CC' => $ENV{CC},
-+ 'CFLAGS' => $ENV{CFLAGS},
- 'CCCOM' => '%CC %CFLAGS %_IFLAGS -c %< -o %>',
-- 'CXX' => '%CC',
-- 'CXXFLAGS' => '%CFLAGS',
-+ 'CXX' => $ENV{CXX},
-+ 'CXXFLAGS' => $ENV{CXXFLAGS},
- 'CXXCOM' => '%CXX %CXXFLAGS %_IFLAGS -c %< -o %>',
- 'INCDIRPREFIX' => '-I',
- 'INCDIRSUFFIX' => '',
-@@ -294,7 +294,7 @@
- 'LD' => 'ld',
- 'LDFLAGS' => '',
- 'PREFLIB' => 'lib',
-- 'ENV' => { 'PATH' => '/bin:/usr/bin' },
-+ 'ENV' => { 'PATH' => '/bin:/usr/bin:/usr/local/bin' },
- ],
- );
-