Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 66617 invoked from network); 4 Feb 2005 12:13:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 4 Feb 2005 12:13:19 -0000 Received: (qmail 21666 invoked by uid 500); 4 Feb 2005 12:13:19 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 21634 invoked by uid 500); 4 Feb 2005 12:13:19 -0000 Mailing-List: contact commits-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 commits@apr.apache.org Received: (qmail 21617 invoked by uid 99); 4 Feb 2005 12:13:19 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 04 Feb 2005 04:13:18 -0800 Received: (qmail 66602 invoked by uid 65534); 4 Feb 2005 12:13:17 -0000 Message-ID: <20050204121317.66593.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Fri, 04 Feb 2005 12:13:17 -0000 Subject: svn commit: r151343 - in apr/apr-util/trunk: Makefile.in configure.in To: commits@apr.apache.org From: jorton@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: jorton Date: Fri Feb 4 04:13:13 2005 New Revision: 151343 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D151343 Log: * configure.in: Use AC_CONFIG_*. * Makefile.in (DISTCLEAN_TARGETS): Add build/pkg/pkginfo. (check): Remove unnecessary subshell. Modified: apr/apr-util/trunk/Makefile.in apr/apr-util/trunk/configure.in Modified: apr/apr-util/trunk/Makefile.in URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/Makefile.in?view=3Ddi= ff&r1=3D151342&r2=3D151343 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- apr/apr-util/trunk/Makefile.in (original) +++ apr/apr-util/trunk/Makefile.in Fri Feb 4 04:13:13 2005 @@ -35,7 +35,7 @@ include/private/apu_config.h include/private/apu_private.h \ include/private/apu_select_dbm.h include/apr_ldap.h include/apu.h \ export_vars.sh $(APU_CONFIG) build/rules.mk include/apu_want.h \ - apr-util.pc + apr-util.pc build/pkg/pkginfo EXTRACLEAN_TARGETS =3D configure aclocal.m4 include/private/apu_config.h.i= n \ exports.c build-outputs.mk \ build/apr_common.m4 build/find_apr.m4 build/install.sh \ @@ -88,4 +88,4 @@ =20 test: check check: $(TARGET_LIB) - (cd test && $(MAKE) check) + cd test && $(MAKE) check Modified: apr/apr-util/trunk/configure.in URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/configure.in?view=3Dd= iff&r1=3D151342&r2=3D151343 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- apr/apr-util/trunk/configure.in (original) +++ apr/apr-util/trunk/configure.in Fri Feb 4 04:13:13 2005 @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script dnl =20 -AC_PREREQ(2.13) +AC_PREREQ(2.50) AC_INIT(export_vars.sh.in) =20 AC_CONFIG_HEADER(include/private/apu_config.h) @@ -183,30 +183,25 @@ AC_SUBST(INCLUDE_RULES) AC_SUBST(INCLUDE_OUTPUTS) =20 -if test -d $srcdir/test; then - test_Makefile=3D"test/Makefile" -fi +for d in include include/private; do + test -d $top_builddir/$d || mkdir $top_builddir/$d +done + +AC_CONFIG_FILES([Makefile export_vars.sh + build/pkg/pkginfo apr-util.pc + apu-$APRUTIL_MAJOR_VERSION-config:apu-config.in + include/private/apu_select_dbm.h + include/apr_ldap.h + include/apu.h include/apu_want.h]) =20 -if test ! -d "$top_builddir/include/private"; then - mkdir $top_builddir/include - mkdir $top_builddir/include/private -fi - -dnl -dnl everthing is done.=20 -MAKEFILES=3D"Makefile $test_Makefile" -AC_OUTPUT([ - export_vars.sh - build/pkg/pkginfo - apu-$APRUTIL_MAJOR_VERSION-config:apu-config.in - apr-util.pc - include/private/apu_select_dbm.h - include/apr_ldap.h - include/apu.h - include/apu_want.h - $MAKEFILES - ],[ +AC_CONFIG_COMMANDS([default], [ chmod +x apu-$APRUTIL_MAJOR_VERSION-config ],[ APRUTIL_MAJOR_VERSION=3D$APRUTIL_MAJOR_VERSION ]) + +if test -d $srcdir/test; then + AC_CONFIG_FILES([test/Makefile]) +fi + +AC_OUTPUT