Author: nextgens
Date: 2006-11-11 01:29:20 +0000 (Sat, 11 Nov 2006)
New Revision: 10877
Added:
trunk/contrib/wrapper/
Removed:
trunk/contrib/wrapper.jar
Modified:
trunk/contrib/freenet_ext/build.xml
Log:
Contrib: Wrapper: build it from source too if possible
Modified: trunk/contrib/freenet_ext/build.xml
===================================================================
--- trunk/contrib/freenet_ext/build.xml 2006-11-11 01:16:11 UTC (rev 10876)
+++ trunk/contrib/freenet_ext/build.xml 2006-11-11 01:29:20 UTC (rev 10877)
@@ -57,21 +57,26 @@
<target name="bdb" depends="init" description="Build the BDB provider">
<ant antfile="build.xml" dir="../bdb/"/>
</target>
+
+ <target name="wrapper" depends="init" description="Build the java
wrapper">
+ <ant antfile="build.xml" dir="../wrapper/"/>
+ </target>
<target name="clean" depends="distclean"/>
<target name="distclean" description="Cleanup the build directory">
<ant antfile="build.xml" target="clean" dir="../fec/common/"/>
<ant antfile="build.xml" target="clean" dir="../bdb/"/>
+ <ant antfile="build.xml" target="clean" dir="../wrapper/"/>
<delete dir="${build}"/>
<delete file="${jar.location}"/>
</target>
- <target name="jar" depends="clean,fec,jcpuid,bigint,bdb"
description="Create the jar file">
+ <target name="jar" depends="clean,fec,jcpuid,bigint,bdb,wrapper"
description="Create the jar file">
<jar jarfile="${jar.location}" basedir="${build}" includes="**">
<zipfileset src="../fec/common/lib/onion-common.jar"/>
<zipfileset src="../bdb/lib/je.jar"/>
- <zipfileset src="../wrapper.jar"/>
+ <zipfileset src="../wrapper/lib/wrapper.jar"/>
</jar>
</target>
</project>
Property changes on: trunk/contrib/wrapper
___________________________________________________________________
Name: svn:externals
+ wrapper -r1236 https://svn.sourceforge.net/svnroot/wrapper/trunk/wrapper/
Deleted: trunk/contrib/wrapper.jar
===================================================================
(Binary files differ)