diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-28 17:24:58 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-28 17:24:58 +0000 |
commit | b7bab8902a5b4dfb528b51c9a563fb374e907d14 (patch) | |
tree | 0e4787d808474937181d859a2edb3b8b0881c25a /code/splines | |
parent | bf50007df9f48ea8da3ea6284f176b49628a736f (diff) | |
download | ioquake3-aero-b7bab8902a5b4dfb528b51c9a563fb374e907d14.tar.gz ioquake3-aero-b7bab8902a5b4dfb528b51c9a563fb374e907d14.zip |
prepare for ppc support
git-svn-id: svn://svn.icculus.org/quake3/trunk@23 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/splines')
-rwxr-xr-x | code/splines/q_shared.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/code/splines/q_shared.h b/code/splines/q_shared.h index 2fd3f2d..8f28622 100755 --- a/code/splines/q_shared.h +++ b/code/splines/q_shared.h @@ -202,6 +202,10 @@ void Sys_PumpEvents( void ); #define CPUSTRING "linux-alpha" #elif defined __x86_64__ #define CPUSTRING "linux-x86_64" +#elif defined __powerpc64__ +#define CPUSTRING "linux-ppc64" +#elif defined __powerpc__ +#define CPUSTRING "linux-ppc" #else #define CPUSTRING "linux-other" #endif |