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: AS22989 209.51.188.0/24 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (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 E63001F466 for ; Thu, 30 Jan 2020 14:50:46 +0000 (UTC) Received: from localhost ([::1]:33770 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ixB9Z-0001dY-KW for normalperson@yhbt.net; Thu, 30 Jan 2020 09:50:45 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:43975) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ixB9S-0001YH-FN for bug-gnulib@gnu.org; Thu, 30 Jan 2020 09:50:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ixB9O-0004Sj-JG for bug-gnulib@gnu.org; Thu, 30 Jan 2020 09:50:38 -0500 Received: from mo6-p00-ob.smtp.rzone.de ([2a01:238:20a:202:5300::3]:23037) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ixB9N-0004H1-T6 for bug-gnulib@gnu.org; Thu, 30 Jan 2020 09:50:34 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1580395829; s=strato-dkim-0002; d=clisp.org; h=References:In-Reply-To:Message-ID:Date:Subject:To:From: X-RZG-CLASS-ID:X-RZG-AUTH:From:Subject:Sender; bh=T23DVkErVCrZPRvSvjtv3Jfkvgtbb9GJWPS9Zv48I4U=; b=hhDm+0xX4rh9aVxsLNj/nLcayPYLf1pSQeapZs1cHSpenm/ADmT2sV7w0IhkLGL/50 XymyQ5krdqrpasGdTJP3L1AfDHJi8tMfQ6R8sVhsvdjChN01EFemte8bjAMMatck2W3W ggnTjFvgU9a95tuny57njIAszVvBGRdP6AJ8OavwZn9YbSBuWOl9qSpx9AtGZu9617xq 9gnEsuBk9IUEEIBMlKUoEUWejzWuY39ahfR+VR02wsatWBLzHOWaOThE+FZJqIK02qQl UMn2hSosUn2S3nfOX9sZGtkTbMVwIJLJ8D1y8I/CPcGwrC9phtsNnb/8lajVplDyrq63 doWg== X-RZG-AUTH: ":Ln4Re0+Ic/6oZXR1YgKryK8brlshOcZlIWs+iCP5vnk6shH+AHjwLuWOH6fzxfs=" X-RZG-CLASS-ID: mo00 Received: from bruno.haible.de by smtp.strato.de (RZmta 46.1.12 DYNA|AUTH) with ESMTPSA id g00701w0UEoS0ZE (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (curve X9_62_prime256v1 with 256 ECDH bits, eq. 3072 bits RSA)) (Client did not present a certificate); Thu, 30 Jan 2020 15:50:28 +0100 (CET) From: Bruno Haible To: bug-gnulib@gnu.org, noloader@gmail.com Subject: Re: autopoint: ... gettext-0.20 ... is too old Date: Thu, 30 Jan 2020 15:50:28 +0100 Message-ID: <4989522.f5Qk8toWbR@omega> User-Agent: KMail/5.1.3 (Linux/4.4.0-171-generic; KDE/5.18.0; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2a01:238:20a:202:5300::3 X-BeenThere: bug-gnulib@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Gnulib discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnulib-bounces+normalperson=yhbt.net@gnu.org Sender: "bug-gnulib" Hi Jeffrey, > if ! ./gnulib-tool --create-testdir --dir=../"$GNULIB_TEST_DIR" > --single-configure; > ... > ... > top/GNUmakefile > top/README-release > top/maint.mk > executing autopoint --force > autopoint: *** The AM_GNU_GETTEXT_VERSION declaration in your configure.ac > file requires the infrastructure from gettext-0.20 but this version > is older. Please upgrade to gettext-0.20 or newer. It's complaining that the 'autopoint' program in $PATH is too old. Try excluding the module 'gettext' (which is marked obsolete) from your tests: ./gnulib-tool --create-testdir --dir=../"$GNULIB_TEST_DIR" --avoid=gettext --single-configure If that does not fix it, install GNU gettext 0.20.1 from source with a --prefix=PREFIX, and add PREFIX/bin to your PATH. Bruno