Received: by mail.netbsd.org (Postfix, from userid 605) id C9D0B84D64; Sat, 1 Sep 2018 20:46:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D5D1784D3F for ; Sat, 1 Sep 2018 20:46:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id evEAAxS8tlkB for ; Sat, 1 Sep 2018 20:46:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 33EBD84CCC for ; Sat, 1 Sep 2018 20:46:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2C730FBF8; Sat, 1 Sep 2018 20:46:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153583476758160" MIME-Version: 1.0 Date: Sat, 1 Sep 2018 20:46:07 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/graphics/MesaLib7 To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20180901204607.2C730FBF8@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. --_----------=_153583476758160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Sat Sep 1 20:46:07 UTC 2018 Modified Files: pkgsrc/graphics/MesaLib7: Makefile buildlink3.mk Log Message: Remove dependency on pthread-stublib. This dependency has been conditional for NetBSD before 3.0 (!), thus removing it is no change in the package. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/graphics/MesaLib7/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/MesaLib7/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153583476758160 Content-Disposition: inline Content-Length: 1685 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/MesaLib7/Makefile diff -u pkgsrc/graphics/MesaLib7/Makefile:1.12 pkgsrc/graphics/MesaLib7/Makefile:1.13 --- pkgsrc/graphics/MesaLib7/Makefile:1.12 Tue Jul 3 05:03:19 2018 +++ pkgsrc/graphics/MesaLib7/Makefile Sat Sep 1 20:46:07 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2018/07/03 05:03:19 adam Exp $ +# $NetBSD: Makefile,v 1.13 2018/09/01 20:46:07 bsiegert Exp $ DISTNAME?= ${MESA_DISTNAME} PKGNAME= MesaLib7-${MESA_PKGVERSION} @@ -80,13 +80,7 @@ MAKE_FLAGS+= APP_CXX=${NATIVE_CXX:Q} .include "options.mk" -.if !empty(MACHINE_PLATFORM:MNetBSD-[12].*) -## -## NetBSD 2.x and earlier require pthread stubs -## -. include "../../devel/pthread-stublib/buildlink3.mk" -PTHREAD_STUBLIB= -L${PREFIX}/lib -Wl,-R${PREFIX}/lib -lpthstub -.elif !empty(MACHINE_PLATFORM:MNetBSD-*) +.if !empty(MACHINE_PLATFORM:MNetBSD-*) ## ## NetBSD 3.x and later have pthread stubs in libc ## Index: pkgsrc/graphics/MesaLib7/buildlink3.mk diff -u pkgsrc/graphics/MesaLib7/buildlink3.mk:1.3 pkgsrc/graphics/MesaLib7/buildlink3.mk:1.4 --- pkgsrc/graphics/MesaLib7/buildlink3.mk:1.3 Sun Jan 7 13:04:12 2018 +++ pkgsrc/graphics/MesaLib7/buildlink3.mk Sat Sep 1 20:46:07 2018 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.3 2018/01/07 13:04:12 rillig Exp $ +# $NetBSD: buildlink3.mk,v 1.4 2018/09/01 20:46:07 bsiegert Exp $ BUILDLINK_TREE+= MesaLib7 @@ -28,10 +28,6 @@ PKG_BUILD_OPTIONS.MesaLib7+= dri . include "../../graphics/MesaLib/dri.mk" .endif -.if !empty(MACHINE_PLATFORM:MNetBSD-[12].*) -.include "../../devel/pthread-stublib/buildlink3.mk" -.endif - .include "../../x11/libXext/buildlink3.mk" .endif # MESALIB7_BUILDLINK3_MK --_----------=_153583476758160--