summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>1998-10-04 02:29:35 +0000
committerhubertf <hubertf@pkgsrc.org>1998-10-04 02:29:35 +0000
commit09392b5f1b7ab2820872e1b5b401cc14449a4f2d (patch)
treece058d6d07b508c10eafe329000f90eb7755a6bc /mk
parentd3b1f2705e07b50de506430ccddba07cae7777e2 (diff)
downloadpkgsrc-09392b5f1b7ab2820872e1b5b401cc14449a4f2d.tar.gz
fix list of ports supporting UVM and PMAP_NEW with reality.
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.own.mk16
1 files changed, 13 insertions, 3 deletions
diff --git a/mk/bsd.own.mk b/mk/bsd.own.mk
index e8b40924471..4e11d274479 100644
--- a/mk/bsd.own.mk
+++ b/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.own.mk,v 1.7 1998/08/30 04:44:56 lukem Exp $
+# $NetBSD: bsd.own.mk,v 1.8 1998/10/04 02:29:35 hubertf Exp $
.if !defined(_BSD_OWN_MK_)
_BSD_OWN_MK_=1
@@ -78,15 +78,25 @@ NETBSD_CURRENT!= /usr/bin/uname -r | /usr/bin/sed -e 's|^1\.3[C-Z]$$|yes|'
.if (${NETBSD_CURRENT} == "yes")
# Systems on which UVM is the standard VM system.
.if (${MACHINE} == "alpha") || \
+ (${MACHINE} == "arm32") || \
+ (${MACHINE} == "atari") || \
+ (${MACHINE} == "bebox") || \
(${MACHINE} == "hp300") || \
+ (${MACHINE} == "i386") || \
(${MACHINE} == "mac68k") || \
+ (${MACHINE} == "macppc") || \
+ (${MACHINE} == "ofppc") || \
(${MACHINE} == "mvme68k") || \
- (${MACHINE} == "sparc")
+ (${MACHINE} == "pc532") || \
+ (${MACHINE} == "sparc") || \
+ (${MACHINE} == "sparc64")
UVM?= yes
.endif
# Systems that use UVM's new pmap interface.
-.if (${MACHINE} == "alpha")
+.if (${MACHINE} == "alpha") || \
+ (${MACHINE} == "i386") || \
+ (${MACHINE} == "pc532")
PMAP_NEW?= yes
.endif