Re: Compiling for JDK 1.1.8

2002-06-21 Thread Stefan Bodewig
On Thu, 20 Jun 2002, Jeff Larsen [EMAIL PROTECTED] wrote: I'm running Ant 1.4.1 under JDK 1.3.1. I need to compile some projects to be run under JDK 1.1.8. Try Ant 1.5beta instead - at least the forking case should work fine. Stefan -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

Compiling for JDK 1.1.8

2002-06-20 Thread Jeff Larsen
I'm running Ant 1.4.1 under JDK 1.3.1. I need to compile some projects to be run under JDK 1.1.8. See the buld.xml below... Ant is *NOT* properly compiling with JDK 1.1. I can tell this two ways. During the compile, I get deprecation warnings for things that were not deprecated until 1.2. And

Re: Compiling for JDK 1.1.8

2002-06-20 Thread Ultra Funkular
tried forking to see if that would work? a suggestion offhand... On Thu, 20 Jun 2002 10:42:23 Jeff Larsen wrote: I'm running Ant 1.4.1 under JDK 1.3.1. I need to compile some projects to be run under JDK 1.1.8. See the buld.xml below... Ant is *NOT* properly compiling with JDK 1.1. I

Re: Compiling for JDK 1.1.8

2002-06-20 Thread Jeff Larsen
: Compiling for JDK 1.1.8 tried forking to see if that would work? a suggestion offhand... On Thu, 20 Jun 2002 10:42:23 Jeff Larsen wrote: I'm running Ant 1.4.1 under JDK 1.3.1. I need to compile some projects to be run under JDK 1.1.8. See the buld.xml below... Ant is *NOT* properly

RE: Compiling for JDK 1.1.8

2002-06-20 Thread Geoff Meakin
I use javac target=1.1 bootclasspath=~/build-libs/jdk1_1_8-classes.zip .. which then works fine Cheers -Geoff -Original Message- From: Jeff Larsen [mailto:[EMAIL PROTECTED]] Sent: 20 June 2002 05:42 PM To: [EMAIL PROTECTED] Subject: Compiling for JDK 1.1.8 I'm running Ant

RE: Compiling for JDK 1.1.8

2002-06-20 Thread Geoff Meakin
Sorry, its been a hard day, let me rephrase that: Are you specifying the {bootclasspath} and {target} attributes as well? -Geoff -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Compiling for JDK 1.1.8

2002-06-20 Thread Ed Mack
, 2002 10:12 AM To: Ant Users List Subject: RE: Compiling for JDK 1.1.8 Sorry, its been a hard day, let me rephrase that: Are you specifying the {bootclasspath} and {target} attributes as well? -Geoff -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto

Re: Compiling for JDK 1.1.8

2002-06-20 Thread Jeff Larsen
PROTECTED] To: Ant Users List [EMAIL PROTECTED] Sent: Thursday, June 20, 2002 12:09 PM Subject: RE: Compiling for JDK 1.1.8 Are you specifying the {bootclasspath} and property as well? You need to reference the bootclasspath and the target attribute of javac, not just the target attribute