summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-09-07 03:14:27 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-09-07 03:14:27 +0000
commit1e0129ee3e605a127843984f97e32fac1c8d84d0 (patch)
tree0c27971999306da190294947d3496a0705c589bb /x11-wm
parent1. fix compile on GCC 3.2 (diff)
Fix build on -current (s/friend/friend class/)
Shown how to fix by: kan
Notes
Notes: svn path=/head/; revision=65758
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/bbpager/files/patch-aa20
-rw-r--r--x11-wm/bbpager/files/patch-ab11
2 files changed, 31 insertions, 0 deletions
diff --git a/x11-wm/bbpager/files/patch-aa b/x11-wm/bbpager/files/patch-aa
new file mode 100644
index 000000000000..fef1989f462d
--- /dev/null
+++ b/x11-wm/bbpager/files/patch-aa
@@ -0,0 +1,20 @@
+--- LinkedList.hh.orig Fri Sep 6 20:12:22 2002
++++ LinkedList.hh Fri Sep 6 20:12:31 2002
+@@ -50,7 +50,7 @@
+ __llist *list;
+ __llist_node *node;
+
+- friend __llist;
++ friend class __llist;
+
+
+ protected:
+@@ -73,7 +73,7 @@
+ __llist_node *_first, *_last;
+ __llist *iterators;
+
+- friend __llist_iterator;
++ friend class __llist_iterator;
+
+
+ protected:
diff --git a/x11-wm/bbpager/files/patch-ab b/x11-wm/bbpager/files/patch-ab
new file mode 100644
index 000000000000..6398e2c8a4c2
--- /dev/null
+++ b/x11-wm/bbpager/files/patch-ab
@@ -0,0 +1,11 @@
+--- Timer.hh.orig Fri Sep 6 20:12:10 2002
++++ Timer.hh Fri Sep 6 20:12:17 2002
+@@ -47,7 +47,7 @@
+
+
+ class BTimer {
+- friend BaseDisplay;
++ friend class BaseDisplay;
+ private:
+ BaseDisplay *display;
+ TimeoutHandler *handler;