summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-12-14 18:06:57 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-12-14 18:06:57 +0000
commit238ce4aca7a7a1c6ba29eefdf8b4e58fdb5cce83 (patch)
tree22e067bd2338e8de7df3ab2108dbe31987376798 /kde-base/kdebase/files
parentRemove stray patch. (diff)
downloadhistorical-238ce4aca7a7a1c6ba29eefdf8b4e58fdb5cce83.tar.gz
historical-238ce4aca7a7a1c6ba29eefdf8b4e58fdb5cce83.tar.bz2
historical-238ce4aca7a7a1c6ba29eefdf8b4e58fdb5cce83.zip
Add patch to fix issues with hidden visibility disabled, bug #158146. Thanks Timothy for reporting.
Package-Manager: portage-2.1.2_rc3-r4
Diffstat (limited to 'kde-base/kdebase/files')
-rw-r--r--kde-base/kdebase/files/digest-kdebase-3.5.5-r36
-rw-r--r--kde-base/kdebase/files/kate-3.5.5-visibility.patch77
2 files changed, 83 insertions, 0 deletions
diff --git a/kde-base/kdebase/files/digest-kdebase-3.5.5-r3 b/kde-base/kdebase/files/digest-kdebase-3.5.5-r3
new file mode 100644
index 000000000000..f51965cf1cbe
--- /dev/null
+++ b/kde-base/kdebase/files/digest-kdebase-3.5.5-r3
@@ -0,0 +1,6 @@
+MD5 420445e2dbddfd83ebc25e85a9b9cdda kdebase-3.5-patchset-03.tar.bz2 21409
+RMD160 941b919097d03347b10bccb51db2fa5e89d7ba16 kdebase-3.5-patchset-03.tar.bz2 21409
+SHA256 59c691754627f78daf7693e82496d808cf1cc31e2d6f32af829ec4ccfd776574 kdebase-3.5-patchset-03.tar.bz2 21409
+MD5 0c685af1cbca75f9c77b3ed231ba0468 kdebase-3.5.5.tar.bz2 23851886
+RMD160 6cf804de0487347a3e1d4ea6e5ba5114d23d9806 kdebase-3.5.5.tar.bz2 23851886
+SHA256 f77632e44214648e2d0adfe1a79dd61a6a738c21fe5abb0baff16b72432baaa0 kdebase-3.5.5.tar.bz2 23851886
diff --git a/kde-base/kdebase/files/kate-3.5.5-visibility.patch b/kde-base/kdebase/files/kate-3.5.5-visibility.patch
new file mode 100644
index 000000000000..4468a30ffff6
--- /dev/null
+++ b/kde-base/kdebase/files/kate-3.5.5-visibility.patch
@@ -0,0 +1,77 @@
+SVN commit 599194 by dhaumann:
+
+fix missing KDE_EXPORTs which caused undefined references for kate plugins.
+
+CCMAIL: kwrite-devel@kde.org
+
+
+ M +1 -1 application.h
+ M +1 -1 documentmanager.h
+ M +2 -2 plugin.h
+ M +1 -1 pluginconfiginterface.h
+ M +1 -1 pluginconfiginterfaceextension.h
+
+
+--- branches/KDE/3.5/kdebase/kate/interfaces/application.h #599193:599194
+@@ -72,7 +72,7 @@
+ * Returns the application object
+ * @return Application application object
+ */
+-Application *application ();
++KDE_EXPORT Application *application ();
+
+ }
+
+--- branches/KDE/3.5/kdebase/kate/interfaces/documentmanager.h #599193:599194
+@@ -104,7 +104,7 @@
+ * Returns the document manager object
+ * @return DocumentManager document manager object
+ */
+-DocumentManager *documentManager ();
++KDE_EXPORT DocumentManager *documentManager ();
+
+ }
+
+--- branches/KDE/3.5/kdebase/kate/interfaces/plugin.h #599193:599194
+@@ -52,7 +52,7 @@
+ unsigned int myPluginNumber;
+ };
+
+-Plugin *createPlugin ( const char* libname, Application *application = 0, const char *name = 0,const QStringList &args = QStringList() );
++KDE_EXPORT Plugin *createPlugin ( const char* libname, Application *application = 0, const char *name = 0,const QStringList &args = QStringList() );
+
+ /*
+ * view plugin class
+@@ -80,7 +80,7 @@
+ unsigned int myPluginViewInterfaceNumber;
+ };
+
+-PluginViewInterface *pluginViewInterface (Plugin *plugin);
++KDE_EXPORT PluginViewInterface *pluginViewInterface (Plugin *plugin);
+
+ }
+
+--- branches/KDE/3.5/kdebase/kate/interfaces/pluginconfiginterface.h #599193:599194
+@@ -56,7 +56,7 @@
+ };
+
+ class Plugin;
+-PluginConfigInterface *pluginConfigInterface (Plugin *plugin);
++KDE_EXPORT PluginConfigInterface *pluginConfigInterface (Plugin *plugin);
+
+ }
+
+--- branches/KDE/3.5/kdebase/kate/interfaces/pluginconfiginterfaceextension.h #599193:599194
+@@ -97,7 +97,7 @@
+ };
+
+ class Plugin;
+-PluginConfigInterfaceExtension *pluginConfigInterfaceExtension (Plugin *plugin);
++KDE_EXPORT PluginConfigInterfaceExtension *pluginConfigInterfaceExtension (Plugin *plugin);
+
+ }
+
+_______________________________________________
+KWrite-Devel mailing list
+KWrite-Devel@kde.org
+https://mail.kde.org/mailman/listinfo/kwrite-devel \ No newline at end of file