blob: e3c40f1c0f42e67ac5fd66993dcb8e16800c40e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
--- build.xml.old 2010-03-06 07:34:18.000000000 +1300
+++ build.xml 2010-03-06 07:38:24.000000000 +1300
@@ -191,7 +191,8 @@
<pathelement path="${extlibs.dir}/asm-commons-3.1.jar" />
<pathelement path="${extlibs.dir}/constantine-0.4.jar" />
<pathelement path="${extlibs.dir}/jna.jar"/>
- <pathelement path="${extlibs.dir}/jna-posix.jar"/>
+ <pathelement path="${extlibs.dir}/jna-posix.jar"/>
+ <pathelement path="${extlibs.dir}/ant.jar" />
</path>
<available property="informix.present" classname="com.informix.jdbc.IfxDriver" classpath="${informix.jar}" />
@@ -200,7 +201,8 @@
<path id="test.classpath">
<path refid="main.classpath"/>
<pathelement path="${extlibs.dir}/asm-commons-3.1.jar" />
- <pathelement path="${extlibs.dir}/junit-3.8.2.jar" />
+ <pathelement path="${extlibs.dir}/junit-3.8.2.jar" />
+ <pathelement path="${extlibs.dir}/xercesImpl.jar" />
<pathelement path="${exposed.dir}" />
<pathelement path="${compile.dir}" />
<pathelement path="${cpptasks.jar.dir}" />
@@ -236,15 +238,6 @@
<istrue value="${has.repositories.connection}" />
</condition>
- <!-- classpath for svn ant task -->
- <path id="svn.classpath">
- <pathelement path="${java.class.path}" />
- <fileset dir="${svnant.jar.dir}">
- <include name="*.jar"/>
- </fileset>
- </path>
- <!-- taskdef for svn ant task -->
- <taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask" classpathref="svn.classpath" />
</target>
<target name="full-check" depends="full-preinit, init, dump-env">
<!-- Require all of the optional jars for a full build -->
|