From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110822; cv=none; d=zoho.com; s=zohoarc; b=B3Cq5ctj9qQ6+GkTY7pdbamICJXMu2Wq3M0+NML1+aCyktiC98EWXST1GTukhk5uwDp8EKxqyrETOwhenC6UHsK30j379Ffcv1hg+xmh2dIyK15ONXXoW8ux0NS4VoVDGZ8++yBaokh4u6UbH4Qn1pcv1OrYQTokaxnFecLH/90= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110822; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=5o7rR83nVRoo+ybzNPLYH/6oK6m9f4iLGmuYPRmYMPQ=; b=JNe7wJb9Vluq5OhFmJwJimw3Nm1kjhWaL5zqWdnubRLI6c93TTe0Ez2uRAdCy9FWE7TNrtvFhRP8AIyt+57jyCNgNuJplDnACWDQpfOacYE4hj6bWP5y57aJYN8UpIRp3rQReFU8/kPFga+Ykf4IgHOQZ18f9TFH2WXQXyyG6I4= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1570110822036213.64178976361984; Thu, 3 Oct 2019 06:53:42 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 2836410DCCA7; Thu, 3 Oct 2019 13:53:40 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id F31EE1001B2C; Thu, 3 Oct 2019 13:53:39 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id AFF5F4EE70; Thu, 3 Oct 2019 13:53:39 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrONp019849 for ; Thu, 3 Oct 2019 09:53:24 -0400 Received: by smtp.corp.redhat.com (Postfix) id 6687F608C2; Thu, 3 Oct 2019 13:53:24 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id B8317608A5; Thu, 3 Oct 2019 13:53:23 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:08 +0100 Message-Id: <20191003135318.19149-2-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 01/11] bhyve: stop using private gnulib _getopt_internal_r func X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.64]); Thu, 03 Oct 2019 13:53:40 +0000 (UTC) The _getopt_internal_r func is not intended for public use, it is an internal function shared between the gnulib getopt and argp modules. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- src/bhyve/bhyve_parse_command.c | 88 +++++++++++++++++---------------- 1 file changed, 46 insertions(+), 42 deletions(-) diff --git a/src/bhyve/bhyve_parse_command.c b/src/bhyve/bhyve_parse_comman= d.c index 7d460e9824..0bfe17c08c 100644 --- a/src/bhyve/bhyve_parse_command.c +++ b/src/bhyve/bhyve_parse_command.c @@ -23,7 +23,6 @@ =20 #include #include -#include =20 #include "bhyve_capabilities.h" #include "bhyve_command.h" @@ -633,6 +632,14 @@ bhyveParseBhyvePCIArg(virDomainDefPtr def, return -1; } =20 +#define CONSUME_ARG(var) \ + if ((opti + 1) =3D=3D argc) { \ + virReportError(VIR_ERR_INVALID_ARG, "Missing argument for '%s'", \ + argv[opti]); \ + goto error; \ + } \ + var =3D argv[++opti] + /* * Parse the /usr/sbin/bhyve command line. */ @@ -642,28 +649,24 @@ bhyveParseBhyveCommandLine(virDomainDefPtr def, unsigned caps, int argc, char **argv) { - int c; - const char optstr[] =3D "abehuwxACHIPSWYp:g:c:s:m:l:U:"; int vcpus =3D 1; size_t memory =3D 0; unsigned nahcidisks =3D 0; unsigned nvirtiodisks =3D 0; - struct _getopt_data *parser; - - if (!argv) - goto error; + size_t opti; + const char *arg; =20 - if (VIR_ALLOC(parser) < 0) - goto error; + for (opti =3D 1; opti < argc; opti++) { + if (argv[opti][0] !=3D '-') + break; =20 - while ((c =3D _getopt_internal_r(argc, argv, optstr, - NULL, NULL, 0, parser, 0)) !=3D -1) { - switch (c) { + switch (argv[opti][1]) { case 'A': def->features[VIR_DOMAIN_FEATURE_ACPI] =3D VIR_TRISTATE_SWITCH= _ON; break; case 'c': - if (virStrToLong_i(parser->optarg, NULL, 10, &vcpus) < 0) { + CONSUME_ARG(arg); + if (virStrToLong_i(arg, NULL, 10, &vcpus) < 0) { virReportError(VIR_ERR_OPERATION_FAILED, "%s", _("Failed to parse number of vCPUs")); goto error; @@ -674,20 +677,23 @@ bhyveParseBhyveCommandLine(virDomainDefPtr def, goto error; break; case 'l': - if (bhyveParseBhyveLPCArg(def, caps, parser->optarg)) + CONSUME_ARG(arg); + if (bhyveParseBhyveLPCArg(def, caps, arg)) goto error; break; case 's': + CONSUME_ARG(arg); if (bhyveParseBhyvePCIArg(def, xmlopt, caps, &nahcidisks, &nvirtiodisks, - parser->optarg)) + arg)) goto error; break; case 'm': - if (bhyveParseMemsize(parser->optarg, &memory)) { + CONSUME_ARG(arg); + if (bhyveParseMemsize(arg, &memory)) { virReportError(VIR_ERR_OPERATION_FAILED, "%s", _("Failed to parse memory")); goto error; @@ -709,19 +715,23 @@ bhyveParseBhyveCommandLine(virDomainDefPtr def, def->clock.offset =3D VIR_DOMAIN_CLOCK_OFFSET_UTC; break; case 'U': - if (virUUIDParse(parser->optarg, def->uuid) < 0) { + CONSUME_ARG(arg); + if (virUUIDParse(arg, def->uuid) < 0) { virReportError(VIR_ERR_INTERNAL_ERROR, - _("Cannot parse UUID '%s'"), parser->optarg= ); + _("Cannot parse UUID '%s'"), arg); goto error; } break; case 'S': def->mem.locked =3D true; break; + case 'p': + case 'g': + CONSUME_ARG(arg); } } =20 - if (argc !=3D parser->optind) { + if (argc !=3D opti) { virReportError(VIR_ERR_OPERATION_FAILED, "%s", _("Failed to parse arguments for bhyve command")); goto error; @@ -738,11 +748,9 @@ bhyveParseBhyveCommandLine(virDomainDefPtr def, goto error; } =20 - VIR_FREE(parser); return 0; =20 error: - VIR_FREE(parser); return -1; } =20 @@ -753,42 +761,38 @@ static int bhyveParseBhyveLoadCommandLine(virDomainDefPtr def, int argc, char **argv) { - int c; /* bhyveload called with default arguments when only -m and -d are giv= en. * Store this in a bit field and check if only those two options are g= iven * later */ unsigned arguments =3D 0; size_t memory =3D 0; - struct _getopt_data *parser; size_t i =3D 0; int ret =3D -1; + size_t opti; + const char *arg; =20 - const char optstr[] =3D "CSc:d:e:h:l:m:"; - - if (!argv) - goto error; - - if (VIR_ALLOC(parser) < 0) - goto error; + for (opti =3D 1; opti < argc; opti++) { + if (argv[opti][0] !=3D '-') + break; =20 - while ((c =3D _getopt_internal_r(argc, argv, optstr, - NULL, NULL, 0, parser, 0)) !=3D -1) { - switch (c) { + switch (argv[opti][1]) { case 'd': + CONSUME_ARG(arg); arguments |=3D 1; /* Iterate over the disks of the domain trying to match up the * source */ for (i =3D 0; i < def->ndisks; i++) { if (STREQ(virDomainDiskGetSource(def->disks[i]), - parser->optarg)) { + arg)) { def->disks[i]->info.bootIndex =3D i; break; } } break; case 'm': + CONSUME_ARG(arg); arguments |=3D 2; - if (bhyveParseMemsize(parser->optarg, &memory)) { + if (bhyveParseMemsize(arg, &memory)) { virReportError(VIR_ERR_OPERATION_FAILED, "%s", _("Failed to parse memory")); goto error; @@ -806,6 +810,12 @@ bhyveParseBhyveLoadCommandLine(virDomainDefPtr def, } } =20 + if (argc !=3D opti) { + virReportError(VIR_ERR_OPERATION_FAILED, "%s", + _("Failed to parse arguments for bhyve command")); + goto error; + } + if (arguments !=3D 3) { /* Set os.bootloader since virDomainDefFormatInternal will only fo= rmat * the bootloader arguments if os->bootloader is set. */ @@ -815,12 +825,7 @@ bhyveParseBhyveLoadCommandLine(virDomainDefPtr def, def->os.bootloaderArgs =3D virStringListJoin((const char**) &argv[= 1], " "); } =20 - if (argc !=3D parser->optind) { - virReportError(VIR_ERR_OPERATION_FAILED, "%s", - _("Failed to parse arguments for bhyveload command"= )); - goto error; - } - + fprintf(stderr, "Ok %s %s %d\n", def->name, argv[argc], argc); if (def->name =3D=3D NULL) { if (VIR_STRDUP(def->name, argv[argc]) < 0) goto error; @@ -834,7 +839,6 @@ bhyveParseBhyveLoadCommandLine(virDomainDefPtr def, =20 ret =3D 0; error: - VIR_FREE(parser); return ret; } =20 --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110829; cv=none; d=zoho.com; s=zohoarc; b=Ttv/uWE7KrcBj/q2KMT/+iEgh7eGVwxAMEslJudG3OjO9Uui3/5ls7yXw+yFWia3qTEPvrvYW9tFBn78B2zquL2CNY2gPZIwevSdA78ZUY2M63L3kwNvjCDWARgMtz1zf3AopwXppeKi3KphGyL0foFoerLIzD7Y7tRFfoHmdZc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110829; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=RGmiUz+o0Zbk4Oyi7hnLkT6kbgO8QC0S1o7glYy3k/Q=; b=flk29fPENOfKVYL1xajOO3EJdGb0IQlXyYkDX8UHl0lnJ7kFE9D6cRugnW3Qj5X29apIOi8MguXRNVc3d1QuJT98kYjGqbgWyIzO9yIzxiRvunRrOuKJAtsoHAZClNg2SFXXCMR2GGmdMnfXkmLDH6UyqvDW7q7uSEYD/vojKCs= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1570110829633276.77540350268816; Thu, 3 Oct 2019 06:53:49 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id DEBBE89810D; Thu, 3 Oct 2019 13:53:47 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id BB1AD5D9DC; Thu, 3 Oct 2019 13:53:47 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 7E4B44EE6D; Thu, 3 Oct 2019 13:53:47 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrPKG019861 for ; Thu, 3 Oct 2019 09:53:25 -0400 Received: by smtp.corp.redhat.com (Postfix) id 35101608C2; Thu, 3 Oct 2019 13:53:25 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id A6425608A5; Thu, 3 Oct 2019 13:53:24 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:09 +0100 Message-Id: <20191003135318.19149-3-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 02/11] build: drop the getopt-posix gnulib module X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.67]); Thu, 03 Oct 2019 13:53:48 +0000 (UTC) The getopt-posix module fixes a problem with optind being incorrectly set after a failed option parse. This is not something that matters to libvirt code. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- bootstrap.conf | 1 - po/POTFILES | 1 - 2 files changed, 2 deletions(-) diff --git a/bootstrap.conf b/bootstrap.conf index 4f944a9c23..22f6153f3c 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -51,7 +51,6 @@ fsync getaddrinfo getcwd-lgpl gethostname -getopt-posix getpass getpeername getsockname diff --git a/po/POTFILES b/po/POTFILES index 35fc26c4b9..9385fc4e15 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -1,5 +1,4 @@ gnulib/lib/gai_strerror.c -gnulib/lib/getopt.c gnulib/lib/regcomp.c src/access/viraccessdriverpolkit.c src/access/viraccessmanager.c --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110833; cv=none; d=zoho.com; s=zohoarc; b=D7NID5qTf1A1zzI1GGcHISX9CkSmQFg/yfTg/gNnanZxBjRhmydlIOOLxsF7zGZC67dNFUhQpTc4Cea7XJc8gnd28xuwSx4vBJtept4aNFUbNi3COGeSouR0iB3NzDClFRpoFB5Vv6qxEFA8jRNPNCXdUK0wrugkcyqc+dxgS1c= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110833; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=Vv0FsEG3WQGNiu18UDTIwwMOPKwUpFR8QIx3eDu8xX8=; b=eTMLHlXkrqMZ5Q5/8KR8YlEZSXUebh+3+MV/weq5QSISoZbALneofgsB6tquoXwloFob8F4HdtvSarlWAgpOCAnwJDm7dZNMDCTGnpsRp6hqKawYqf2q5fY62HNMstlQk9P0KMSYF1d9QN6laft8tjaqO2rt7yyrsz0jw6vNvsY= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1570110833285372.13661202478977; Thu, 3 Oct 2019 06:53:53 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 914D410CC1E3; Thu, 3 Oct 2019 13:53:51 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 6238B5D6A9; Thu, 3 Oct 2019 13:53:51 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 0E7844EE72; Thu, 3 Oct 2019 13:53:51 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrQWq019870 for ; Thu, 3 Oct 2019 09:53:26 -0400 Received: by smtp.corp.redhat.com (Postfix) id 034D9608A5; Thu, 3 Oct 2019 13:53:26 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id 74EDC60925; Thu, 3 Oct 2019 13:53:25 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:10 +0100 Message-Id: <20191003135318.19149-4-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 03/11] build: drop the inet_pton gnulib module X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.65]); Thu, 03 Oct 2019 13:53:52 +0000 (UTC) All use of this function was purged a long time ago in favour of getaddrinfo commit a8ae7d19f4ace62ff3f364c628cbc16baa9b080c Author: Daniel P. Berrange Date: Thu Oct 21 11:13:05 2010 +0100 Remove all use of inet_pton and inet_ntop Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- bootstrap.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap.conf b/bootstrap.conf index 22f6153f3c..1fa0a38389 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -58,7 +58,6 @@ gettimeofday gitlog-to-changelog gnumakefile ignore-value -inet_pton intprops ioctl isatty --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110810; cv=none; d=zoho.com; s=zohoarc; b=NXRTxZo8XLKLjw91nRnSFO3W2uVY0mAGa04gzvCZg+y3/3fBLXNNWjYNC6wfqO21nBsOtLUMLjNCcrR7Slv3wmYTF6l0M376IsFJFuup4PTH9ms/OCD2kRL9XD5X4v8tINJUxJdf314bWGZ6vdBELywr0naHzSospqBNusBf7T0= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110810; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=ykwsVFoueiN6uA2IwgjAzrSm5qjmjJlL5mNOVDhGL8s=; b=eBYsFtscWX4fr/YyZAHyqbz1FHpYPp52tDt3pnJMNNknLpeuupxW2RCSEnbJiHYE75jhWfkcRMGfQx4gjfZ713/0shnu6ZkjH8Pb4xJyxMDJTntWWK7Bo+9bunbHywGka69Ova/JyQl4QltZT1TgBw1l/bLJkNIWndLuzq0ab5M= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1570110810511731.0667648565335; Thu, 3 Oct 2019 06:53:30 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A2B7E18C4285; Thu, 3 Oct 2019 13:53:28 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 494CB600CD; Thu, 3 Oct 2019 13:53:28 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 5437B4EDA7; Thu, 3 Oct 2019 13:53:27 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrQkS019882 for ; Thu, 3 Oct 2019 09:53:26 -0400 Received: by smtp.corp.redhat.com (Postfix) id C4F0F608C0; Thu, 3 Oct 2019 13:53:26 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id 42D23608A5; Thu, 3 Oct 2019 13:53:26 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:11 +0100 Message-Id: <20191003135318.19149-5-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 04/11] build: drop the mktempd gnulib module X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.62]); Thu, 03 Oct 2019 13:53:29 +0000 (UTC) The mktempd module in gnulib provides an equivalent to 'mktemp -d' on platforms which lack this shell command. All platforms on which libvirt runs the affected tests have 'mktemp -d' support, so the gnulib module is not required. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- bootstrap.conf | 1 - tests/test-lib.sh | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/bootstrap.conf b/bootstrap.conf index 1fa0a38389..9964231bb7 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -71,7 +71,6 @@ mgetgroups mkdtemp mkostemp mkostemps -mktempd net_if netdb nonblocking diff --git a/tests/test-lib.sh b/tests/test-lib.sh index ef5a47b565..c19005a371 100644 --- a/tests/test-lib.sh +++ b/tests/test-lib.sh @@ -256,8 +256,7 @@ fi # a partition, or to undo any other global state changes. cleanup_() { :; } =20 -mktempd=3D"$abs_top_srcdir/build-aux/mktempd" -t_=3D$("$SHELL" "$mktempd" "$test_dir_" lv-$this_test.XXXXXXXXXX) \ +t_=3D$("mktemp" "-d" "$test_dir_/lv-$this_test.XXXXXXXXXX") \ || error_ "failed to create temporary directory in $test_dir_" =20 # Run each test from within a temporary sub-directory named after the --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110822; cv=none; d=zoho.com; s=zohoarc; b=ZHBR8v29eWRpaDOZjOktkrDdEsAOqcEjYv9bYlX4sdextSSCtwfrhb1Z+G4KjlVZ0veCkwpTYnn84+HkUm20OO3u8pwfvHkZqfKf+Kee6iVahGkWgmG4hqbduy9C9RRTNco+EBascpLYCigJKqz0lsBFtoem8/E3yr4nYW2eeA8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110822; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=XWvfNr3B/gBIcmLMVygXJIN5ozDuCYx9fDMsRMDeXTQ=; b=KGR2c46CA8UoYW4LQ1w6zzk24FbJvtVG/szkOOrV2zC2uQ9Sif5+xN5gOYFb8VbJVS6AihJ5KJ6N0NUesqsFyLJWE7gpBg2FtZde52+o+SbYOjuLEBMChjpvuO37TNQnbpYhMUuZxLTctq6f1QfrHU7oP+R/o9U7UvJbHJzlAXk= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1570110822170918.0366187034004; Thu, 3 Oct 2019 06:53:42 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 2A8653078A3A; Thu, 3 Oct 2019 13:53:40 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EC53760468; Thu, 3 Oct 2019 13:53:39 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id AF775180B761; Thu, 3 Oct 2019 13:53:39 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrRrk019896 for ; Thu, 3 Oct 2019 09:53:27 -0400 Received: by smtp.corp.redhat.com (Postfix) id 92F68608A5; Thu, 3 Oct 2019 13:53:27 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0F83E6092F; Thu, 3 Oct 2019 13:53:26 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:12 +0100 Message-Id: <20191003135318.19149-6-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 05/11] util: drop the stpcpy gnulib module X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.48]); Thu, 03 Oct 2019 13:53:40 +0000 (UTC) stpcpy returns a pointer to the end of the string just copied which in theory makes it easier to then copy another string after it. We only use stpcpy in one place though and that is trivially rewritten to avoid stpcpy with no less in code clarity or efficiency. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- bootstrap.conf | 1 - src/util/virerror.c | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap.conf b/bootstrap.conf index 9964231bb7..9ca1e6ddd7 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -96,7 +96,6 @@ snprintf socket stat-time stdarg -stpcpy strchrnul strdup-posix strndup diff --git a/src/util/virerror.c b/src/util/virerror.c index 77f76a9abf..3bb9d1d32c 100644 --- a/src/util/virerror.c +++ b/src/util/virerror.c @@ -1367,8 +1367,9 @@ void virReportSystemErrorFull(int domcode, =20 size_t len =3D strlen(errnoDetail); if (0 <=3D n && n + 2 + len < sizeof(msgDetailBuf)) { - char *p =3D msgDetailBuf + n; - stpcpy(stpcpy(p, ": "), errnoDetail); + strcpy(msgDetailBuf + n, ": "); + n +=3D 2; + strcpy(msgDetailBuf + n, errnoDetail); msgDetail =3D msgDetailBuf; } } --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110836; cv=none; d=zoho.com; s=zohoarc; b=eVq7azzPSHs9iYSZ4X4Zu+jOdrbZoYHjjmAsMSraBgwOzYeyEWVz4r3K5S7j8mdhF010v2gPYXQjXRnLbvdoEDvkyAUGLGtAzjLnIu7WPsD6Tr9jAqNej9ft0m/k3f58Zjwu8c8vqGoS6ygxcGa/FuypAmwoo7u/DYw+9urnywI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110836; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=bzv6qF/BdXj89f40y6RqWhcWXgyTMVdnZoI0FJ+YwnU=; b=P3nU1QYJ1i+7I/eMukauZZ0GlYndyXkEh2UqbGc0NEfcLgfIVIGQzZRkhXCpuvIwO/y7wF+k0eX7RNThC8pgurk8E1Jo18yopW7WiVo8Qv47pEfYctizpp+ik1GMhP1wuJModATSqBhMhgd5/XBIY7uHoFeLe0swMBOfUPMhelY= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 15701108368921001.8253024404856; Thu, 3 Oct 2019 06:53:56 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 0850318CB8EF; Thu, 3 Oct 2019 13:53:55 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D3B35196AE; Thu, 3 Oct 2019 13:53:54 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 97543180B761; Thu, 3 Oct 2019 13:53:54 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrS0j019913 for ; Thu, 3 Oct 2019 09:53:28 -0400 Received: by smtp.corp.redhat.com (Postfix) id 62A65608C2; Thu, 3 Oct 2019 13:53:28 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id D422C608A5; Thu, 3 Oct 2019 13:53:27 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:13 +0100 Message-Id: <20191003135318.19149-7-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 06/11] Revert "build: use autobuild module to make build logs nicer" X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.63]); Thu, 03 Oct 2019 13:53:55 +0000 (UTC) This reverts commit 83aca30f1e8be524780a60b9dd8a14ec5f9de878. While the motivation of the original commit is fine, we are intending to drop autoconf in favour of meson, and similarly wish to drop use of gnulib. Removing this feature is part of that conversion work. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- bootstrap.conf | 1 - configure.ac | 6 ------ 2 files changed, 7 deletions(-) diff --git a/bootstrap.conf b/bootstrap.conf index 9ca1e6ddd7..09dcf78007 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -20,7 +20,6 @@ gnulib_modules=3D' accept areadlink -autobuild base64 bind bitrotate diff --git a/configure.ac b/configure.ac index af8cbcdfd8..ea4cd89733 100644 --- a/configure.ac +++ b/configure.ac @@ -123,12 +123,6 @@ AC_PROG_CC AC_PROG_INSTALL AC_PROG_CPP =20 -dnl Setting AB_VERSION makes the 'autobuild' lines of configure output -dnl slightly more useful -if test -d $srcdir/.git && git --version >/dev/null 2>&1 ; then - AB_VERSION=3D`cd $srcdir && git describe --match 'v[[0-9]]*' 2>/dev/null` -fi - dnl autoconf 2.70 adds a --runstatedir option so that downstreams dnl can point to /run instead of the historic /var/run, but dnl autoconf hasn't had a release since 2012. --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110826; cv=none; d=zoho.com; s=zohoarc; b=EMJZIq0DHO360MlEZLqpVR3MPvwM/hrRJkhEk3ax0csY375qbpPlUdDgBuuF+NS1+F9DvXAb2PJo88wM2/xu5vn1ycVdtxFiXtXPUPnNyL+dErougkNTteTf5PGkYbLgqze9tA7odK9z6jpFWenIc3vjLSEWHpAV2jo6lAduf6A= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110826; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=S/Lv292waQK6xnsUFMpZy45oSV4HSRSbxTXfDInZbQM=; b=OJDIH8/TbqEOSh7rsm2l792TBOR2Y2M3o7w0Dlq+lOeQEMU7KGv2LcjlUf03PGTR1PrV5+2rDHCMgfHFz1ji6F2QkzG5OwKyXD2B5zQTaAHTYbuzOdAMqE2ov11mXSII+BF/fWiDE5f7fw0fdOId9UG/NkvhC0lftOUrrxY6k+E= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1570110826992753.0666099795868; Thu, 3 Oct 2019 06:53:46 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 80DB010DCC8F; Thu, 3 Oct 2019 13:53:45 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 594835D6A9; Thu, 3 Oct 2019 13:53:45 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 191E71803B37; Thu, 3 Oct 2019 13:53:45 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrT7D019918 for ; Thu, 3 Oct 2019 09:53:29 -0400 Received: by smtp.corp.redhat.com (Postfix) id 30181608C0; Thu, 3 Oct 2019 13:53:29 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id A25B1608A5; Thu, 3 Oct 2019 13:53:28 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:14 +0100 Message-Id: <20191003135318.19149-8-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 07/11] build: drop the usleep gnulib module X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.64]); Thu, 03 Oct 2019 13:53:46 +0000 (UTC) The usleep function was missing on older mingw versions, but we can rely on it existing everywhere these days. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- bootstrap.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap.conf b/bootstrap.conf index 09dcf78007..022f564134 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -112,7 +112,6 @@ ttyname_r uname unsetenv useless-if-before-free -usleep vasprintf verify vc-list-files --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110849; cv=none; d=zoho.com; s=zohoarc; b=VD0sDu7tqCoMhmq1VDlZMeoc8omPQpQ3P1mww4wj3/GbWkRsmzbk1ENbFQiksyvM/ga+y7dB9Tyq86OMFVfCE6eATBOlOPm+y5XI+vUFeq5+X4NClhIw6usHJEt9cdIBpJVDMBaIn/9auREpANYx6oRmNqT2r8hGsp1RIPPGXbI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110849; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=ygNu8YeAxhbetErCWx40ptbfHzyuYTEpDWxvsUN3hdI=; b=VlnR4z0x+KORJbdQ/EOgKntYdw6q2Xvq/lXmgXj7A3tekpQjde9fJAj7uXT+vFItcDfyp+9vdXGHPaK+eWwDgYBr2E0gCUgRqwZ8dxbkvmlFErwte4HKJDlU4YeoWOpggbRMkU5TxiCQMozEO81Z0df6Epz2NplfQnlRcLQEDtQ= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 157011084989331.215371561261804; Thu, 3 Oct 2019 06:54:09 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 34115180218B; Thu, 3 Oct 2019 13:54:08 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 08E95608C0; Thu, 3 Oct 2019 13:54:08 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id B67424EEBA; Thu, 3 Oct 2019 13:54:07 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrUTV019929 for ; Thu, 3 Oct 2019 09:53:30 -0400 Received: by smtp.corp.redhat.com (Postfix) id 00A7D608C2; Thu, 3 Oct 2019 13:53:30 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6FE5B608A5; Thu, 3 Oct 2019 13:53:29 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:15 +0100 Message-Id: <20191003135318.19149-9-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 08/11] build: drop the stdarg gnulib module X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.70]); Thu, 03 Oct 2019 13:54:08 +0000 (UTC) gnulib fixes a portability problem on AIX which is a platform we have never targetted. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- bootstrap.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap.conf b/bootstrap.conf index 022f564134..257782a7b9 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -94,7 +94,6 @@ sigpipe snprintf socket stat-time -stdarg strchrnul strdup-posix strndup --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110840; cv=none; d=zoho.com; s=zohoarc; b=TSZ3Ktlt8nGVjp64LbAuq59BmCZtQX/52mFPXjOu1qzde8UbYpK9ZIxI14TVshIYilJgwiLraQniugk144C9wm6UFL36L/aQgAnVVdClsw6Nxu3vU9741EXouH5VnWX577RVG0qRVSfZG4C+PI917+jHIr0NZ5QhgYd9ZaX3qqc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110840; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=m8Sb4R7QydHHhm6RqNw1agqmu07FnRIH5ICWDMvpfr8=; b=lHMK3xO9mKD+IcbS7nWrJ9SZPAZg9RIy/KaPLJ8dUNxEebY/tEhGucMOw/YelIpr5OoomtM+IcGyA8hu1qkPQfPw3f//z6qjnadjAYCHhN4L6YAum4Il/6dFMoJqPt58lHXM7vwKOXN/mD4VRUXJQGdodfomRHegbDBnJVAKGBo= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1570110840049176.2045868325755; Thu, 3 Oct 2019 06:54:00 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8A6AD30860D7; Thu, 3 Oct 2019 13:53:58 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 64D0B60C80; Thu, 3 Oct 2019 13:53:58 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 1FD3E4EE6D; Thu, 3 Oct 2019 13:53:58 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrUpK019939 for ; Thu, 3 Oct 2019 09:53:30 -0400 Received: by smtp.corp.redhat.com (Postfix) id C3E63608C2; Thu, 3 Oct 2019 13:53:30 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id 406D6608C0; Thu, 3 Oct 2019 13:53:30 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:16 +0100 Message-Id: <20191003135318.19149-10-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 09/11] build: drop the gitlog-to-changelog gnulib module X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.44]); Thu, 03 Oct 2019 13:53:59 +0000 (UTC) The use of this script was discontinued when we stopped providing a full ChangeLog in the dist with: commit ce97c33a795dec053f1e85c65ecd924b8c6ec4ba Author: Andrea Bolognani Date: Mon Apr 1 17:33:03 2019 +0200 maint: Stop generating ChangeLog from git Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- Makefile.am | 1 - bootstrap.conf | 1 - 2 files changed, 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 711f365504..2cc4b91f9c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -43,7 +43,6 @@ EXTRA_DIST =3D \ AUTHORS.in \ build-aux/augeas-gentest.pl \ build-aux/check-spacing.pl \ - build-aux/gitlog-to-changelog \ build-aux/header-ifdef.pl \ build-aux/minimize-po.pl \ build-aux/mock-noinline.pl \ diff --git a/bootstrap.conf b/bootstrap.conf index 257782a7b9..617d9acb76 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -54,7 +54,6 @@ getpass getpeername getsockname gettimeofday -gitlog-to-changelog gnumakefile ignore-value intprops --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110853; cv=none; d=zoho.com; s=zohoarc; b=d3+p9if+En+gS61ZVAgSD/6kymhwbUXi3PRWJQcnOibD6mwJDLBpsZ1QRU26U0GyghRsPtHfP7s/YRf7VGY0vgrbvGx70OUoeeD0Nn4iRHLJdy1APW0zmJKgHqYMQ4OA0IJxWAXFbjhOHC8lBWCrXic/1b+k/VIDe/I+Yhru35E= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110853; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=/v0PWuMF6kuu1PqKaFdEB52BSmL4hfa/2fW6xXVVCaA=; b=ELrIbs+iBgGUIDMeFiHhIzpgGNz08V7E+eXQ/cTMHJSAbj9NTRviy7qFuFZ5XL23uoQpMZ3pbf1VupDQQ5RNEwBRh78zUnBOnGll+VTdZZGag1VluvB736/7/hk6ETMVM3Q1F0Xs2n3oeyPhCLcdCJD3u87rL70u6e1nZ9IgCX4= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1570110853325388.0688638958112; Thu, 3 Oct 2019 06:54:13 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C2E213078A23; Thu, 3 Oct 2019 13:54:11 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 9F8BB5C22F; Thu, 3 Oct 2019 13:54:11 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 617DE4EEFA; Thu, 3 Oct 2019 13:54:11 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrV1L019948 for ; Thu, 3 Oct 2019 09:53:31 -0400 Received: by smtp.corp.redhat.com (Postfix) id 93BE560925; Thu, 3 Oct 2019 13:53:31 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0EC3D608A5; Thu, 3 Oct 2019 13:53:30 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:17 +0100 Message-Id: <20191003135318.19149-11-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 10/11] build: drop the perror gnulib module X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.48]); Thu, 03 Oct 2019 13:54:12 +0000 (UTC) This fixes a problem on mingw where it doesn't know how to report certain errnos defined by POSIX, but not used on Windows. These are not a real problem for libvirt. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- bootstrap.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap.conf b/bootstrap.conf index 617d9acb76..1f1c33f998 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -74,7 +74,6 @@ netdb nonblocking openpty passfd -perror physmem pipe-posix pipe2 --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri May 3 00:00:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570110845; cv=none; d=zoho.com; s=zohoarc; b=SQxwSU7s2VWt2qg9jgjqK+x6LX7DWtyYYHmhkjd08D67ffww8wL9svm2697+HB0Yfs94Urzj/qhqljYeJyZ/QgIIsDy4/tsMcRYsXGr2TR8sWANk2v+BHQ2rlnUQ97V/HqwxDjr+JyJuKblXGuaLDKtk46Q+XBrdPVbsxXQ7AWI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570110845; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=9tUYSSsgPUkPRO115mgoLt/6Z99EHIJMaeGsx/SUogk=; b=Ycq8+2RMIVHRx/3Xknm0Dz3OQG/lWUWSA3VJ7LPphj5IrKlZZvAnHjEBI2ivvdZg4L00qF0dzLZ+qi23qt1OJMs5cUFAsdlmGoq4i15Drog8HE2lh5Ob1vr+hxypLkZg4KEoyEb5nW6ghJfFZ0FQqJ9PtsFF+mkHwwm73z2Iu0E= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1570110845169943.7377900259136; Thu, 3 Oct 2019 06:54:05 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8283D69060; Thu, 3 Oct 2019 13:54:02 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4AEFE60E3E; Thu, 3 Oct 2019 13:54:02 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id E05151803B37; Thu, 3 Oct 2019 13:54:01 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x93DrW08019969 for ; Thu, 3 Oct 2019 09:53:32 -0400 Received: by smtp.corp.redhat.com (Postfix) id 612FC608C2; Thu, 3 Oct 2019 13:53:32 +0000 (UTC) Received: from dhcp-17-55.lcy.redhat.com (unknown [10.42.17.55]) by smtp.corp.redhat.com (Postfix) with ESMTP id D1E2860925; Thu, 3 Oct 2019 13:53:31 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 3 Oct 2019 14:53:18 +0100 Message-Id: <20191003135318.19149-12-berrange@redhat.com> In-Reply-To: <20191003135318.19149-1-berrange@redhat.com> References: <20191003135318.19149-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 11/11] build: drop the pthread gnulib module X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Thu, 03 Oct 2019 13:54:03 +0000 (UTC) This was fixing a problem with old versions of mingw which had a pthread.h that polluted the namespace with random symbols. This is no longer relevant on our mingw platform targets. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: J=C3=A1n Tomko --- bootstrap.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap.conf b/bootstrap.conf index 1f1c33f998..6120873397 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -79,7 +79,6 @@ pipe-posix pipe2 poll posix-shell -pthread pthread_sigmask recv regex --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list