From owner-svn-ports-all@freebsd.org Thu Sep 3 03:52:31 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 19AE33D806D; Thu, 3 Sep 2020 03:52:31 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bhn266tfpz3WML; Thu, 3 Sep 2020 03:52:30 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CFA20155DC; Thu, 3 Sep 2020 03:52:30 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0833qUbG064729; Thu, 3 Sep 2020 03:52:30 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0833qUN5064728; Thu, 3 Sep 2020 03:52:30 GMT (envelope-from novel@FreeBSD.org) Message-Id: <202009030352.0833qUN5064728@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Thu, 3 Sep 2020 03:52:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r547408 - head/devel/libvirt/files X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: head/devel/libvirt/files X-SVN-Commit-Revision: 547408 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Sep 2020 03:52:31 -0000 Author: novel Date: Thu Sep 3 03:52:30 2020 New Revision: 547408 URL: https://svnweb.freebsd.org/changeset/ports/547408 Log: devel/libvirt: fix build on 11.x There are some direct test dependencies missing, which is tolerated by ld(1) on FreeBSD 12.x and newer, but is not tolerated on FreeBSD 11.x. Add these dependencies to fix the build. PR: 249056 Reported by: ddrinnon@cdor.net Added: head/devel/libvirt/files/patch-tests_meson.build (contents, props changed) Added: head/devel/libvirt/files/patch-tests_meson.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libvirt/files/patch-tests_meson.build Thu Sep 3 03:52:30 2020 (r547408) @@ -0,0 +1,16 @@ +--- tests/meson.build.orig 2020-09-03 01:56:27 UTC ++++ tests/meson.build +@@ -10,11 +10,13 @@ tests_dep = declare_dependency( + dlopen_dep, + glib_dep, + gnutls_dep, ++ kvm_dep, + libnl_dep, + libxml_dep, + rpc_dep, + sasl_dep, + selinux_dep, ++ util_dep, + xdr_dep, + yajl_dep, + ],