diff options
author | 2003-09-06 18:20:23 +0000 | |
---|---|---|
committer | 2003-09-06 18:20:23 +0000 | |
commit | c4ffd393d2f59ed0bd85c699d7aad73ad7490ada (patch) | |
tree | b3d7636f3f8d9d2e78e0265fe3305395ff73cf64 | |
parent | - interval specified with -i flag, not -w (diff) | |
download | wireguard-openbsd-c4ffd393d2f59ed0bd85c699d7aad73ad7490ada.tar.xz wireguard-openbsd-c4ffd393d2f59ed0bd85c699d7aad73ad7490ada.zip |
Disable AFS for m88k again - it's unlikely that libpthread/arla-lwp support
gets debugged in time for the release.
-rw-r--r-- | share/mk/bsd.own.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 2ff1b07562c..def58cc5942 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.69 2003/08/21 07:04:09 deraadt Exp $ +# $OpenBSD: bsd.own.mk,v 1.70 2003/09/06 18:20:23 miod Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -20,7 +20,11 @@ YP?= yes # integrated support for libwrap. TCP_WRAPPERS?= yes # Set `AFS` to `yes' to build with AFS support. +.if (${MACHINE_ARCH} == "m88k") +AFS?= no +.else AFS?= yes +.endif # Set `DEBUGLIBS' to `yes' to build libraries with debugging symbols DEBUGLIBS?= no # Set toolchain to be able to know differences. |