Received: by mail.netbsd.org (Postfix, from userid 605) id 5E6A284D62; Thu, 14 Nov 2019 12:26:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DC93784CE8 for ; Thu, 14 Nov 2019 12:26:26 +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 L1BU86QGo2Ez for ; Thu, 14 Nov 2019 12:26:26 +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 3D55484CDA for ; Thu, 14 Nov 2019 12:26:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 34FD6FA97; Thu, 14 Nov 2019 12:26:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157373438662020" MIME-Version: 1.0 Date: Thu, 14 Nov 2019 12:26:26 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/glib2/patches To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20191114122626.34FD6FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_157373438662020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Thu Nov 14 12:26:26 UTC 2019 Added Files: pkgsrc/devel/glib2/patches: patch-glib_tests_meson.build Log Message: Add a missing patch To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 \ pkgsrc/devel/glib2/patches/patch-glib_tests_meson.build Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157373438662020 Content-Disposition: inline Content-Length: 1272 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/glib2/patches/patch-glib_tests_meson.build diff -u /dev/null pkgsrc/devel/glib2/patches/patch-glib_tests_meson.build:1.1 --- /dev/null Thu Nov 14 12:26:26 2019 +++ pkgsrc/devel/glib2/patches/patch-glib_tests_meson.build Thu Nov 14 12:26:26 2019 @@ -0,0 +1,27 @@ +$NetBSD: patch-glib_tests_meson.build,v 1.1 2019/11/14 12:26:26 ryoon Exp $ + +* Fix gtester is not defined error during configure. + +--- glib/tests/meson.build.orig 2019-10-21 17:18:40.000000000 +0000 ++++ glib/tests/meson.build +@@ -221,20 +221,3 @@ executable('testing-helper', 'testing-he + install_dir: installed_tests_execdir, + install: installed_tests_enabled, + ) +- +-# some testing of gtester functionality +-if not meson.is_cross_build() and host_system != 'windows' +- xmllint = find_program('xmllint', required: false) +- if xmllint.found() +- tmpsample_xml = custom_target('tmpsample.xml', +- output : 'tmpsample.xml', +- command : [ gtester, '-k', '--quiet', '--i-know-this-is-deprecated', '-o', '@OUTPUT@', +- '--test-arg=--gtester-selftest', gtester]) +- +- test('gtester-xmllint-check', xmllint, +- args : ['--noout', tmpsample_xml], +- env : test_env, +- suite : ['glib'], +- ) +- endif +-endif --_----------=_157373438662020--