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:   minskim
Date:           Mon May  7 18:47:02 UTC 2018

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

Log Message:
devel/boost-libs: fiber doesn't build on Darwin-1[0-5].*

fiber requires thread_local, and clang in Xcode 7 or earlier doesn't
allow it.


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 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.68 pkgsrc/devel/boost-libs/Makefile:1.69
--- pkgsrc/devel/boost-libs/Makefile:1.68       Sun May  6 18:56:35 2018
+++ pkgsrc/devel/boost-libs/Makefile    Mon May  7 18:47:02 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.68 2018/05/06 18:56:35 minskim Exp $
+# $NetBSD: Makefile,v 1.69 2018/05/07 18:47:02 minskim Exp $
 
 BOOST_PACKAGE=         libs
 BOOST_COMMENT=         (binary libraries)
@@ -23,7 +23,8 @@ BJAM_ARGS+=           --without-coroutine
 BJAM_ARGS+=            --without-fiber
 .else
 PLIST.context=         yes
-.if !(${OPSYS} == "NetBSD" && !empty(PKGSRC_COMPILER:Mgcc))
+.if !(${OPSYS} == "NetBSD" && !empty(PKGSRC_COMPILER:Mgcc)) && \
+    empty(MACHINE_PLATFORM:MDarwin-1[0-5].*-*)
 PLIST.fiber=           yes
 .endif
 .endif



Home | Main Index | Thread Index | Old Index