From: Cyril Brulebois Date: Sun, 18 Jul 2010 00:00:40 +0100 Subject: [PATCH] Fix FTBFS on kFreeBSD [Adapted to not actually claim to *be* Linux -smcv] Origin: vendor, Debian Bug: http://bugzilla.icculus.org/show_bug.cgi?id=4700 Bug-Debian: http://bugs.debian.org/413617 Forwarded: yes --- Makefile | 4 ++-- code/qcommon/q_platform.h | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7cc2991..9d476b4 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ # GNU Make required # -COMPILE_PLATFORM=$(shell uname|sed -e s/_.*//|tr '[:upper:]' '[:lower:]') +COMPILE_PLATFORM=$(shell uname|sed -e s/_.*//|tr '[:upper:]' '[:lower:]'|sed -e 's/\//_/g') COMPILE_ARCH=$(shell uname -m | sed -e s/i.86/i386/) @@ -243,7 +243,7 @@ LIB=lib INSTALL=install MKDIR=mkdir -ifeq ($(PLATFORM),linux) +ifneq (,findstring($(PLATFORM),linux gnu_kfreebsd kfreebsd-gnu)) ifeq ($(ARCH),axp) ARCH=alpha diff --git a/code/qcommon/q_platform.h b/code/qcommon/q_platform.h index 65f1fb2..3004fef 100644 --- a/code/qcommon/q_platform.h +++ b/code/qcommon/q_platform.h @@ -154,11 +154,16 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA //================================================================= LINUX === -#ifdef __linux__ +#if defined(__linux__) || defined(__FreeBSD_kernel__) #include +#if defined(__linux__) #define OS_STRING "linux" +#else +#define OS_STRING "kFreeBSD" +#endif + #define ID_INLINE inline #define PATH_SEP '/' --