diff options
author | nia <nia@pkgsrc.org> | 2022-09-24 08:27:52 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2022-09-24 08:27:52 +0000 |
commit | df7ca444d1497c77c75c04c7480edd5f8d78349f (patch) | |
tree | 35d7e8bca307233a9668f4663da9921d74e09203 /sysutils | |
parent | 2b7c2743cbe9dfc55c636065600c445ebc6215fe (diff) | |
download | pkgsrc-df7ca444d1497c77c75c04c7480edd5f8d78349f.tar.gz |
9base: do not force static linking
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/9base/Makefile | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/sysutils/9base/Makefile b/sysutils/9base/Makefile index d6cbc3f7d6e..424f78bf660 100644 --- a/sysutils/9base/Makefile +++ b/sysutils/9base/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.21 2021/04/13 08:05:30 nia Exp $ +# $NetBSD: Makefile,v 1.22 2022/09/24 08:27:52 nia Exp $ DISTNAME= 9base-6 PKGNAME= 9base-20100604 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= sysutils shells MASTER_SITES= http://dl.suckless.org/tools/ @@ -20,19 +20,8 @@ PKG_SHELL= bin/rc # commits utter sins with sprintf() macros; glhf FORTIFY_SUPPORTED= no -.include "../../mk/bsd.prefs.mk" - -# Darwin doesn't support static link. -# See http://developer.apple.com/library/mac/#qa/qa1118/_index.html -.if ${OPSYS} == "Darwin" -BUILDLINK_TRANSFORM+= rm:-static -.elif ${OPSYS} == "SunOS" -BUILDLINK_TRANSFORM+= rm:-static -CFLAGS+= -DPLAN9PORT -LDFLAGS+= -lsocket -lnsl -.else -LDFLAGS+= -static -.endif +CFLAGS.SunOS+= -DPLAN9PORT +LDFLAGS.SunOS+= -lsocket -lnsl PREFIX9P= ${PREFIX}/9base |