diff options
author | minskim <minskim> | 2005-02-24 23:10:44 +0000 |
---|---|---|
committer | minskim <minskim> | 2005-02-24 23:10:44 +0000 |
commit | e3cf8c19a1e6273b25b959901ec1652454c20a11 (patch) | |
tree | f1987036ee80dd828216bc053903e66798de1031 /games | |
parent | 97638f2b06386d6b57f6c8c39df1e7c3bce7e59d (diff) | |
download | pkgsrc-e3cf8c19a1e6273b25b959901ec1652454c20a11.tar.gz |
Define "LINUX" on Linux. This fixes PR pkg/29489.
Diffstat (limited to 'games')
-rw-r--r-- | games/xdoom/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/xdoom/Makefile b/games/xdoom/Makefile index b35a4d3cdcf..b0687f784f2 100644 --- a/games/xdoom/Makefile +++ b/games/xdoom/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2005/02/24 23:07:34 minskim Exp $ +# $NetBSD: Makefile,v 1.24 2005/02/24 23:10:44 minskim Exp $ DISTNAME= linuxdoom-1.10 PKGNAME= xdoom-1.10 @@ -24,6 +24,12 @@ USE_X11BASE= yes USE_GNU_TOOLS+= make MAKE_ENV+= X11BASE=${X11BASE} INSTALL_PREFIX=${X11PREFIX} +.include "../../mk/bsd.prefs.mk" + +.ifdef ${OPSYS} == "Linux" +CFLAGS+= -DLINUX +.endif + .include "../../mk/endian.mk" .if ${MACHINE_ENDIAN} == "big" |