Changeset 162c5bc
- Timestamp:
- Jun 9, 2011 8:38:01 PM (10 years ago)
- Branches:
- master
- Children:
- 2c0e6a3
- Parents:
- 3d9f68a
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
build.xml
r3d9f68a r162c5bc 507 507 <copy todir="pkg-temp/lib/wrapper/win32/"> 508 508 <fileset dir="installer/lib/wrapper/win32/" /> 509 </copy> 510 <copy todir="pkg-temp/lib/wrapper/win64/"> 511 <fileset dir="installer/lib/wrapper/win64/" /> 509 512 </copy> 510 513 </target> -
history.txt
r3d9f68a r162c5bc 1 2011-06-09 kytv 2 * Added an x64 wrapper for Windows. This is needed because a 32bit wrapper 3 cannot start a 64bit JVM. 4 1 5 2011-06-08 zzz 2 6 * Build: -
installer/install.xml
r3d9f68a r162c5bc 131 131 <parsable targetfile="$INSTALL_PATH/runplain.sh" type="shell" os="unix|mac" /> 132 132 133 <conditions> 134 <condition type="variable" id="is64bit"> 135 <name>SYSTEM_sun_arch_data_model</name> 136 <value>64</value> 137 </condition> 138 </conditions> 133 139 <!-- postinstall stuff for windows --> 140 <!-- Wrapper for 32bit Windows JVM --> 134 141 <executable targetfile="$INSTALL_PATH/installer/copy.jar" type="jar" stage="postinstall" keep="true" failure="warn"> <os family="windows" /> 135 142 <args><arg value="$INSTALL_PATH\lib\wrapper\win32\I2Psvc.exe" /><arg value="$INSTALL_PATH" /></args></executable> 136 143 <executable targetfile="$INSTALL_PATH/installer/copy.jar" type="jar" stage="postinstall" keep="true" failure="warn"> <os family="windows" /> 137 144 <args><arg value="$INSTALL_PATH\lib\wrapper\win32\wrapper.dll" /><arg value="$INSTALL_PATH\lib" /></args></executable> 145 <!-- wrapper for 64bit Windows JVM --> 146 <executable targetfile="$INSTALL_PATH/installer/copy.jar" type="jar" stage="postinstall" keep="true" failure="warn" 147 condition="is64bit" > <os family="windows" /> 148 <args><arg value="$INSTALL_PATH\lib\wrapper\win64\I2Psvc.exe" /><arg value="$INSTALL_PATH" /></args></executable> 149 <executable targetfile="$INSTALL_PATH/installer/copy.jar" type="jar" stage="postinstall" keep="true" failure="warn" 150 condition="is64bit" > <os family="windows" /> 151 <args><arg value="$INSTALL_PATH\lib\wrapper\win64\wrapper.dll" /><arg value="$INSTALL_PATH\lib" /></args></executable> 152 <!-- Arch-indep wrapper.jar on Windows --> 138 153 <executable targetfile="$INSTALL_PATH/installer/copy.jar" type="jar" stage="postinstall" keep="true" failure="warn"> <os family="windows" /> 139 154 <args><arg value="$INSTALL_PATH\lib\wrapper\all\wrapper.jar" /><arg value="$INSTALL_PATH\lib" /></args></executable> -
router/java/src/net/i2p/router/RouterVersion.java
r3d9f68a r162c5bc 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 2 0;21 public final static long BUILD = 21; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.