Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 76518 invoked from network); 21 Dec 2007 22:28:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Dec 2007 22:28:40 -0000 Received: (qmail 50170 invoked by uid 500); 21 Dec 2007 22:28:29 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 50139 invoked by uid 500); 21 Dec 2007 22:28:28 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 50130 invoked by uid 99); 21 Dec 2007 22:28:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2007 14:28:28 -0800 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 mcintyre.a@gmail.com designates 209.85.128.191 as permitted sender) Received: from [209.85.128.191] (HELO fk-out-0910.google.com) (209.85.128.191) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2007 22:28:07 +0000 Received: by fk-out-0910.google.com with SMTP id f33so681061fkf.7 for ; Fri, 21 Dec 2007 14:28:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=lycjJ5nTs5V8zfjRmEuYFDHHU5ZwFWP3fPsZwuhFZFg=; b=fNHnBIg/37C158ulnXugQkluXbbTHsPLkPLggXlXz39x5HZfahvH61HdXD4dTM0AdmFo7ddYHVfOjaBRhvoie1GlDW1P0Z5DRy+iys1AcVOuj6+SnoH6iYRY7XGJr5GT0ifGuK99nnHpWup1P23a86K1ekUnq510tL1+kXPCxM4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Rai2usmR6jL08GNK7LTUTIBtmqk1wVJJ4RmFAfNdIAHobshVIG6oPeNGCq+gqmcfWypvFYOBX6ARwHDvzTjb7ZKoaxV40HnT/E2O0vWgOPbd7HHb+V8tEQLNxdR9GiVjmDZxPA8mx0T20GwPHTvC4S5LMRVBD5lP24mtLHS034o= Received: by 10.82.174.20 with SMTP id w20mr3062364bue.21.1198276089709; Fri, 21 Dec 2007 14:28:09 -0800 (PST) Received: by 10.82.124.3 with HTTP; Fri, 21 Dec 2007 14:28:09 -0800 (PST) Message-ID: <54ac72d70712211428p5c543fc2o771f5255fec5709d@mail.gmail.com> Date: Fri, 21 Dec 2007 14:28:09 -0800 From: "Andrew McIntyre" To: derby-dev@db.apache.org Subject: Re: Change to Derby build soon In-Reply-To: <4767E4F0.9050508@sun.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4766A961.4050406@sun.com> <4767E4F0.9050508@sun.com> X-Virus-Checked: Checked by ClamAV on apache.org On Dec 18, 2007 7:19 AM, Rick Hillegas wrote: > I have checked in this change: subversion revision 605224. Now by > default, the Derby build will try to figure out how to set its compiler > variables, based on your platform and vm. You can override these > defaults by hardcoding your own values for java14compile.classpath and > java15compile.classpath in your ant.properties. If you experience build > problems after syncing to this revision, you can revert to the old > behavior by adding the following line to your ant.properties: > > dontAutosetProps=true > > If you do experience problems, however, I'd like to hear about them so > that we can make the build smart enough to handle your environment. After this change I was surprised when builds in one environment failed to properly find the 1.5 runtime libraries, despite the fact that Ant was running in a Sun JDK 1.5. It appears that PropertySetter checks the directory above java.home for all the JVMs, but I don't have mine in a directory with the standard naming. It's just 'jdk15', not 'j2se1.5.0_x'. It seems to be that it would be good to get the runtime libraries for the VM you are using to run Ant. You'll always be able to set the classpath for one vm level that way. :-) andrew