Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
23e5da8a
Commit
23e5da8a
authored
Jun 27, 2002
by
Barry Lind
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed build.xml to echo correct jdbc version under ant1.6
parent
ca4ca0b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
src/interfaces/jdbc/build.xml
src/interfaces/jdbc/build.xml
+8
-4
No files found.
src/interfaces/jdbc/build.xml
View file @
23e5da8a
...
...
@@ -6,7 +6,7 @@
This file now requires Ant 1.4.1. 2002-04-18
$Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/build.xml,v 1.2
3 2002/04/18 04:58:13 momjian
Exp $
$Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/build.xml,v 1.2
4 2002/06/27 04:38:01 barry
Exp $
-->
...
...
@@ -42,11 +42,15 @@
<equals
arg1=
"${ant.java.version}"
arg2=
"1.4"
/>
</or>
</condition>
<condition
property=
"jdbc3"
>
<equals
arg1=
"${ant.java.version}"
arg2=
"1.4"
/>
</condition>
<condition
property=
"datasource"
>
<and>
<or>
<equals
arg1=
"${ant.java.version}"
arg2=
"1.2"
/>
<equals
arg1=
"${ant.java.version}"
arg2=
"1.3"
/>
<equals
arg1=
"${ant.java.version}"
arg2=
"1.4"
/>
</or>
<available
classname=
"javax.sql.DataSource"
/>
</and>
...
...
@@ -113,15 +117,15 @@
-->
<target
name=
"driver"
depends=
"prepare,check_versions"
>
<!-- determine the edition text -->
<property
name=
"edition"
value=
"JDBC1"
/>
<condition
property=
"edition"
value=
"JDBC1"
>
<equals
arg1=
"${jdbc1}"
arg2=
"true"
/>
</condition>
<condition
property=
"edition"
value=
"JDBC2"
>
<or>
<equals
arg1=
"${jdbc2}"
arg2=
"true"
/>
<equals
arg1=
"${jdbc3}"
arg2=
"true"
/>
<!-- fake it for now -->
</or>
</condition>
<condition
property=
"edition"
value=
"JDBC2 Enterprise"
>
<and>
<available
classname=
"javax.sql.DataSource"
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment