Hello community,

here is the log from the commit of package icedtea-web for openSUSE:11.3
checked in at Fri Jul 1 23:10:02 CEST 2011.



--------
--- old-versions/11.3/UPDATES/all/icedtea-web/icedtea-web.changes       
2011-06-10 11:01:59.000000000 +0200
+++ 11.3/icedtea-web/icedtea-web.changes        2011-07-01 23:06:00.574314000 
+0200
@@ -1,0 +2,6 @@
+Thu Jun 30 11:37:13 UTC 2011 - [email protected]
+
+- fix bnc#702825 - IcedTeaPlugin.so gives undefined symbol
+  * fix the icedtea-web-1.1-moonlight-symbol-clash.patch
+
+-------------------------------------------------------------------

calling whatdependson for 11.3-i586


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ icedtea-web.spec ++++++
--- /var/tmp/diff_new_pack.DZNIVc/_old  2011-07-01 23:09:37.000000000 +0200
+++ /var/tmp/diff_new_pack.DZNIVc/_new  2011-07-01 23:09:37.000000000 +0200
@@ -48,9 +48,11 @@
 %define pluginpath      %{_libdir}
 %define pluginname      IcedTeaPlugin.so
 
+%define suse_insert_debug_package ERROR %{suse_insert_debug_package}
+
 Name:           icedtea-web
 Version:        1.1
-Release:        0.<RELEASE2>
+Release:        0.<RELEASE4>
 Summary:        Java Web Start and plugin implementation
 Group:          Development/Languages/Java
 License:        GPLv2 ; - with the OpenJDK Assembly Exception and the GNU 
Classpath Exception
@@ -104,7 +106,9 @@
 
 Summary:        API documentation for %{name}
 Group:          Documentation/Other
+%if 0%{?suse_version} >= 1120
 BuildArch:      noarch
+%endif
 
 %description javadoc
 This package contains Javadocs for the %{name}.

++++++ icedtea-web-1.1-moonlight-symbol-clash.patch ++++++
--- /var/tmp/diff_new_pack.DZNIVc/_old  2011-07-01 23:09:37.000000000 +0200
+++ /var/tmp/diff_new_pack.DZNIVc/_new  2011-07-01 23:09:37.000000000 +0200
@@ -1,7 +1,7 @@
 Index: icedtea-web-1.1/plugin/icedteanp/IcedTeaNPPlugin.cc
 ===================================================================
---- icedtea-web-1.1.orig/plugin/icedteanp/IcedTeaNPPlugin.cc   2011-06-08 
21:42:40.000000000 +0200
-+++ icedtea-web-1.1/plugin/icedteanp/IcedTeaNPPlugin.cc        2011-06-10 
10:39:41.012379696 +0200
+--- icedtea-web-1.1.orig/plugin/icedteanp/IcedTeaNPPlugin.cc   2011-06-08 
21:42:40.350749654 +0200
++++ icedtea-web-1.1/plugin/icedteanp/IcedTeaNPPlugin.cc        2011-06-30 
13:32:38.175450759 +0200
 @@ -243,8 +243,8 @@
  static GPid appletviewer_pid = -1;
  static guint appletviewer_watch_id = -1;
@@ -31,3 +31,86 @@
        {
            command_line[cmd_num++] = 
g_strdup("-Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y");
        } else
+Index: icedtea-web-1.1/plugin/icedteanp/IcedTeaNPPlugin.h
+===================================================================
+--- icedtea-web-1.1.orig/plugin/icedteanp/IcedTeaNPPlugin.h    2011-06-08 
21:42:40.000000000 +0200
++++ icedtea-web-1.1/plugin/icedteanp/IcedTeaNPPlugin.h 2011-06-30 
13:34:25.401264860 +0200
+@@ -101,7 +101,7 @@
+ extern pthread_mutex_t pluginAsyncCallMutex;
+ 
+ // debug switch
+-extern int plugin_debug;
++extern int icedtea_plugin_debug;
+ 
+ // Browser function table.
+ extern NPNetscapeFuncs browser_functions;
+Index: icedtea-web-1.1/plugin/icedteanp/IcedTeaPluginUtils.cc
+===================================================================
+--- icedtea-web-1.1.orig/plugin/icedteanp/IcedTeaPluginUtils.cc        
2011-06-08 21:42:40.000000000 +0200
++++ icedtea-web-1.1/plugin/icedteanp/IcedTeaPluginUtils.cc     2011-06-30 
13:34:57.213396453 +0200
+@@ -404,7 +404,7 @@
+ 
+       wchar_t c;
+ 
+-      if (plugin_debug) printf("Converted UTF-16LE string: ");
++      if (icedtea_plugin_debug) printf("Converted UTF-16LE string: ");
+ 
+       result_unicode_str->clear();
+       for (int i = begin; i < begin+length; i+=2)
+@@ -418,14 +418,14 @@
+               (c >= 'A' && c <= 'Z') ||
+               (c >= '0' && c <= '9'))
+         {
+-              if (plugin_debug) printf("%c", c);
++              if (icedtea_plugin_debug) printf("%c", c);
+         }
+ 
+         result_unicode_str->push_back(c);
+       }
+ 
+       // not routing via debug print macros due to wide-string issues
+-      if (plugin_debug) printf(". Length=%d\n", result_unicode_str->length());
++      if (icedtea_plugin_debug) printf(". Length=%d\n", 
result_unicode_str->length());
+ }
+ 
+ /*
+@@ -439,7 +439,7 @@
+ {
+ 
+         // This is a CPU intensive function. Run only if debugging
+-        if (!plugin_debug)
++        if (!icedtea_plugin_debug)
+             return;
+ 
+       std::string* str = new std::string();
+@@ -619,7 +619,7 @@
+ IcedTeaPluginUtilities::printStringPtrVector(const char* prefix, 
std::vector<std::string*>* str_ptr_vector)
+ {
+         // This is a CPU intensive function. Run only if debugging
+-        if (!plugin_debug)
++        if (!icedtea_plugin_debug)
+             return;
+ 
+       std::string* str = new std::string();
+@@ -643,7 +643,7 @@
+ IcedTeaPluginUtilities::printNPVariant(NPVariant variant)
+ {
+     // This is a CPU intensive function. Run only if debugging
+-    if (!plugin_debug)
++    if (!icedtea_plugin_debug)
+         return;
+ 
+     if (NPVARIANT_IS_VOID(variant))
+Index: icedtea-web-1.1/plugin/icedteanp/IcedTeaPluginUtils.h
+===================================================================
+--- icedtea-web-1.1.orig/plugin/icedteanp/IcedTeaPluginUtils.h 2011-06-08 
21:42:40.000000000 +0200
++++ icedtea-web-1.1/plugin/icedteanp/IcedTeaPluginUtils.h      2011-06-30 
13:35:56.290497900 +0200
+@@ -69,7 +69,7 @@
+ #define PLUGIN_DEBUG(...) \
+   do                                                          \
+   {                                                           \
+-    if (plugin_debug)                                         \
++    if (icedtea_plugin_debug)                                         \
+     {                                                         \
+       fprintf (stderr, "ITNPP Thread# %ld: ", pthread_self()); \
+       fprintf (stderr, __VA_ARGS__);                          \


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to