Return-Path: X-Original-To: apmail-zookeeper-commits-archive@www.apache.org Delivered-To: apmail-zookeeper-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 DD48CCDE8 for ; Sat, 30 Jun 2012 06:51:50 +0000 (UTC) Received: (qmail 98531 invoked by uid 500); 30 Jun 2012 06:51:50 -0000 Delivered-To: apmail-zookeeper-commits-archive@zookeeper.apache.org Received: (qmail 98434 invoked by uid 500); 30 Jun 2012 06:51:50 -0000 Mailing-List: contact commits-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ Delivered-To: mailing list commits@zookeeper.apache.org Received: (qmail 98404 invoked by uid 99); 30 Jun 2012 06:51:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Jun 2012 06:51:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Jun 2012 06:51:47 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C0AA42388962 for ; Sat, 30 Jun 2012 06:51:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1355657 - in /zookeeper/trunk: CHANGES.txt src/c/README Date: Sat, 30 Jun 2012 06:51:27 -0000 To: commits@zookeeper.apache.org From: phunt@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120630065127.C0AA42388962@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: phunt Date: Sat Jun 30 06:51:26 2012 New Revision: 1355657 URL: http://svn.apache.org/viewvc?rev=1355657&view=rev Log: ZOOKEEPER-1454. Document how to run autoreconf if cppunit is installed in a non-standard directory (Michi Mutsuzaki via phunt) Modified: zookeeper/trunk/CHANGES.txt zookeeper/trunk/src/c/README Modified: zookeeper/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/zookeeper/trunk/CHANGES.txt?rev=1355657&r1=1355656&r2=1355657&view=diff ============================================================================== --- zookeeper/trunk/CHANGES.txt (original) +++ zookeeper/trunk/CHANGES.txt Sat Jun 30 06:51:26 2012 @@ -317,6 +317,9 @@ IMPROVEMENTS: ZOOKEEPER-1440. Spurious log error messages when QuorumCnxManager is shutting down (Jordan Zimmerman via michim) + ZOOKEEPER-1454. Document how to run autoreconf if cppunit is + installed in a non-standard directory (Michi Mutsuzaki via phunt) + Release 3.4.0 - Non-backward compatible changes: Modified: zookeeper/trunk/src/c/README URL: http://svn.apache.org/viewvc/zookeeper/trunk/src/c/README?rev=1355657&r1=1355656&r2=1355657&view=diff ============================================================================== --- zookeeper/trunk/src/c/README (original) +++ zookeeper/trunk/src/c/README Sat Jun 30 06:51:26 2012 @@ -43,7 +43,12 @@ tar downloaded from Apache please skip t 2) unzip/untar the source tarball and cd to the zookeeper-x.x.x/src/c directory 3) change directory to src/c and do a "autoreconf -if" to bootstrap autoconf, automake and libtool. Please make sure you have autoconf - version 2.59 or greater installed. + version 2.59 or greater installed. If cppunit is installed in a non-standard + directory, you need to specify where to find cppunit.m4. For example, if + cppunit is installed under /usr/local, run: + + ACLOCAL="aclocal -I /usr/local/share/aclocal" autoreconf -if + 4) do a "./configure [OPTIONS]" to generate the makefile. See INSTALL for general information about running configure. Additionally, the configure supports the following options: