pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/boost-libs



Module Name:    pkgsrc
Committed By:   tnn
Date:           Sun Dec 18 22:08:07 UTC 2016

Modified Files:
        pkgsrc/devel/boost-libs: Makefile

Log Message:
also disable fiber when using clang on NetBSD due to lack of thread_local


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 pkgsrc/devel/boost-libs/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/boost-libs/Makefile
diff -u pkgsrc/devel/boost-libs/Makefile:1.48 pkgsrc/devel/boost-libs/Makefile:1.49
--- pkgsrc/devel/boost-libs/Makefile:1.48       Sun Dec  4 05:17:22 2016
+++ pkgsrc/devel/boost-libs/Makefile    Sun Dec 18 22:08:07 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.48 2016/12/04 05:17:22 ryoon Exp $
+# $NetBSD: Makefile,v 1.49 2016/12/18 22:08:07 tnn Exp $
 
 BOOST_PACKAGE=         libs
 BOOST_COMMENT=         (binary libraries)
@@ -38,7 +38,9 @@ PLIST.log=            yes
 # fiber requires context, so also disable it where context cannot be built
 .if ((${OPSYS} == "Darwin" && ${OS_VERSION:R} < 14) || \
     !empty(MACHINE_PLATFORM:MNetBSD-[0-6]*-*)) || \
-    !empty(MACHINE_ARCH:Malpha) || !empty(MACHINE_ARCH:Mm68k) || !empty(MACHINE_ARCH:Msparc64)
+    !empty(MACHINE_ARCH:Malpha) || !empty(MACHINE_ARCH:Mm68k) || \
+    !empty(MACHINE_ARCH:Msparc64) || \
+    (${OPSYS} == "NetBSD" && !empty(PKGSRC_COMPILER:Mclang))
 BJAM_ARGS+=            --without-fiber
 .else
 PLIST.fiber=           yes



Home | Main Index | Thread Index | Old Index