Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Sv8YhTkr; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=EyUu0ikk Received: by mail.netbsd.org (Postfix, from userid 605) id 4E60084FF5; Tue, 9 Apr 2024 20:23:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712694226; bh=w/x/s4sfkbygzW3ZtYq3ddMPe0XylsXj/v+6oJ1u2s8=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=Sv8YhTkr3tZ9sxk47ClkUVL+0yexE3YN9+5Phag1Zd/EdNqJ2Mj8Tfws9CzoE3rpW 5/IIxU96JbbVehwkmtZ7FOBZcRsss9jnrCZLHXd5fGw3pPcVNecbyu9h5oZ/DKDpL7 HJAp/F43bHMCckdbgNdU260ROq+q5uqthLgUdXxg= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3CA0E85026 for ; Tue, 9 Apr 2024 20:23:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id YpYEwYgNoXEj for ; Tue, 9 Apr 2024 20:23:44 +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 8B8A384FF9 for ; Tue, 9 Apr 2024 20:23:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712694224; bh=w/x/s4sfkbygzW3ZtYq3ddMPe0XylsXj/v+6oJ1u2s8=; h=Date:From:Subject:To:Reply-To; b=EyUu0ikk05rfdDoXDzB6/uJSymYLRkpdSS6g4aSgkBHFCOIGd83gBBEqrGshMIIMl VhFvZ8i9eLfgOWMegOzYm3MktgRx1IO1M1lx3JhW2XQYBolN4HaKtPFURRWrnelkhi 0t1DmFuavheg/tiEU1BopS/Pd6/fSNaTWUsM06eE= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 821F2FA2C; Tue, 9 Apr 2024 20:23:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712694224294990" MIME-Version: 1.0 Date: Tue, 9 Apr 2024 20:23:44 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/glib2 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240409202344.821F2FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712694224294990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Apr 9 20:23:44 UTC 2024 Modified Files: pkgsrc/devel/glib2: Makefile Log Message: glib2: explicityl disable introspection Fixes build when gobject-introspection is installed To generate a diff of this commit: cvs rdiff -u -r1.301 -r1.302 pkgsrc/devel/glib2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712694224294990 Content-Disposition: inline Content-Length: 652 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/glib2/Makefile diff -u pkgsrc/devel/glib2/Makefile:1.301 pkgsrc/devel/glib2/Makefile:1.302 --- pkgsrc/devel/glib2/Makefile:1.301 Tue Apr 9 16:57:18 2024 +++ pkgsrc/devel/glib2/Makefile Tue Apr 9 20:23:44 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.301 2024/04/09 16:57:18 wiz Exp $ +# $NetBSD: Makefile,v 1.302 2024/04/09 20:23:44 wiz Exp $ .include "Makefile.common" @@ -9,6 +9,7 @@ TOOL_DEPENDS+= ${PYPKGPREFIX}-packaging- .include "options.mk" +MESON_ARGS+= -Dintrospection=disabled MESON_ARGS+= -Dinstalled_tests=false # Avoid linux dependency on libmount-dev MESON_ARGS+= -Dlibmount=disabled --_----------=_1712694224294990--