From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id YJrLB58tEmUZAx0AWB0awg (envelope-from ) for ; Mon, 25 Sep 2023 21:02:23 -0400 Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=kVDWmKfI; dkim-atps=neutral Received: by simark.ca (Postfix, from userid 112) id 132691E0C3; Mon, 25 Sep 2023 21:02:23 -0400 (EDT) Received: from server2.sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 04DC21E028 for ; Mon, 25 Sep 2023 21:02:21 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 1A5BD385B531 for ; Tue, 26 Sep 2023 01:02:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1A5BD385B531 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1695690140; bh=N5IrMNMQjCn4dgqrEjGsD8mL1ZIVCHF0WPC3ZfTh3lk=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=kVDWmKfIl4u9kObJyLn8vDXeckAa1fuwPHf+mFgbdX9o5Cud3OkF1/FS/+50/xLGn a+qBK7GO7LwUtAOpUFdv8ihI1LGrw4E6MVWYefm9OcEaCPKwgHkEz0mwsS+Y4QTLCu mlPZPb47ksKMtH4ge7gSGEYezzcO5Vf8AQ2PXAM4= Received: from mout-p-102.mailbox.org (mout-p-102.mailbox.org [IPv6:2001:67c:2050:0:465::102]) by sourceware.org (Postfix) with ESMTPS id 228343856DFB; Tue, 26 Sep 2023 01:00:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 228343856DFB Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:b231:465::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-102.mailbox.org (Postfix) with ESMTPS id 4RvhHf4BHzz9sQT; Tue, 26 Sep 2023 03:00:30 +0200 (CEST) To: gdb-patches@sourceware.org, binutils@sourceware.org Subject: [PATCH v2 0/2] Replace intl/ with out-of-tree GNU gettext Date: Tue, 26 Sep 2023 02:17:32 +0200 Message-ID: <20230926004300.1716711-2-arsen@aarsen.me> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4RvhHf4BHzz9sQT X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_INFOUSMEBIZ, RCVD_IN_DNSWL_LOW, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: =?utf-8?q?Arsen_Arsenovi=C4=87_via_Gdb-patches?= Reply-To: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= Cc: Iain Sandoe , Bruno Haible Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" This patch is a v2 of https://inbox.sourceware.org/20230925153247.908901-1-arsen@aarsen.me/ Changes since v1: - Move SUBDIRS changes from p2 to p1, and rationalize them with a comment. Thanks, Andreas. - Drop file regeneration from p1 (as it got held for moderation due to size last time). Retested (briefly, as it is getting quite late) on x86_64-freebsd13.1. The rest should be the same as v1. Thanks in advance, have a lovely night. Arsen Arsenović (2): *: add modern gettext support *: suppress xgettext 0.22 charset name error .gitignore | 1 + Makefile.def | 72 ++++---- bfd/configure.ac | 2 +- bfd/po/Make-in | 8 +- binutils/po/Make-in | 5 +- config/gettext-sister.m4 | 35 ++-- config/gettext.m4 | 357 +++++++++++++++++---------------------- config/iconv.m4 | 313 ++++++++++++++++++++++++++-------- config/intlmacosx.m4 | 65 +++++++ configure.ac | 44 +++-- gas/po/Make-in | 5 +- gdb/acinclude.m4 | 3 +- gdbsupport/Makefile.am | 5 + gold/po/Make-in | 5 +- gprof/po/Make-in | 5 +- ld/po/Make-in | 8 +- libctf/Makefile.am | 5 + libctf/configure.ac | 2 +- opcodes/configure.ac | 2 +- opcodes/po/Make-in | 5 +- 20 files changed, 594 insertions(+), 353 deletions(-) create mode 100644 config/intlmacosx.m4 -- 2.42.0