forked from I2P_Developers/i2p.i2p
add additional arm types to the 'noExe' condition & add reference the cybergarage javadocs revision in history.txt
This commit is contained in:
40
build.xml
40
build.xml
@ -1202,42 +1202,44 @@
|
|||||||
|
|
||||||
<target name="installerexe" depends="launch4j">
|
<target name="installerexe" depends="launch4j">
|
||||||
<condition property="noExe">
|
<condition property="noExe">
|
||||||
<or>
|
<or>
|
||||||
<os arch="ppc" />
|
<os arch="ppc" />
|
||||||
<os arch="armv5tejl" />
|
<os arch="armv5tejl" />
|
||||||
</or>
|
<os arch="armv6l" />
|
||||||
</condition>
|
<os arch="armv7l" />
|
||||||
<condition property="noExe">
|
</or>
|
||||||
<not>
|
</condition>
|
||||||
<or>
|
<condition property="noExe">
|
||||||
<os name="Linux" />
|
<not>
|
||||||
<os family="windows" />
|
<or>
|
||||||
</or>
|
<os name="Linux" />
|
||||||
</not>
|
<os family="windows" />
|
||||||
</condition>
|
</or>
|
||||||
<ant target="doInstallerEXE" />
|
</not>
|
||||||
|
</condition>
|
||||||
|
<ant target="doInstallerEXE" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- this makes i2pinstall.exe from install.jar -->
|
<!-- this makes i2pinstall.exe from install.jar -->
|
||||||
<target name="doInstallerEXE" depends="launch4j" unless="noExe">
|
<target name="doInstallerEXE" depends="launch4j" unless="noExe">
|
||||||
<echo message="See the file "build.properties" if this step fails." />
|
<echo message="See the file "build.properties" if this step fails." />
|
||||||
<!-- now the installer exe -->
|
<!-- now the installer exe -->
|
||||||
<launch4j configFile="./installer/i2pinstaller.xml" />
|
<launch4j configFile="./installer/i2pinstaller.xml" />
|
||||||
<!-- thazzit -->
|
<!-- thazzit -->
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- Custom installers -->
|
<!-- Custom installers -->
|
||||||
<target name="installer-nowindows" depends="clean, preppkg-nowindows, izpack-patches" >
|
<target name="installer-nowindows" depends="clean, preppkg-nowindows, izpack-patches" >
|
||||||
<izpack input="${basedir}/installer/install.xml" output="${basedir}/i2pinstall_${full.version}.jar" installerType="standard" basedir="${basedir}" />
|
<izpack input="${basedir}/installer/install.xml" output="${basedir}/i2pinstall_${full.version}.jar" installerType="standard" basedir="${basedir}" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
||||||
<target name="installer-freebsd" depends="clean, preppkg-freebsd-only, izpack-patches" >
|
<target name="installer-freebsd" depends="clean, preppkg-freebsd-only, izpack-patches" >
|
||||||
<izpack input="${basedir}/installer/install.xml" output="${basedir}/i2pinstall_${full.version}_freebsd-only.jar" installerType="standard" basedir="${basedir}" />
|
<izpack input="${basedir}/installer/install.xml" output="${basedir}/i2pinstall_${full.version}_freebsd-only.jar" installerType="standard" basedir="${basedir}" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="installer-linux" depends="clean, preppkg-linux-only, izpack-patches" >
|
<target name="installer-linux" depends="clean, preppkg-linux-only, izpack-patches" >
|
||||||
<izpack input="${basedir}/installer/install.xml" output="${basedir}/i2pinstall_${full.version}_linux-only.jar" installerType="standard" basedir="${basedir}" />
|
<izpack input="${basedir}/installer/install.xml" output="${basedir}/i2pinstall_${full.version}_linux-only.jar" installerType="standard" basedir="${basedir}" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2012-12-24 kytv
|
||||||
|
* Javadocs: Fix javadoc errors in the cybergarage package. Upstream bug #3598391 has been
|
||||||
|
filed for this issue. If these javadoc fixes need to be reverted in the future,
|
||||||
|
MTN rev 5bdb7fc27e35f174001bd6105a502fd5094842e5 covers it.
|
||||||
|
|
||||||
2012-12-22 zzz
|
2012-12-22 zzz
|
||||||
- i2psnark: Add announce list support (BEP 12) (ticket #778)
|
- i2psnark: Add announce list support (BEP 12) (ticket #778)
|
||||||
- i2ptunnel: Add more tunnel quantity options for servers
|
- i2ptunnel: Add more tunnel quantity options for servers
|
||||||
|
Reference in New Issue
Block a user