Received: by mail.netbsd.org (Postfix, from userid 605) id D570E84D27; Sun, 9 Dec 2018 03:04:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D216684CF1 for ; Sun, 9 Dec 2018 03:04:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id pTM6Ao8U3cgN for ; Sun, 9 Dec 2018 03:04:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D141784C8D for ; Sun, 9 Dec 2018 03:04:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9B17FB16; Sun, 9 Dec 2018 03:04:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1544324674254970" MIME-Version: 1.0 Date: Sun, 9 Dec 2018 03:04:34 +0000 From: "Sevan Janiyan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: sevan@netbsd.org X-Mailer: log_accum Message-Id: <20181209030434.C9B17FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1544324674254970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sevan Date: Sun Dec 9 03:04:34 UTC 2018 Modified Files: pkgsrc/databases/lmdb: Makefile pkgsrc/databases/sqlite3: Makefile pkgsrc/devel/userspace-rcu: Makefile pkgsrc/graphics/babl: Makefile pkgsrc/graphics/exiv2: Makefile pkgsrc/multimedia/xvidcore: Makefile pkgsrc/net/libfilezilla: Makefile Log Message: Need pthread support, make sure a substitue is present if OS lacks support natively, e.g Minix at present. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/lmdb/Makefile cvs rdiff -u -r1.126 -r1.127 pkgsrc/databases/sqlite3/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/userspace-rcu/Makefile cvs rdiff -u -r1.22 -r1.23 pkgsrc/graphics/babl/Makefile cvs rdiff -u -r1.38 -r1.39 pkgsrc/graphics/exiv2/Makefile cvs rdiff -u -r1.46 -r1.47 pkgsrc/multimedia/xvidcore/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/libfilezilla/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1544324674254970 Content-Disposition: inline Content-Length: 4672 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/lmdb/Makefile diff -u pkgsrc/databases/lmdb/Makefile:1.6 pkgsrc/databases/lmdb/Makefile:1.7 --- pkgsrc/databases/lmdb/Makefile:1.6 Fri Nov 25 15:50:13 2016 +++ pkgsrc/databases/lmdb/Makefile Sun Dec 9 03:04:34 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2016/11/25 15:50:13 fhajny Exp $ +# $NetBSD: Makefile,v 1.7 2018/12/09 03:04:34 sevan Exp $ DISTNAME= LMDB-0.9.18 PKGNAME= ${DISTNAME:tl} @@ -27,4 +27,5 @@ INSTALLATION_DIRS+= include INSTALLATION_DIRS+= lib INSTALLATION_DIRS+= ${PKGMANDIR}/man1 +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/databases/sqlite3/Makefile diff -u pkgsrc/databases/sqlite3/Makefile:1.126 pkgsrc/databases/sqlite3/Makefile:1.127 --- pkgsrc/databases/sqlite3/Makefile:1.126 Mon Sep 17 16:14:07 2018 +++ pkgsrc/databases/sqlite3/Makefile Sun Dec 9 03:04:34 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.126 2018/09/17 16:14:07 adam Exp $ +# $NetBSD: Makefile,v 1.127 2018/12/09 03:04:34 sevan Exp $ .include "Makefile.common" @@ -51,6 +51,7 @@ LIBS+= ${BUILDLINK_LDADD.dl} LDFLAGS.SCO_SV+= -lpthread .endif +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/readline.buildlink3.mk" .include "../../mk/dlopen.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/userspace-rcu/Makefile diff -u pkgsrc/devel/userspace-rcu/Makefile:1.11 pkgsrc/devel/userspace-rcu/Makefile:1.12 --- pkgsrc/devel/userspace-rcu/Makefile:1.11 Tue May 26 14:32:57 2015 +++ pkgsrc/devel/userspace-rcu/Makefile Sun Dec 9 03:04:34 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2015/05/26 14:32:57 pettai Exp $ +# $NetBSD: Makefile,v 1.12 2018/12/09 03:04:34 sevan Exp $ # DISTNAME= userspace-rcu-0.8.7 @@ -26,4 +26,5 @@ PKGCONFIG_OVERRIDE+= liburcu-qsbr.pc.in PKGCONFIG_OVERRIDE+= liburcu-signal.pc.in PKGCONFIG_OVERRIDE+= liburcu.pc.in +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/graphics/babl/Makefile diff -u pkgsrc/graphics/babl/Makefile:1.22 pkgsrc/graphics/babl/Makefile:1.23 --- pkgsrc/graphics/babl/Makefile:1.22 Thu Nov 22 12:59:07 2018 +++ pkgsrc/graphics/babl/Makefile Sun Dec 9 03:04:34 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2018/11/22 12:59:07 ryoon Exp $ +# $NetBSD: Makefile,v 1.23 2018/12/09 03:04:34 sevan Exp $ DISTNAME= babl-0.1.60 CATEGORIES= graphics @@ -26,5 +26,6 @@ PKGCONFIG_OVERRIDE+= babl.pc.in #CONFIGURE_ARGS+= --disable-sse #.endif +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/dlopen.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/graphics/exiv2/Makefile diff -u pkgsrc/graphics/exiv2/Makefile:1.38 pkgsrc/graphics/exiv2/Makefile:1.39 --- pkgsrc/graphics/exiv2/Makefile:1.38 Mon Oct 5 08:42:25 2015 +++ pkgsrc/graphics/exiv2/Makefile Sun Dec 9 03:04:34 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2015/10/05 08:42:25 richard Exp $ +# $NetBSD: Makefile,v 1.39 2018/12/09 03:04:34 sevan Exp $ # Race condition between exiv2.cpp and creation of exv_conf.h MAKE_JOBS_SAFE= no @@ -11,6 +11,7 @@ PKGCONFIG_OVERRIDE= config/exiv2.pc.in LDFLAGS.Linux+= -ldl LIBS.SunOS+= -lsocket -lnsl +.include "../../mk/pthread.buildlink3.mk" .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" Index: pkgsrc/multimedia/xvidcore/Makefile diff -u pkgsrc/multimedia/xvidcore/Makefile:1.46 pkgsrc/multimedia/xvidcore/Makefile:1.47 --- pkgsrc/multimedia/xvidcore/Makefile:1.46 Sun May 27 15:22:55 2018 +++ pkgsrc/multimedia/xvidcore/Makefile Sun Dec 9 03:04:34 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.46 2018/05/27 15:22:55 tsutsui Exp $ +# $NetBSD: Makefile,v 1.47 2018/12/09 03:04:34 sevan Exp $ DISTNAME= xvidcore-1.3.3 PKGREVISION= 1 @@ -51,4 +51,5 @@ post-install: ${LN} -sf ${DESTDIR}${PREFIX}/lib/libxvidcore.4.dylib ${DESTDIR}${PREFIX}/lib/libxvidcore.dylib .endif +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/libfilezilla/Makefile diff -u pkgsrc/net/libfilezilla/Makefile:1.18 pkgsrc/net/libfilezilla/Makefile:1.19 --- pkgsrc/net/libfilezilla/Makefile:1.18 Sat Dec 1 11:15:42 2018 +++ pkgsrc/net/libfilezilla/Makefile Sun Dec 9 03:04:34 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2018/12/01 11:15:42 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2018/12/09 03:04:34 sevan Exp $ DISTNAME= libfilezilla-0.15.1 CATEGORIES= devel @@ -22,4 +22,5 @@ GCC_REQD+= 4.9 BUILDLINK_API_DEPENDS.nettle+= nettle>=3.1 .include "../../security/nettle/buildlink3.mk" +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1544324674254970--