Not sure what to tell you but I've now checked out fresh source 5 times now. The normal hsqldb/build is working fine. hsqldb-dev\build when given jar as the target is failing miserably.
init: javaversion4: javaversion2: prepare: Created dir: Z:\newsource\thirdparty\hsqldbalpha\hsqldb-dev\classes codeswitcher: Compiling 1 source file to Z:\newsource\thirdparty\hsqldbalpha\hsqldb-dev\classes switchtojdk11: switchtojdk12: switchtojdk14: ....... store: Compiling 4 source files to Z:\newsource\thirdparty\hsqldbalpha\hsqldb-dev\classes lib: Compiling 37 source files to Z:\newsource\thirdparty\hsqldbalpha\hsqldb-dev\classes Note: Some input files use or override a deprecated API. Note: Recompile with -deprecation for details. javajsse: ant.java.hasjsse=true classes: Compiling 120 source files to Z:\newsource\thirdparty\hsqldbalpha\hsqldb-dev\classes hsqldb-dev\src\org\hsqldb\jdbcParameterMetaData.java [99] cannot resolve symbol symbol : variable colType location: class org.hsqldb.Result types = r.colType; ^ hsqldb-dev\src\org\hsqldb\jdbcParameterMetaData.java [101] cannot resolve symbol symbol : variable nullability location: class org.hsqldb.Result nullability = r.nullability; ^ hsqldb-dev\src\org\hsqldb\jdbcParameterMetaData.java [102] cannot resolve symbol symbol : variable isIdentity location: class org.hsqldb.Result isIdentity = r.isIdentity; ^ hsqldb-dev\src\org\hsqldb\jdbcParameterMetaData.java [103] cannot resolve symbol symbol : variable sClassName location: class org.hsqldb.Result classNames = r.sClassName; ^ hsqldb-dev\src\org\hsqldb\jdbcParameterMetaData.java [104] cannot resolve symbol symbol : variable paramMode location: class org.hsqldb.Result modes = r.paramMode; ^ Note: Some input files use or override a deprecated API. Note: Recompile with -deprecation for details. 5 errors hsqldb-dev\build\build.xml [279] Compile failed; see the compiler error output for details. BUILD FAILED Total time: 7 seconds -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of fredt Sent: Tuesday, August 26, 2003 12:47 AM To: Sebastian Kloska; HSQLDB Developers Subject: Re: [Hsqldb-developers] Build failes under SDK 1.4.X I've just checked and this is what it reports for the last change: Index: jdbcParameterMetaData.java =================================================================== RCS file: /cvsroot/hsqldb/hsqldb-dev/src/org/hsqldb/jdbcParameterMetaData.java,v retrieving revision 1.2 diff -r1.2 jdbcParameterMetaData.java 92a93 > Result.ResultMetaData rmd; 99c100,102 < types = r.colType; --- > rmd = r.metaData; > > types = rmd.colType; 101,104c104,107 < nullability = r.nullability; < isIdentity = r.isIdentity; < classNames = r.sClassName; < modes = r.paramMode; --- > nullability = rmd.nullability; > isIdentity = rmd.isIdentity; > classNames = rmd.sClassName; > modes = rmd.paramMode; ----- Original Message ----- From: "Sebastian Kloska" <[EMAIL PROTECTED]> To: "HSQLDB Developers" <[EMAIL PROTECTED]>; "fredt" <[EMAIL PROTECTED]> Sent: 26 August 2003 09:25 Subject: Re: [Hsqldb-developers] Build failes under SDK 1.4.X Hi Fredt at al. No the change doesn't seem to be there.... S. fredt wrote: > Thanks Sebastian, > > Changes to this file had not been committed to CVS for some reason. A change > similar to what you suggest is now there. As this file is JDK 1.4 specific > due to the use of a new JDBC interface, it won't compile under 1.3. > > Also, the Sourceforge listserver seems to be erratic. I received your post > less than an hour ago, although you sent it over 20 hours ago. > > The current CVS head contains updates to ON DELETE CASCADE to work with > chained same-table references. > > Fred ------------------------------------------------------- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on a single machine. WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0 _______________________________________________ hsqldb-developers mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/hsqldb-developers ------------------------------------------------------- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on a single machine. WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0 _______________________________________________ hsqldb-developers mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/hsqldb-developers