From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.5 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.1 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 0894F1F516 for ; Mon, 25 Jun 2018 13:47:38 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:from:to:references:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=WaXbNDcsGpaWamN7 NuDuSvfSRy/yrcIRy4mi1R1NL6vteKVdriEiwT6WOmizQuoBu6nK5E/wAy75k3GX GFdfnO5RJ5fYil918gO6OGiIdtzZMtVXqeOWkXZHPVsF5InyNGDx59EUsVJNoBf0 R6ft2rqpx9zy7cllYixlgWRLX+g= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:from:to:references:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=JwCZ5gDEUR+2qYxsUdIsxm bEW5E=; b=As+xHFZO0ESv4bk1fhO+5OTGp5aH9V1fzy4vB1346Z4wrymymcLb97 vu7O98ebn2JvqfySJQPOGgvGsk0BZDZkYxtIBmvJI9FKUHnMGQVZ11Sq3gUnIwLI sRXQjiXMwbaj4KkrS9O59qJ0TB8+1tIv3BT5Aa1RsXaVFP1++j8Y0= Received: (qmail 118082 invoked by alias); 25 Jun 2018 13:47:35 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 118062 invoked by uid 89); 25 Jun 2018 13:47:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-HELO: mx1.redhat.com Subject: Re: [PATCH] New configure option --disable-crypt. From: Florian Weimer To: libc-alpha@sourceware.org References: <20180625134403.2B6DC43994575@oldenburg.str.redhat.com> Message-ID: <9cfd5a44-91c2-0063-1d31-ee16dd342e22@redhat.com> Date: Mon, 25 Jun 2018 15:47:30 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <20180625134403.2B6DC43994575@oldenburg.str.redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit On 06/25/2018 03:44 PM, Florian Weimer wrote: > From: Zack Weinberg > > Some Linux distributions are experimenting with a new, separately > maintained and hopefully more agile implementation of the crypt(3) > API. To facilitate this, add a configure option which disables > glibc's embedded libcrypt. When this option is given, libcrypt.* > and crypt.h will not be built nor installed. > > unistd.h continues to define _XOPEN_CRYPT to 1 and to declare crypt. This is of course no longer true, it was removed in the first patch ("New configure option --disable-crypt."). Florian