|
From: <ka...@us...> - 2010-04-03 13:32:43
|
Revision: 3307
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3307&view=rev
Author: kappa1
Date: 2010-04-03 13:32:35 +0000 (Sat, 03 Apr 2010)
Log Message:
-----------
Modified build.xml so that the manifest file in lwjgl.jar and lwjgl_util_applet.jar is now tagged with 'Trusted-Library: true'.
This is needed from Java6u19+ when using a mix of signed/unsigned jars, otherwise an extra super scary dialog box will be shown to the user when an applet or JWS application is run.
Modified Paths:
--------------
trunk/LWJGL/build.xml
Modified: trunk/LWJGL/build.xml
===================================================================
--- trunk/LWJGL/build.xml 2010-04-02 18:45:19 UTC (rev 3306)
+++ trunk/LWJGL/build.xml 2010-04-03 13:32:35 UTC (rev 3307)
@@ -124,6 +124,7 @@
<fileset refid="lwjgl.fileset" />
<manifest>
<attribute name="Sealed" value="true"/>
+ <attribute name="Trusted-Library" value="true"/>
</manifest>
</jar>
@@ -132,6 +133,7 @@
<fileset refid="lwjgl_util_applet.fileset" />
<manifest>
<attribute name="Sealed" value="true"/>
+ <attribute name="Trusted-Library" value="true"/>
</manifest>
</jar>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|