ports/databases/postgresql-jdbc/files/patch-build-xml
Palle Girgensohn 718e9b7e4c Update JDBC support to version 8.0 (build 310).
The PostgreSQL JDBC project has been decoupled from the server
distribution, and is now hosted at http://jdbc.postgresql.org/.

Approved by:	ade (mentor)
2005-02-11 00:10:59 +00:00

14 lines
773 B
Text

--- build.xml.orig Tue Feb 1 08:27:53 2005
+++ build.xml Fri Feb 11 00:33:41 2005
@@ -105,10 +105,7 @@
<target name="compile" depends="prepare,check_versions,driver">
- <available classname="org.postgresql.Driver" property="old.driver.present" />
- <fail message="Old driver was detected on classpath or in jre/lib/ext, please remove and try again." if="old.driver.present" />
-
- <javac classpath="${srcdir}" srcdir="${srcdir}" destdir="${builddir}" debug="${debug}">
+ <javac includeAntRuntime="no" classpath="${srcdir}" srcdir="${srcdir}" destdir="${builddir}" debug="${debug}">
<!-- This is the core of the driver. It is common for all versions. -->
<include name="${package}/*.java" />
<include name="${package}/core/**" />