summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2016-09-01 10:15:47 +0000
committertedu <tedu@openbsd.org>2016-09-01 10:15:47 +0000
commit262dc4f1621b5efb118de3f1be7f6e17addcc07a (patch)
tree3b2478a97e47f3d72eed2da6e55a368fe891c84a
parentmake the page more neutral, as suggested by deraadt; (diff)
downloadwireguard-openbsd-262dc4f1621b5efb118de3f1be7f6e17addcc07a.tar.xz
wireguard-openbsd-262dc4f1621b5efb118de3f1be7f6e17addcc07a.zip
remove sparc support
-rw-r--r--share/mk/bsd.own.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index de15703bbec..6358d75540f 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: bsd.own.mk,v 1.175 2016/07/04 18:01:44 guenther Exp $
+# $OpenBSD: bsd.own.mk,v 1.176 2016/09/01 10:15:47 tedu Exp $
# $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $
# Host-specific overrides
@@ -19,8 +19,8 @@ GCC3_ARCH=m88k
# arm: needs to switch away from SJLJ exceptions
# m88k: ?
-PIE_ARCH=alpha amd64 hppa i386 mips64 mips64el powerpc sh sparc sparc64
-STATICPIE_ARCH=alpha amd64 hppa i386 mips64 mips64el powerpc sh sparc sparc64
+PIE_ARCH=alpha amd64 hppa i386 mips64 mips64el powerpc sh sparc64
+STATICPIE_ARCH=alpha amd64 hppa i386 mips64 mips64el powerpc sh sparc64
.for _arch in ${MACHINE_ARCH}
.if !empty(GCC3_ARCH:M${_arch})
@@ -115,12 +115,12 @@ PICFLAG?=-fPIC
PICFLAG?=-fpic
.endif
-.if ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64"
+.if ${MACHINE_ARCH} == "sparc64"
ASPICFLAG=-KPIC
.endif
.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "powerpc" || \
- ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64"
+ ${MACHINE_ARCH} == "sparc64"
# big PIE
DEFAULT_PIE_DEF=-DPIE_DEFAULT=2
.else