summaryrefslogtreecommitdiff
path: root/mk/defs.Darwin.mk
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2002-06-02 00:40:18 +0000
committerschmonz <schmonz@pkgsrc.org>2002-06-02 00:40:18 +0000
commit63ce60909f67c3490876ef1dabff5b3bae8f4dde (patch)
treead45e76d86a46daf5ed3f994343e1b31b5d441cd /mk/defs.Darwin.mk
parentd534de86c38277903958f838616627d297fbdcfe (diff)
downloadpkgsrc-63ce60909f67c3490876ef1dabff5b3bae8f4dde.tar.gz
Introduce CPP_PRECOMP_FLAGS, defaulting to "-no-cpp-precomp" on
Darwin (meaning "don't use the OS X cpp that groks precompiled headers", which gets us the more compatible GNU cpp instead), and blank on other systems. Approved by agc and yyamano.
Diffstat (limited to 'mk/defs.Darwin.mk')
-rw-r--r--mk/defs.Darwin.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk
index 40ebd8c3c22..a2526b3081b 100644
--- a/mk/defs.Darwin.mk
+++ b/mk/defs.Darwin.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.Darwin.mk,v 1.23 2002/05/19 12:44:59 schmonz Exp $
+# $NetBSD: defs.Darwin.mk,v 1.24 2002/06/02 00:40:18 schmonz Exp $
#
# Variable definitions for the Darwin operating system.
@@ -55,6 +55,7 @@ TYPE?= type # Shell builtin
WC?= /usr/bin/wc
XARGS?= /usr/bin/xargs
+CPP_PRECOMP_FLAGS?= -no-cpp-precomp # use the GNU cpp, not the OS X cpp
DEF_UMASK?= 0022
DEFAULT_SERIAL_DEVICE?= /dev/null
GROUPADD?= ${FALSE} # XXX - Fix me!