diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-12-14 18:01:33 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-12-14 18:01:33 +0000 |
commit | e07ea6c227e759232b932a5b63a74140ddd6a921 (patch) | |
tree | 15c3b9f2737b8df09e845616bdf7a7864b66f961 /kde-base/kate/files | |
parent | Link libeap with -lssl (#158062). (diff) | |
download | gentoo-2-e07ea6c227e759232b932a5b63a74140ddd6a921.tar.gz gentoo-2-e07ea6c227e759232b932a5b63a74140ddd6a921.tar.bz2 gentoo-2-e07ea6c227e759232b932a5b63a74140ddd6a921.zip |
Add patch to fix issues with hidden visibility disabled, bug #158146. Thanks Timothy for reporting.
(Portage version: 2.1.2_rc3-r4)
Diffstat (limited to 'kde-base/kate/files')
-rw-r--r-- | kde-base/kate/files/digest-kate-3.5.5-r1 | 3 | ||||
-rw-r--r-- | kde-base/kate/files/kate-3.5.5-visibility.patch | 77 |
2 files changed, 80 insertions, 0 deletions
diff --git a/kde-base/kate/files/digest-kate-3.5.5-r1 b/kde-base/kate/files/digest-kate-3.5.5-r1 new file mode 100644 index 000000000000..155559e1a388 --- /dev/null +++ b/kde-base/kate/files/digest-kate-3.5.5-r1 @@ -0,0 +1,3 @@ +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/kate/files/kate-3.5.5-visibility.patch b/kde-base/kate/files/kate-3.5.5-visibility.patch new file mode 100644 index 000000000000..4468a30ffff6 --- /dev/null +++ b/kde-base/kate/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 |