$NetBSD: patch-aa,v 1.5 2003/01/02 18:46:42 jlam Exp $

--- build.xml.orig	Sat Oct 19 20:10:55 2002
+++ build.xml
@@ -48,21 +48,21 @@
     <available property="junit" classname="junit.framework.Test" />
     <condition property="jdbc2tests">
       <and>
-        <isset property="jdbc2"/>
-        <isset property="junit"/>
+        <equals arg1="${jdbc2}" arg2="true"/>
+        <equals arg1="${junit}" arg2="true"/>
       </and>
     </condition>
     <condition property="jdbc2optionaltests">
       <and>
-        <isset property="jdbc2"/>
-        <isset property="datasource"/>
-        <isset property="junit"/>
+        <equals arg1="${jdbc2}" arg2="true"/>
+        <equals arg1="${datasource}" arg2="true"/>
+        <equals arg1="${junit}" arg2="true"/>
       </and>
     </condition>
     <condition property="jdbc3tests">
       <and>
-        <isset property="jdbc3"/>
-        <isset property="junit"/>
+        <equals arg1="${jdbc3}" arg2="true"/>
+        <equals arg1="${junit}" arg2="true"/>
       </and>
     </condition>
   </target>
@@ -156,9 +156,6 @@
     <filter token="JDBCCONNECTCLASS" value="${connectclass}" />
     <filter token="DEF_PGPORT" value="${def_pgport}" />
 
-     <fail unless="major" message="'major' undefined. Please follow the directions in README."/>
-     <fail unless="minor" message="'minor' undefined. Please follow the directions in README."/>
- 
     <!-- Put a check for the current version here -->
 
     <!-- now copy and filter the file -->
