summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2018-04-30 00:27:32 +0000
committerryoon <ryoon@pkgsrc.org>2018-04-30 00:27:32 +0000
commit11614c62ad92fb8b923322772f5e8b49f0c6a624 (patch)
treefc8158ca672934d8d73953fed3b3fe1b164e550c
parent7bb45214c18087a3af9963c675e44f9d8bd6755c (diff)
downloadpkgsrc-11614c62ad92fb8b923322772f5e8b49f0c6a624.tar.gz
fiber does not support NetBSD. Disable fiber for NetBSD to fix packaging
-rw-r--r--devel/boost-libs/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/boost-libs/Makefile b/devel/boost-libs/Makefile
index 5424a8ad0ea..15f8f470a6c 100644
--- a/devel/boost-libs/Makefile
+++ b/devel/boost-libs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.64 2018/04/29 20:41:11 adam Exp $
+# $NetBSD: Makefile,v 1.65 2018/04/30 00:27:32 ryoon Exp $
BOOST_PACKAGE= libs
BOOST_COMMENT= (binary libraries)
@@ -23,8 +23,10 @@ BJAM_ARGS+= --without-coroutine2
BJAM_ARGS+= --without-fiber
.else
PLIST.context= yes
+.if ${OPSYS} != "NetBSD"
PLIST.fiber= yes
.endif
+.endif
# Darwin GCC is unable to build Boost.Log
.if ${OPSYS} == "Darwin" && !empty(PKGSRC_COMPILER:Mgcc)