Received: by mail.netbsd.org (Postfix, from userid 605) id E256284D50; Sun, 23 May 2021 20:58:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 28EED84D14 for ; Sun, 23 May 2021 20:58:21 +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 n6o_G6kivXS1 for ; Sun, 23 May 2021 20:58:20 +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 7AD6184CEF for ; Sun, 23 May 2021 20:58:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6DF2FFA95; Sun, 23 May 2021 20:58:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162180350038060" MIME-Version: 1.0 Date: Sun, 23 May 2021 20:58:20 +0000 From: "Dr. Thomas Orgis" Subject: CVS commit: pkgsrc/x11/fltk13 To: pkgsrc-changes@NetBSD.org Reply-To: thor@netbsd.org X-Mailer: log_accum Message-Id: <20210523205820.6DF2FFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162180350038060 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: thor Date: Sun May 23 20:58:20 UTC 2021 Modified Files: pkgsrc/x11/fltk13: Makefile Log Message: x11/fltk13: add explicit depends on libxcb and libXcursor These are otherwise found in a host system and possibly cause trouble. Note that verifypc still has some suggestions that we might want to add: verifypc: fontconfig not a direct dependency verifypc: freetype2 not a direct dependency verifypc: x11 not a direct dependency verifypc: xdmcp not a direct dependency verifypc: xrender not a direct dependency verifypc: zlib not a direct dependency To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/x11/fltk13/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162180350038060 Content-Disposition: inline Content-Length: 822 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/fltk13/Makefile diff -u pkgsrc/x11/fltk13/Makefile:1.37 pkgsrc/x11/fltk13/Makefile:1.38 --- pkgsrc/x11/fltk13/Makefile:1.37 Mon May 17 10:38:48 2021 +++ pkgsrc/x11/fltk13/Makefile Sun May 23 20:58:20 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2021/05/17 10:38:48 micha Exp $ +# $NetBSD: Makefile,v 1.38 2021/05/23 20:58:20 thor Exp $ DISTNAME= fltk-1.3.6-source PKGNAME= ${DISTNAME:S/-source//} @@ -68,6 +68,8 @@ CONFIGURE_ARGS+= --disable-localjpeg --d . include "../../x11/libXext/buildlink3.mk" . include "../../x11/libXft/buildlink3.mk" . include "../../x11/libXinerama/buildlink3.mk" +. include "../../x11/libxcb/buildlink3.mk" +. include "../../x11/libXcursor/buildlink3.mk" BUILDLINK_DEPMETHOD.libXt?= build . include "../../x11/libXt/buildlink3.mk" .endif --_----------=_162180350038060--