summaryrefslogtreecommitdiff
path: root/share/mk
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2004-02-09 02:33:21 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2004-02-09 02:33:21 +0000
commit0881e7c20e0f8229fe8c91a9d85671822f71b26e (patch)
tree8bf2bedaf034ee97da81b66273ba194eed79e308 /share/mk
parent833f9ce99a819bb95f92e02e9058fc216eedf665 (diff)
do not build AFS on arm, no process.arm.S file (yet)
arm now has shared library support.
Diffstat (limited to 'share/mk')
-rw-r--r--share/mk/bsd.own.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index 1e8d4726ee4..5072c09aeac 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: bsd.own.mk,v 1.74 2004/02/07 23:49:05 deraadt Exp $
+# $OpenBSD: bsd.own.mk,v 1.75 2004/02/09 02:33:20 drahn Exp $
# $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $
# Host-specific overrides
@@ -20,7 +20,8 @@ YP?= yes
# integrated support for libwrap.
TCP_WRAPPERS?= yes
# Set `AFS` to `yes' to build with AFS support.
-.if (${MACHINE_ARCH} == "m88k") || (${MACHINE_ARCH} == "x86_64")
+.if (${MACHINE_ARCH} == "arm") || (${MACHINE_ARCH} == "m88k") || \
+ (${MACHINE_ARCH} == "x86_64")
AFS?= no
.else
AFS?= yes
@@ -118,8 +119,7 @@ STATIC?= -static
# don't try to generate PIC versions of libraries on machines
# which don't support PIC.
.if (${MACHINE_ARCH} == "vax") || (${MACHINE_ARCH} == "x86_64") || \
- (${MACHINE_ARCH} == "hppa") || (${MACHINE_ARCH} == "m88k") \
- || (${MACHINE_ARCH} == "arm")
+ (${MACHINE_ARCH} == "hppa") || (${MACHINE_ARCH} == "m88k")
NOPIC=
.endif