summaryrefslogtreecommitdiff
path: root/x11/kdebase2/patches/patch-cc
diff options
context:
space:
mode:
authorskrll <skrll@pkgsrc.org>2001-10-15 22:45:55 +0000
committerskrll <skrll@pkgsrc.org>2001-10-15 22:45:55 +0000
commita62b3e67a68598fb0fe4dc2e4d5c5c9e4b884cb3 (patch)
tree49e414584e7255669c95e2837a22f79f3eb9d507 /x11/kdebase2/patches/patch-cc
parent0fd50d6c14cb246a43399f14bb57be000010fcc8 (diff)
downloadpkgsrc-a62b3e67a68598fb0fe4dc2e4d5c5c9e4b884cb3.tar.gz
Update to KDE 2.2.1
With apologies to Al I wouldn't know where to start with a summary of the changes between 2.1 and 2.2.1 - there are just too many. A couple of hopefully static URLS that contain useful information are http://www.kde.org/announcements/changelog2_1to2_2.html http://www.kde.org/announcements/changelog2_2to2_2_1.html Support for a.out for kde{libs,base} added by me. The libtool/a.out combination doesn't like the linking of modules into binaries. A better way of doing this will appear in future versions of KDE/pkgsrc.
Diffstat (limited to 'x11/kdebase2/patches/patch-cc')
-rw-r--r--x11/kdebase2/patches/patch-cc25
1 files changed, 25 insertions, 0 deletions
diff --git a/x11/kdebase2/patches/patch-cc b/x11/kdebase2/patches/patch-cc
new file mode 100644
index 00000000000..4799d2419d3
--- /dev/null
+++ b/x11/kdebase2/patches/patch-cc
@@ -0,0 +1,25 @@
+$NetBSD: patch-cc,v 1.1 2001/10/15 22:46:04 skrll Exp $
+
+--- kicker/share/pluginmgr.h.orig Wed Sep 5 00:16:12 2001
++++ kicker/share/pluginmgr.h
+@@ -26,8 +26,8 @@
+
+ #include <qstring.h>
+ #include <qintdict.h>
+-#define LT_NON_POSIX_NAMESPACE // Make sure lt_ptr_t is defined
+-#include <ltdl.h>
++
++#include <klibloader.h>
+
+ class KPanelApplet;
+ class KPanelExtension;
+@@ -43,7 +43,8 @@
+ bool removePlugin(QWidget *plugin);
+
+ protected:
+- QIntDict<lt_dlhandle> handleDict;
++ QIntDict<QString> handleDict;
++ KLibLoader* loader;
+ };
+
+ #endif