Received: by mail.netbsd.org (Postfix, from userid 605) id 667DB84EAE; Fri, 6 Jan 2023 10:58:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 95B3684D66 for ; Fri, 6 Jan 2023 10:58:08 +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 ZUXVzKSX07o5 for ; Fri, 6 Jan 2023 10:58:08 +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 E9D0D84D37 for ; Fri, 6 Jan 2023 10:58:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DDC81FA90; Fri, 6 Jan 2023 10:58:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1673002687211840" MIME-Version: 1.0 Date: Fri, 6 Jan 2023 10:58:07 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/graphics/xpaint To: pkgsrc-changes@NetBSD.org Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20230106105807.DDC81FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1673002687211840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Fri Jan 6 10:58:07 UTC 2023 Modified Files: pkgsrc/graphics/xpaint: Makefile Log Message: graphics/xpaint: fix building on Linux. To generate a diff of this commit: cvs rdiff -u -r1.81 -r1.82 pkgsrc/graphics/xpaint/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1673002687211840 Content-Disposition: inline Content-Length: 846 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/xpaint/Makefile diff -u pkgsrc/graphics/xpaint/Makefile:1.81 pkgsrc/graphics/xpaint/Makefile:1.82 --- pkgsrc/graphics/xpaint/Makefile:1.81 Tue Jan 3 17:37:33 2023 +++ pkgsrc/graphics/xpaint/Makefile Fri Jan 6 10:58:07 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.81 2023/01/03 17:37:33 wiz Exp $ +# $NetBSD: Makefile,v 1.82 2023/01/06 10:58:07 vins Exp $ DISTNAME= xpaint-2.7.8.1 PKGREVISION= 12 @@ -44,4 +44,10 @@ pre-configure: .include "../../x11/libXext/buildlink3.mk" .include "../../x11/libXpm/buildlink3.mk" .include "../../x11/libXaw3d/buildlink3.mk" +.include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Linux" +# undefined reference to symbol 'dlclose@@GLIBC_2.2.5' +. include "../../mk/dlopen.buildlink3.mk" +LDFLAGS+= ${BUILDLINK_LDADD.dl:Q} +.endif .include "../../mk/bsd.pkg.mk" --_----------=_1673002687211840--