| From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
|---|---|
| To: | girgen(at)pingpong(dot)net, pgsql-bugs(at)postgresql(dot)org |
| Cc: | PostgreSQL jdbc list <pgsql-jdbc(at)postgresql(dot)org> |
| Subject: | Re: Bug #926: if old postgresql.jar in CLASSPATH, ant fails |
| Date: | 2003-08-16 20:54:56 |
| Message-ID: | 200308162054.h7GKsuC28778@candle.pha.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-bugs pgsql-jdbc |
Is this patch valid for inclusion in jdbc?
---------------------------------------------------------------------------
pgsql-bugs(at)postgresql(dot)org wrote:
> Palle Girgensohn (girgen(at)pingpong(dot)net) reports a bug with a severity of 3
> The lower the number the more severe it is.
>
> Short Description
> if old postgresql.jar in CLASSPATH, ant fails
>
> Long Description
> See http://www.freebsd.org/cgi/query-pr.cgi?pr=48878
>
> If there is an older postgresql.jar file in the ant classpath when building a new postgresql.jar, it will fail.
>
> Sample Code
> Adding includeAntRuntime="no" to the compile target in build.xml, as suggested by Tetsurou Okazaki <okazaki(at)FreeBSD(dot)org>, fixes the problem
>
> --- src/interfaces/jdbc/build.xml~ Sun Oct 20 02:10:55 2002
> +++ src/interfaces/jdbc/build.xml Mon Mar 3 12:10:37 2003
> @@ -101,7 +101,7 @@
>
> <!-- This is the core of the driver. It is common for all three versions. -->
> <target name="compile" depends="prepare,check_versions,driver">
> - <javac srcdir="${srcdir}" destdir="${builddir}" debug="${debug}">
> + <javac includeAntRuntime="no" srcdir="${srcdir}" destdir="${builddir}" debug="${debug}">
> <include name="${package}/**" />
>
> <exclude name="${package}/jdbc1/**" unless="jdbc1"/>
>
>
> No file was uploaded with this report
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Gonzalo Paniagua Javier | 2003-08-16 21:08:21 | Reading from a read-only BLOB is allowed |
| Previous Message | Kevin Houle | 2003-08-16 14:10:16 | Re: DBD::Pg 'lo_read' fails on >= 32768 byte large objects |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Oliver Jowett | 2003-08-17 01:54:20 | patch: fix 'compile' target to do correct dependency checking |
| Previous Message | Nick Fankhauser | 2003-08-16 13:19:36 | Re: resultset.first() untrappable error |