summaryrefslogtreecommitdiff
path: root/mk/platform/UnixWare.mk
diff options
context:
space:
mode:
authorrillig <rillig>2007-10-19 13:41:34 +0000
committerrillig <rillig>2007-10-19 13:41:34 +0000
commit38c3dbe8b78af90aaa6c33b9ed08ed4c7c377c3f (patch)
tree07f18993d0ef18af77c1794c8875b5205b48b2c0 /mk/platform/UnixWare.mk
parentfff704fa891d7caea269f39aa1d5658582fadfb9 (diff)
downloadpkgsrc-38c3dbe8b78af90aaa6c33b9ed08ed4c7c377c3f.tar.gz
Reverted the last changes, which factored out some definitions that are
usually the same on the supported platforms. The reason for having duplicate code in these files is to make it easier to port pkgsrc to a new platform: You just have to copy one of the existing platform files and edit the values in it. With some values factored out, you would have to look at one more file. Pointed out by agc@.
Diffstat (limited to 'mk/platform/UnixWare.mk')
-rw-r--r--mk/platform/UnixWare.mk9
1 files changed, 6 insertions, 3 deletions
diff --git a/mk/platform/UnixWare.mk b/mk/platform/UnixWare.mk
index d604401703b..fb6433ab720 100644
--- a/mk/platform/UnixWare.mk
+++ b/mk/platform/UnixWare.mk
@@ -1,4 +1,4 @@
-# $NetBSD: UnixWare.mk,v 1.25 2007/10/18 21:52:24 rillig Exp $
+# $NetBSD: UnixWare.mk,v 1.26 2007/10/19 13:41:35 rillig Exp $
#
# Variable definitions for the UnixWare 7 operating system.
@@ -11,14 +11,19 @@ PS?= /usr/bin/ps
SU?= /usr/bin/su
TYPE?= /usr/bin/type
+CPP_PRECOMP_FLAGS?= # unset
+DEF_UMASK?= 022
DEFAULT_SERIAL_DEVICE?= /dev/null
EXPORT_SYMBOLS_LDFLAGS?= # Don't add symbols to the dynamic symbol table
GROUPADD?= /usr/sbin/groupadd
MOTIF_TYPE_DEFAULT?= dt # default 2.0 compatible libs type
+NOLOGIN?= ${FALSE}
ROOT_CMD?= ${SU} - root -c
ROOT_GROUP?= root
ROOT_USER?= root
SERIAL_DEVICES?= /dev/null
+ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d`
+ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s`
ULIMIT_CMD_memorysize?= ulimit -v `ulimit -H -v`
USERADD?= /usr/sbin/useradd
@@ -87,5 +92,3 @@ PKG_TOOLS_BIN?= ${LOCALBASE}/sbin
#GAMEMODE= 2555
#GAMEDIRMODE= 0775
#.endif
-
-.include "${.PARSEDIR}/defaults.mk"