From dev-return-20427-apmail-apr-dev-archive=apr.apache.org@apr.apache.org Thu Jun 05 08:46:35 2008 Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 69664 invoked from network); 5 Jun 2008 08:46:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Jun 2008 08:46:34 -0000 Received: (qmail 50933 invoked by uid 500); 5 Jun 2008 08:46:36 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 50872 invoked by uid 500); 5 Jun 2008 08:46:36 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 50861 invoked by uid 99); 5 Jun 2008 08:46:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jun 2008 01:46:36 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of jfclere@gmail.com designates 66.249.82.228 as permitted sender) Received: from [66.249.82.228] (HELO wx-out-0506.google.com) (66.249.82.228) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jun 2008 08:45:47 +0000 Received: by wx-out-0506.google.com with SMTP id t14so332496wxc.22 for ; Thu, 05 Jun 2008 01:46:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=HYwwsXm15OTi7nXhEKd2ElQyHQBkOSrM4OmsYQfVRAQ=; b=WZTtjsaYG55o++rcszNbi/RWm9aySEwrakZ2CKEboVtRMakGoSg3oCrR6jvjGh82FX oddNTI5w3xllZ+0M8Yvmag5GPQEYwhyxo1XhXSqv1oJUHY3U5azJdHRIXIrL1QREC+xr c2yTmxi5q7EyN0sb8PoeXiBM9ZRJadKhiHwsI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; b=xK3S8aP8eP9iz9i2NUFgKJ96mee01Vx3LPjKXC/+UjTWmrkEsjywUteg4D1rI+zQ3V MlU2sPggY4qxIkgLQIp2OoeCVC98M35nJzvhoFaLY9k48/Tqxd0nqp3pqDWm1r6VYWCK n/dcydQ3mpquX1ytFFdt3NcsA1nQUY4rXY4zg= Received: by 10.103.22.16 with SMTP id z16mr558946mui.78.1212655563023; Thu, 05 Jun 2008 01:46:03 -0700 (PDT) Received: from ?10.33.144.3? ( [212.249.12.131]) by mx.google.com with ESMTPS id t10sm4207844muh.17.2008.06.05.01.46.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 05 Jun 2008 01:46:01 -0700 (PDT) Message-ID: <4847A7B4.9060903@gmail.com> Date: Thu, 05 Jun 2008 10:45:40 +0200 From: jean-frederic clere User-Agent: Thunderbird 2.0.0.14 (X11/20080501) MIME-Version: 1.0 To: dev@apr.apache.org Subject: Re: svn commit: r663499 - /apr/apr-util/trunk/build/dso.m4 References: <20080605083738.E95BD2388A16@eris.apache.org> In-Reply-To: <20080605083738.E95BD2388A16@eris.apache.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org jfclere@apache.org wrote: > Author: jfclere > Date: Thu Jun 5 01:37:38 2008 > New Revision: 663499 > > URL: http://svn.apache.org/viewvc?rev=663499&view=rev > Log: > Otherwise install-modules-yes in Makefile and the shell will complains on > syntax error because APU_MODULES is only a space (on Solaris for example). > > Modified: > apr/apr-util/trunk/build/dso.m4 > > Modified: apr/apr-util/trunk/build/dso.m4 > URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/build/dso.m4?rev=663499&r1=663498&r2=663499&view=diff > ============================================================================== > --- apr/apr-util/trunk/build/dso.m4 (original) > +++ apr/apr-util/trunk/build/dso.m4 Thu Jun 5 01:37:38 2008 > @@ -69,6 +69,8 @@ > test $apu_have_freetds = 1 && dsos="$dsos dbd/apr_dbd_freetds.la" > test $apu_has_ldap = 1 && dsos="$dsos ldap/apr_ldap.la" > > - APU_MODULES="$APU_MODULES $dsos" > + if test -n "$dsos"; then > + APU_MODULES="$APU_MODULES $dsos" > + fi > fi > ]) > > > It seems 1.3.0 is buggy and doesn't build on my test machine for the same reasons ;-( Cheers Jean-Frederic