From nobody Thu May 2 08:37:44 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 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1504531583778366.8591613451372; Mon, 4 Sep 2017 06:26:23 -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 D23EF7AEB9; Mon, 4 Sep 2017 13:26:21 +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 8EFB066829; Mon, 4 Sep 2017 13:26:19 +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 711CA1806102; Mon, 4 Sep 2017 13:26:16 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id v84D6Pux018793 for ; Mon, 4 Sep 2017 09:06:25 -0400 Received: by smtp.corp.redhat.com (Postfix) id A8145C0DBA; Mon, 4 Sep 2017 13:06:25 +0000 (UTC) Received: from inaba.usersys.redhat.com (unknown [10.43.2.219]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2F17FC0DB3 for ; Mon, 4 Sep 2017 13:06:20 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com D23EF7AEB9 Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=libvir-list-bounces@redhat.com From: Andrea Bolognani To: libvir-list@redhat.com Date: Mon, 4 Sep 2017 15:06:16 +0200 Message-Id: <20170904130616.1529-1-abologna@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH] Makefile.nonreentrant: Rebuild against Fedora 26 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: , MIME-Version: 1.0 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.25]); Mon, 04 Sep 2017 13:26:22 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" According to the comments in the file and the git history, the list of forbidden symbols was originally built against Fedora 9 in 2009 (!) and pretty much never refreshed afterwards. Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrange --- I didn't put too much thought into this, but the results looks sane enough as we are only *adding* to the list. Makefile.nonreentrant | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile.nonreentrant b/Makefile.nonreentrant index 5cc64c0d5..a83298322 100644 --- a/Makefile.nonreentrant +++ b/Makefile.nonreentrant @@ -15,9 +15,9 @@ ## . =20 # -# Generated by running the following on Fedora 9: +# Generated by running the following on Fedora 26: # -# nm -D --defined-only /lib/libc.so.6 \ +# nm -D --defined-only /lib64/libc.so.6 \ # | grep '_r$' \ # | awk '{print $3}' \ # | grep -v __ \ @@ -43,6 +43,7 @@ NON_REENTRANT +=3D ether_ntoa NON_REENTRANT +=3D fcvt NON_REENTRANT +=3D fgetgrent NON_REENTRANT +=3D fgetpwent +NON_REENTRANT +=3D fgetsgent NON_REENTRANT +=3D fgetspent NON_REENTRANT +=3D getaliasbyname NON_REENTRANT +=3D getaliasent @@ -72,6 +73,8 @@ NON_REENTRANT +=3D getrpcent NON_REENTRANT +=3D getservbyname NON_REENTRANT +=3D getservbyport NON_REENTRANT +=3D getservent +NON_REENTRANT +=3D getsgent +NON_REENTRANT +=3D getsgnam NON_REENTRANT +=3D getspent NON_REENTRANT +=3D getspnam NON_REENTRANT +=3D getutent @@ -95,6 +98,7 @@ NON_REENTRANT +=3D random NON_REENTRANT +=3D rand NON_REENTRANT +=3D seed48 NON_REENTRANT +=3D setstate +NON_REENTRANT +=3D sgetsgent NON_REENTRANT +=3D sgetspent NON_REENTRANT +=3D srand48 NON_REENTRANT +=3D srandom --=20 2.13.5 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list