Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 311C31A923A for ; Sat, 27 Nov 2021 11:27:27 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E3D6584E19; Sat, 27 Nov 2021 11:27:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2C3B084D74 for ; Sat, 27 Nov 2021 11:27:26 +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 dbrIAndoOmep for ; Sat, 27 Nov 2021 11:27:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B62B884D1B for ; Sat, 27 Nov 2021 11:27:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AFC5CFAEC; Sat, 27 Nov 2021 11:27:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163801244572100" MIME-Version: 1.0 Date: Sat, 27 Nov 2021 11:27:25 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/orc To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20211127112725.AFC5CFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163801244572100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Nov 27 11:27:25 UTC 2021 Modified Files: pkgsrc/devel/orc: Makefile Log Message: orc: fix for Darwin 12 To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/orc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163801244572100 Content-Disposition: inline Content-Length: 680 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.19 pkgsrc/devel/orc/Makefile:1.20 --- pkgsrc/devel/orc/Makefile:1.19 Mon Apr 12 11:22:42 2021 +++ pkgsrc/devel/orc/Makefile Sat Nov 27 11:27:25 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2021/04/12 11:22:42 nia Exp $ +# $NetBSD: Makefile,v 1.20 2021/11/27 11:27:25 adam Exp $ DISTNAME= orc-0.4.32 CATEGORIES= devel @@ -15,6 +15,8 @@ PKGCONFIG_OVERRIDE+= output/meson-priva PKGCONFIG_OVERRIDE_STAGE= post-configure MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/output/${PKGBASE} +# For Darwin +MAKE_ENV+= DYLD_LIBRARY_PATH=${WRKSRC}/output/${PKGBASE} MESON_ARGS+= -Dgtk_doc=disabled --_----------=_163801244572100--