From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-837119-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D565D13881D for <garchives@archives.gentoo.org>; Sun, 27 Sep 2015 06:30:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9687FE07BA; Sun, 27 Sep 2015 06:30:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3C7E9E07BA for <gentoo-commits@lists.gentoo.org>; Sun, 27 Sep 2015 06:30:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 093F3340E0F for <gentoo-commits@lists.gentoo.org>; Sun, 27 Sep 2015 06:30:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EFC9235 for <gentoo-commits@lists.gentoo.org>; Sun, 27 Sep 2015 06:30:38 +0000 (UTC) From: "Mike Frysinger" <vapier@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" <vapier@gentoo.org> Message-ID: <1443335337.4e7dd0fa8256ecdb32a6ffed688f8b46c2a1dccc.vapier@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: / X-VCS-Repository: proj/sandbox X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 4e7dd0fa8256ecdb32a6ffed688f8b46c2a1dccc X-VCS-Branch: master Date: Sun, 27 Sep 2015 06:30:38 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f23d9f66-c3a5-4807-ad0b-90d28d3bde68 X-Archives-Hash: a81f1f5a39ca8b42a3d8eb398b485880 commit: 4e7dd0fa8256ecdb32a6ffed688f8b46c2a1dccc Author: Mike Frysinger <vapier <AT> gentoo <DOT> org> AuthorDate: Sun Sep 27 06:28:57 2015 +0000 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org> CommitDate: Sun Sep 27 06:28:57 2015 +0000 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=4e7dd0fa build: bump min autoconf/automake requirements No real reason to do this other than making sure people are all testing with the same baseline-ish versions. Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org> configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 2e1bc9d..081398c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ -AC_PREREQ([2.61]) +AC_PREREQ([2.69]) AC_INIT([sandbox], [2.10], [sandbox@gentoo.org]) -AM_INIT_AUTOMAKE([1.12 dist-xz no-dist-gzip silent-rules subdir-objects -Wall]) +AM_INIT_AUTOMAKE([1.14 dist-xz no-dist-gzip silent-rules subdir-objects -Wall]) AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4])