Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 1761 invoked by uid 500); 19 Sep 2002 05:33:19 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 1750 invoked by uid 500); 19 Sep 2002 05:33:19 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 19 Sep 2002 05:33:18 -0000 Message-ID: <20020919053318.82939.qmail@icarus.apache.org> From: jerenkrantz@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util CHANGES apu-config.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jerenkrantz 2002/09/18 22:33:18 Modified: . CHANGES apu-config.in Log: Add --bindir option to apu-config so that users of APR-util have an idea where apu-config will end up so that they can do later queries after apu-config is installed. Revision Changes Path 1.79 +2 -0 apr-util/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apr-util/CHANGES,v retrieving revision 1.78 retrieving revision 1.79 diff -u -u -r1.78 -r1.79 --- CHANGES 12 Sep 2002 00:46:00 -0000 1.78 +++ CHANGES 19 Sep 2002 05:33:18 -0000 1.79 @@ -1,5 +1,7 @@ Changes with APR-util 0.9.2 + *) Add --bindir option to apu-config. [Justin Erenkrantz] + Changes with APR-util 0.9.1 *) Add versioning infrastructure. 1.16 +5 -0 apr-util/apu-config.in Index: apu-config.in =================================================================== RCS file: /home/cvs/apr-util/apu-config.in,v retrieving revision 1.15 retrieving revision 1.16 diff -u -u -r1.15 -r1.16 --- apu-config.in 17 Sep 2002 17:33:44 -0000 1.15 +++ apu-config.in 19 Sep 2002 05:33:18 -0000 1.16 @@ -81,6 +81,7 @@ Known values for OPTION are: --prefix[=DIR] change prefix to DIR + --bindir print location where binaries are installed --includes print include information --ldflags print linker flags --libs print library information @@ -143,6 +144,10 @@ ;; --prefix) echo $prefix + exit 0 + ;; + --bindir) + echo $bindir exit 0 ;; --libs)