Received: by mail.netbsd.org (Postfix, from userid 605) id 181C384EDD; Mon, 1 Jan 2024 00:30:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4955484ED4 for ; Mon, 1 Jan 2024 00:30:19 +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 dNTamSTwY6hf for ; Mon, 1 Jan 2024 00:30:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8195684C86 for ; Mon, 1 Jan 2024 00:30:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 79423FA42; Mon, 1 Jan 2024 00:30:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170406901810740" MIME-Version: 1.0 Date: Mon, 1 Jan 2024 00:30:18 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/sysutils/xentools418 To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20240101003018.79423FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170406901810740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Mon Jan 1 00:30:18 UTC 2024 Modified Files: pkgsrc/sysutils/xentools418: Makefile Log Message: xentools418: Update commented-out SDL2 bl3 line and explain I recently added a patch to force-disable sdl2-config. Greg Woods pointed out that if one adds SDL2 bl3 (vs SDL that was commented-out previously), the package builds. This commit just updates the commented-out line and explains this. (I have no reason to think including SDL2 is a good idea.) To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/xentools418/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170406901810740 Content-Disposition: inline Content-Length: 1121 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/xentools418/Makefile diff -u pkgsrc/sysutils/xentools418/Makefile:1.1 pkgsrc/sysutils/xentools418/Makefile:1.2 --- pkgsrc/sysutils/xentools418/Makefile:1.1 Tue Nov 21 11:37:03 2023 +++ pkgsrc/sysutils/xentools418/Makefile Mon Jan 1 00:30:18 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2023/11/21 11:37:03 bouyer Exp $ +# $NetBSD: Makefile,v 1.2 2024/01/01 00:30:18 gdt Exp $ # # VERSION is set in version.mk as it is shared with other packages #PKGREVISION= 1 @@ -241,7 +241,10 @@ MAKE_ENV+= EXTRA_HOSTCFLAGS=${EXTRA_HOST .include "../../lang/python/batteries-included.mk" .include "../../lang/python/application.mk" .include "../../lang/python/extension.mk" -#.include "../../devel/SDL/buildlink3.mk" +# SDL2 is forced off via a patch. With that removed and the bl3 +# uncommented, the build completes with one additional file. However, +# there is no reason to add SDL2. +#.include "../../devel/SDL2/buildlink3.mk" .include "../../lang/ocaml/buildlink3.mk" .include "../../devel/ocaml-findlib/buildlink3.mk" BUILDLINK_API_DEPENDS.pciutils+= pciutils>=3.8 --_----------=_170406901810740--