summaryrefslogtreecommitdiff
path: root/wm/qvwm/patches
diff options
context:
space:
mode:
Diffstat (limited to 'wm/qvwm/patches')
-rw-r--r--wm/qvwm/patches/patch-aa13
-rw-r--r--wm/qvwm/patches/patch-ab13
-rw-r--r--wm/qvwm/patches/patch-ac12
-rw-r--r--wm/qvwm/patches/patch-ad35
4 files changed, 0 insertions, 73 deletions
diff --git a/wm/qvwm/patches/patch-aa b/wm/qvwm/patches/patch-aa
deleted file mode 100644
index 50665afebbb..00000000000
--- a/wm/qvwm/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2001/05/30 14:30:48 agc Exp $
-
---- src/audiodev_sun.h.orig Mon Apr 23 05:56:47 2001
-+++ src/audiodev_sun.h Mon Apr 23 05:57:04 2001
-@@ -32,6 +32,8 @@
- #include <sun/audioio.h>
- #endif
-
-+#include <sys/types.h>
-+
- #if (defined(sun) && defined(__SVR4)) || defined(__NetBSD__) || defined(__OpenBSD__)
- #include <sys/audioio.h>
- #endif
diff --git a/wm/qvwm/patches/patch-ab b/wm/qvwm/patches/patch-ab
deleted file mode 100644
index bd6532c2faf..00000000000
--- a/wm/qvwm/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.2 2005/11/15 14:32:58 rillig Exp $
-
---- src/paging.cc.orig 2001-05-28 11:37:08.000000000 +0200
-+++ src/paging.cc 2005-11-13 14:19:10.000000000 +0100
-@@ -518,7 +518,7 @@
- return (BeltPos)i;
- }
-
-- ASSERT(FALSE);
-+ ASSERT(0);
-
- return BOTTOM; // XXX
- }
diff --git a/wm/qvwm/patches/patch-ac b/wm/qvwm/patches/patch-ac
deleted file mode 100644
index ccde742afa8..00000000000
--- a/wm/qvwm/patches/patch-ac
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ac,v 1.2 2005/11/15 14:32:58 rillig Exp $
-
---- src/image.cc.orig 2001-03-03 10:44:27.000000000 +0100
-+++ src/image.cc 2005-11-13 19:59:35.000000000 +0100
-@@ -22,6 +22,7 @@
- #include "config.h"
- #endif
- #include <string.h>
-+#include <stdlib.h>
- #include <X11/Xlib.h>
- #include <X11/Xutil.h>
- #include "main.h"
diff --git a/wm/qvwm/patches/patch-ad b/wm/qvwm/patches/patch-ad
deleted file mode 100644
index b4af52b505f..00000000000
--- a/wm/qvwm/patches/patch-ad
+++ /dev/null
@@ -1,35 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2006/06/10 23:59:51 martin Exp $
-
---- src/gnome.cc.orig 2001-03-03 06:13:32.000000000 +0100
-+++ src/gnome.cc 2006-06-06 11:50:07.000000000 +0200
-@@ -104,11 +104,12 @@ void Gnome::SetProtocols()
- void Gnome::SetWorkspace()
- {
- Rect rcVirt = paging->GetVirtRect();
-- int num, val[2];
-+ long num, val[2];
-
- // set the number of desktops for workspace
- XA_WIN_WORKSPACE_COUNT = XInternAtom(display, "_WIN_WORKSPACE_COUNT", False);
- num = 1; // fixed
-+
- XChangeProperty(display, root, XA_WIN_WORKSPACE_COUNT, XA_CARDINAL, 32,
- PropModeReplace, (unsigned char *)&num, 1);
-
-@@ -116,6 +117,7 @@ void Gnome::SetWorkspace()
- XA_WIN_AREA_COUNT = XInternAtom(display, "_WIN_AREA_COUNT", False);
- val[0] = rcVirt.width;
- val[1] = rcVirt.height;
-+
- XChangeProperty(display, root, XA_WIN_AREA_COUNT, XA_CARDINAL, 32,
- PropModeReplace, (unsigned char *)val, 2);
-
-@@ -134,7 +136,7 @@ void Gnome::SetWorkspace()
- XA_WIN_WORKSPACE = XInternAtom(display, "_WIN_WORKSPACE", False);
- XA_WIN_AREA = XInternAtom(display, "_WIN_AREA", False);
-
-- int index = 0; // fixed
-+ long index = 0; // fixed
- XChangeProperty(display, root, XA_WIN_WORKSPACE, XA_CARDINAL, 32,
- PropModeReplace, (unsigned char *)&index, 1);
- }