[pkg-java] r3501 - in trunk/commons-daemon: debian src/native/unix/native

marcusb-guest at alioth.debian.org marcusb-guest at alioth.debian.org
Fri May 18 06:27:59 UTC 2007


Author: marcusb-guest
Date: 2007-05-18 06:27:58 +0000 (Fri, 18 May 2007)
New Revision: 3501

Modified:
   trunk/commons-daemon/debian/changelog
   trunk/commons-daemon/src/native/unix/native/java.c
Log:
Workaround for libgcj/PR31700 in handling -X options.


Modified: trunk/commons-daemon/debian/changelog
===================================================================
--- trunk/commons-daemon/debian/changelog	2007-05-17 21:13:15 UTC (rev 3500)
+++ trunk/commons-daemon/debian/changelog	2007-05-18 06:27:58 UTC (rev 3501)
@@ -1,3 +1,10 @@
+commons-daemon (1.0.2~svn20061127-6) unstable; urgency=low
+
+  * Applied a workaround for a JNI bug in libgcj (see
+    http://gcc.gnu.org/PR31700).
+
+ -- Marcus Better <marcus at better.se>  Wed, 25 Apr 2007 15:11:01 +0200
+
 commons-daemon (1.0.2~svn20061127-5) unstable; urgency=low
 
   * jsvc can now redirect daemon output to syslog. (Closes: #402878)

Modified: trunk/commons-daemon/src/native/unix/native/java.c
===================================================================
--- trunk/commons-daemon/src/native/unix/native/java.c	2007-05-17 21:13:15 UTC (rev 3500)
+++ trunk/commons-daemon/src/native/unix/native/java.c	2007-05-18 06:27:58 UTC (rev 3501)
@@ -192,7 +192,7 @@
         return(false);
     }
 #endif
-    arg.ignoreUnrecognized=FALSE;
+    arg.ignoreUnrecognized=JNI_TRUE;
     arg.nOptions=args->onum;
     arg.nOptions++; /* Add abort code */
     opt=(JavaVMOption *)malloc(arg.nOptions*sizeof(JavaVMOption));




More information about the pkg-java-commits mailing list