Received: by mail.netbsd.org (Postfix, from userid 605) id D7C1D84EEE; Wed, 21 Feb 2024 11:12:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708513923; bh=9AllYn3B/hc396uHLGra4r93OYnaEk5egU0PDESnHmU=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=Ztx+Hs8jYWzntpbXsZVhC+d83yyed3EVxSYtPadF3bT3s/nsUWU+Pnf59OQy0Ck6N wR8Ok393nEyEP7hwjOrx36puW5khPhQC13bnAjtPhulj7vmpOs5tXB60cftqRc93Yl AmE9OAWfcE3pxateFkQXttGql4BfBgyvnvV/b7Ug= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C8CB584D4E for ; Wed, 21 Feb 2024 11:12:01 +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 ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id N3YMAtsXQmhu for ; Wed, 21 Feb 2024 11:12:01 +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 5BD8F84D07 for ; Wed, 21 Feb 2024 11:12:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708513921; bh=9AllYn3B/hc396uHLGra4r93OYnaEk5egU0PDESnHmU=; h=Date:From:Subject:To:Reply-To; b=vaKkQrx0dthIzgqzfGncL2IJ1nrgTQ2ho6Mm+c0dqmhw3RhEB29ajC9Dl2A2h3MLn fEispRAheaGQtXjHNMMUvsCsWgivBKtz/qBQctQu6i07/qfxfzKucyp58KPhJziLYd N3XWjooiUh12ZX8CbaB0AQb4XKvnSrCNpjyVZHKY= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4B84AF9F4; Wed, 21 Feb 2024 11:12:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170851392172430" MIME-Version: 1.0 Date: Wed, 21 Feb 2024 11:12:01 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/orc To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20240221111201.4B84AF9F4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170851392172430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Feb 21 11:12:01 UTC 2024 Modified Files: pkgsrc/devel/orc: Makefile Log Message: orc: Fix building with compilers that default to c89 To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/orc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170851392172430 Content-Disposition: inline Content-Length: 622 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/orc/Makefile diff -u pkgsrc/devel/orc/Makefile:1.25 pkgsrc/devel/orc/Makefile:1.26 --- pkgsrc/devel/orc/Makefile:1.25 Fri Feb 9 14:39:44 2024 +++ pkgsrc/devel/orc/Makefile Wed Feb 21 11:12:01 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2024/02/09 14:39:44 adam Exp $ +# $NetBSD: Makefile,v 1.26 2024/02/21 11:12:01 nia Exp $ DISTNAME= orc-0.4.37 CATEGORIES= devel @@ -20,6 +20,9 @@ MAKE_ENV+= DYLD_LIBRARY_PATH=${WRKSRC}/o MESON_ARGS+= -Dgtk_doc=disabled +USE_CC_FEATURES+= c99 +FORCE_C_STD= c99 + PYTHON_FOR_BUILD_ONLY= tool .include "../../devel/meson/build.mk" --_----------=_170851392172430--