Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 17108e6

Browse files
author
Barry Lind
committed
Applied patch from Oliver Jewett to fix a deprecation in newer versions of ant
Modified Files: jdbc/build.xml
1 parent c82bfea commit 17108e6

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/interfaces/jdbc/build.xml

+7-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
This file now requires Ant 1.4.1. 2002-04-18
88
9-
$Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/build.xml,v 1.32 2003/02/27 05:45:43 barry Exp $
9+
$Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/build.xml,v 1.33 2003/08/11 21:25:01 barry Exp $
1010
1111
-->
1212

@@ -22,7 +22,6 @@
2222
<property name="builddir" value="build" />
2323
<property name="package" value="org/postgresql" />
2424
<property name="debug" value="on" />
25-
<property name="ssl" value="false" />
2625

2726
<property file="build.properties"/>
2827

@@ -167,13 +166,17 @@
167166
<equals arg1="${ssl}" arg2="true"/>
168167
</condition>
169168
<condition property="ssl_config" value="//">
170-
<equals arg1="${ssl}" arg2="false"/>
169+
<not>
170+
<equals arg1="${ssl}" arg2="true"/>
171+
</not>
171172
</condition>
172173
<condition property="ssl_edition" value="SSL">
173174
<equals arg1="${ssl}" arg2="true"/>
174175
</condition>
175176
<condition property="ssl_edition" value="NO SSL">
176-
<equals arg1="${ssl}" arg2="false"/>
177+
<not>
178+
<equals arg1="${ssl}" arg2="true"/>
179+
</not>
177180
</condition>
178181

179182
<!-- Some defaults -->

0 commit comments

Comments
 (0)