From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTP id C2AB13851C34 for ; Tue, 13 Jul 2021 14:40:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C2AB13851C34 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-578-aNCMt-fEPYC7BvXm7Y2dBQ-1; Tue, 13 Jul 2021 10:40:51 -0400 X-MC-Unique: aNCMt-fEPYC7BvXm7Y2dBQ-1 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 mimecast-mx01.redhat.com (Postfix) with ESMTPS id DFE53C7403; Tue, 13 Jul 2021 14:40:50 +0000 (UTC) Received: from oldenburg.str.redhat.com (ovpn-113-59.ams2.redhat.com [10.36.113.59]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 34CE160C5F; Tue, 13 Jul 2021 14:40:50 +0000 (UTC) From: Florian Weimer To: Manuel Lauss Cc: Manuel Lauss via Libc-help Subject: Re: nss buildfailure in latest git sources References: <878s2ajqf5.fsf@oldenburg.str.redhat.com> Date: Tue, 13 Jul 2021 16:40:48 +0200 In-Reply-To: (Manuel Lauss's message of "Tue, 13 Jul 2021 15:30:15 +0200") Message-ID: <87k0lui8en.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libc-help@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-help mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jul 2021 14:40:54 -0000 * Manuel Lauss: > From the source of nss_module.c: > > #if defined USE_NSCD && (!defined DO_STATIC_NSS || defined SHARED) > /* Nonzero if this is the nscd process. */ > static bool is_nscd; > /* The callback passed to the init functions when nscd is used. */ > static void (*nscd_init_cb) (size_t, struct traced_file *); > #endif > [...] > static bool > module_load_nss_files (struct nss_module *module) > { > if (is_nscd) > { > void (*cb) (size_t, struct traced_file *) = nscd_init_cb; > # ifdef PTR_DEMANGLE > PTR_DEMANGLE (cb); > # endif > _nss_files_init (cb); > } Cooper Qu posted a fix for building with --disable-nscd: Fix build error when disable nscd. Does it fix your issue, too? Thanks, Florian