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 73B51CDE7 for ; Sat, 30 Jun 2012 06:51:00 +0000 (UTC) Received: (qmail 97350 invoked by uid 500); 30 Jun 2012 06:50:59 -0000 Delivered-To: apmail-zookeeper-commits-archive@zookeeper.apache.org Received: (qmail 97315 invoked by uid 500); 30 Jun 2012 06:50:59 -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 97282 invoked by uid 99); 30 Jun 2012 06:50:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Jun 2012 06:50:58 +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:50:56 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 31C652388962 for ; Sat, 30 Jun 2012 06:50:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1355656 - in /zookeeper/branches/branch-3.3: CHANGES.txt src/c/README Date: Sat, 30 Jun 2012 06:50:34 -0000 To: commits@zookeeper.apache.org From: phunt@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120630065035.31C652388962@eris.apache.org> Author: phunt Date: Sat Jun 30 06:50:33 2012 New Revision: 1355656 URL: http://svn.apache.org/viewvc?rev=1355656&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/branches/branch-3.3/CHANGES.txt zookeeper/branches/branch-3.3/src/c/README Modified: zookeeper/branches/branch-3.3/CHANGES.txt URL: http://svn.apache.org/viewvc/zookeeper/branches/branch-3.3/CHANGES.txt?rev=1355656&r1=1355655&r2=1355656&view=diff ============================================================================== --- zookeeper/branches/branch-3.3/CHANGES.txt (original) +++ zookeeper/branches/branch-3.3/CHANGES.txt Sat Jun 30 06:50:33 2012 @@ -28,6 +28,11 @@ BUGFIXES: ZOOKEEPER-1163. Memory leak in zk_hashtable.c:do_insert_watcher_object() (Anupam Chanda via michim) +IMPROVEMENTS: + + ZOOKEEPER-1454. Document how to run autoreconf if cppunit is + installed in a non-standard directory (Michi Mutsuzaki via phunt) + Release 3.3.5 - 2012-03-18 Backward compatible changes: Modified: zookeeper/branches/branch-3.3/src/c/README URL: http://svn.apache.org/viewvc/zookeeper/branches/branch-3.3/src/c/README?rev=1355656&r1=1355655&r2=1355656&view=diff ============================================================================== --- zookeeper/branches/branch-3.3/src/c/README (original) +++ zookeeper/branches/branch-3.3/src/c/README Sat Jun 30 06:50:33 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: