From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 57225138334 for ; Wed, 4 Sep 2019 10:40:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4A77E0802; Wed, 4 Sep 2019 10:40:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86800E0802 for ; Wed, 4 Sep 2019 10:40:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 56E3D34AB95 for ; Wed, 4 Sep 2019 10:40:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA41877F for ; Wed, 4 Sep 2019 10:40:23 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1567591417.27cbba882bc5b80cfe845af89ee44f3cad90a88c.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: / X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog autogen.bash X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 27cbba882bc5b80cfe845af89ee44f3cad90a88c X-VCS-Branch: master Date: Wed, 4 Sep 2019 10:40:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 26648678-f2f1-442c-bc71-36a8347cad3d X-Archives-Hash: c5b85a67c07b1bfe8f7b921536bf9aa3 commit: 27cbba882bc5b80cfe845af89ee44f3cad90a88c Author: Ulrich Müller gentoo org> AuthorDate: Wed Sep 4 10:03:37 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Sep 4 10:03:37 2019 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=27cbba88 Update autotools versions. * autogen.bash (WANT_AUTOCONF, WANT_AUTOMAKE): Update versions. Signed-off-by: Ulrich Müller gentoo.org> ChangeLog | 4 ++++ autogen.bash | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index cbb6229..d459f08 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2019-09-04 Ulrich Müller + + * autogen.bash (WANT_AUTOCONF, WANT_AUTOMAKE): Update versions. + 2019-09-02 Ulrich Müller * libs/editor-variable.bash.in (find_in_path): New function, looks diff --git a/autogen.bash b/autogen.bash index eec7f3c..a5a1c19 100755 --- a/autogen.bash +++ b/autogen.bash @@ -34,10 +34,10 @@ run mkdir -p config run $(get libtoolize) --copy --force --automake rm -f config.cache -run $(get aclocal 1.15 1.14 1.13 1.12) +run $(get aclocal 1.16 1.15 1.14) # run $(get autoheader 2.59) -WANT_AUTOCONF=2.5 run $(get autoconf 2.69 2.68 2.67 2.65) -WANT_AUTOMAKE=1.12 run $(get automake 1.15 1.14 1.13 1.12) \ +WANT_AUTOCONF=2.5 run $(get autoconf 2.69 2.68 2.67) +WANT_AUTOMAKE=1.14 run $(get automake 1.16 1.15 1.14) \ -a -c -W no-portability echo "Success. Now run ./configure --help"