Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8126BD669 for ; Sun, 14 Oct 2012 12:35:26 +0000 (UTC) Received: (qmail 45981 invoked by uid 500); 14 Oct 2012 12:35:26 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 45932 invoked by uid 500); 14 Oct 2012 12:35:25 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 45922 invoked by uid 99); 14 Oct 2012 12:35:25 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Oct 2012 12:35:25 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 89EB9449BF; Sun, 14 Oct 2012 12:35:25 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: nslater@apache.org To: commits@couchdb.apache.org X-Mailer: ASF-Git Admin Mailer Subject: git commit: Tweaked required version of Autoconf Message-Id: <20121014123525.89EB9449BF@tyr.zones.apache.org> Date: Sun, 14 Oct 2012 12:35:25 +0000 (UTC) Updated Branches: refs/heads/docs c83dd6246 -> 4a18f9ab4 Tweaked required version of Autoconf Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/4a18f9ab Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/4a18f9ab Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/4a18f9ab Branch: refs/heads/docs Commit: 4a18f9ab425641078e7ec1a8ae76f17f1bd21e72 Parents: c83dd62 Author: Noah Slater Authored: Sun Oct 14 13:35:21 2012 +0100 Committer: Noah Slater Committed: Sun Oct 14 13:35:21 2012 +0100 ---------------------------------------------------------------------- DEVELOPERS | 16 +++++++++++----- configure.ac | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/4a18f9ab/DEVELOPERS ---------------------------------------------------------------------- diff --git a/DEVELOPERS b/DEVELOPERS index 8c45a24..a77bf8e 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -10,9 +10,11 @@ Dependencies You will need the following installed: - * GNU Automake (>=1.6.3) (http://www.gnu.org/software/automake/) - * GNU Autoconf (>=2.59) (http://www.gnu.org/software/autoconf/) * GNU Libtool (http://www.gnu.org/software/libtool/) + * GNU Automake (>=1.6.3) (http://www.gnu.org/software/automake/) + * GNU Autoconf (>=2.68) (http://www.gnu.org/software/autoconf/) + * GNU Autoconf Archive (http://www.gnu.org/software/autoconf-archive/) + * pkg-config (http://www.freedesktop.org/wiki/Software/pkg-config) * GNU help2man (http://www.gnu.org/software/help2man/) # @@ pkg-config @@ -28,7 +30,7 @@ Debian-based (inc. Ubuntu) Systems You can install the dependencies by running: - apt-get install automake autoconf libtool help2man + apt-get install libtool automake autoconf autoconf-archive pkg-config help2man Be sure to update the version numbers to match your system's available packages. @@ -37,9 +39,13 @@ Mac OS X You can install the dependencies by running: - port install automake autoconf libtool help2man + brew install libtool automake autoconf autoconf-archive pkg-config help2man + +# @@ check these packages are correct + +# @@ check other files don't use MacPorts -You will need MacPorts installed to use the `port` command. +You will need Homebrew installed to use the `brew` command. Bootstrapping ------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/4a18f9ab/configure.ac ---------------------------------------------------------------------- diff --git a/configure.ac b/configure.ac index 8d9c749..c27bc59 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AC_INIT( [LOCAL_BUG_URI], [LOCAL_PACKAGE_TARNAME]) -AC_PREREQ([2.69]) +AC_PREREQ([2.68]) AC_CONFIG_SRCDIR([CHANGES]) AC_CONFIG_AUX_DIR([build-aux])