From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,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.2 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 8719E1F454 for ; Mon, 11 Nov 2019 15:05:50 +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:from:to:cc:subject:references:date:in-reply-to :message-id:mime-version:content-type:content-transfer-encoding; q=dns; s=default; b=yL3ut65aRv+3j2M+VRTf00OE6FNDnGAhOW3vC/ZjQEY /NrJs7ir6vIZfc+BuAf1ZWbepqrewqw09L4d8Z7IG5FWpfpIEktCMx7nl/gCzbj1 t69n1hB0diFbSXQ0TfQJ4LpWL2ZWX/LSliugLAlcR/g9Ki6TBrGzmWQdXIhTUnSc = 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:from:to:cc:subject:references:date:in-reply-to :message-id:mime-version:content-type:content-transfer-encoding; s=default; bh=uYLkOLQdk2IMmHe9YYbbogI/X/c=; b=Id1KQiO3bkukYFWhd hf79Gjh6yoLYRNh7+AbCGFBA6ylwjp2ILTC6ctCmugfzCYmAQs09zscM8OL3nI/g vSHl4jrMkgWXxI6TNqBSDbth4dvGiDOULDmK2c4MtJliIY4dznwaVGsTEUWF4TQa JD58lEi9BMOJMcYdsaacpp3LQw= Received: (qmail 3863 invoked by alias); 11 Nov 2019 15:05:48 -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 3854 invoked by uid 89); 11 Nov 2019 15:05:47 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: us-smtp-1.mimecast.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1573484745; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=P9HxQSvwnGLsJynV3/VLnuOGT8/0kMz6HOPl8sCfpSs=; b=GFYuM6owX3GgCsmb+EakPrMMfTqxblVbiiuzeMPUptGAUyQw9WMYooZwrZDwdGj9RUs8mO MGsJDEr/St9mdi0Asj6JlC7rSg0nLsO1CBHQ2JCWxtc2nwo3VyqjLSVqpE2j/emnh3jiqy ZYDOCWsVVFjFV0Lpd6JykyKKygeJg38= From: Florian Weimer To: Arjun Shankar Cc: libc-alpha@sourceware.org Subject: Re: [PATCH] support: Add xsetlocale function References: <20191111143946.GA5229@aloka.lostca.se> Date: Mon, 11 Nov 2019 16:05:35 +0100 In-Reply-To: <20191111143946.GA5229@aloka.lostca.se> (Arjun Shankar's message of "Mon, 11 Nov 2019 14:39:47 +0000") Message-ID: <87pnhywj0g.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable * Arjun Shankar: > diff --git a/support/Makefile b/support/Makefile > index a6081bba98..21a27cf863 100644 > --- a/support/Makefile > +++ b/support/Makefile > @@ -169,6 +169,7 @@ libsupport-routines =3D \ > xunlink \ > xwaitpid \ > xwrite \ > + xsetlocale \ > =20 > libsupport-static-only-routines :=3D $(libsupport-routines) > # Only build one variant of the library. Please keep the list of files sorted alphabetically. Rest looks okay to me. Thanks, Florian