aboutsummaryrefslogtreecommitdiff
path: root/x11-wm/xfce4/files
diff options
context:
space:
mode:
Diffstat (limited to 'x11-wm/xfce4/files')
-rw-r--r--x11-wm/xfce4/files/patch-ag11
-rw-r--r--x11-wm/xfce4/files/patch-ah9
-rw-r--r--x11-wm/xfce4/files/patch-ai20
-rw-r--r--x11-wm/xfce4/files/patch-aj37
4 files changed, 0 insertions, 77 deletions
diff --git a/x11-wm/xfce4/files/patch-ag b/x11-wm/xfce4/files/patch-ag
deleted file mode 100644
index ab2b757db7e2..000000000000
--- a/x11-wm/xfce4/files/patch-ag
+++ /dev/null
@@ -1,11 +0,0 @@
---- libs/configure.h.orig Tue Sep 5 02:26:09 2000
-+++ libs/configure.h Wed Feb 7 00:53:01 2001
-@@ -22,7 +22,7 @@
- #define CLOSE_STRING4 "quit"
-
- /* #ifdef __alpha */
--#if defined(__alpha) && !defined(linux)
-+#if defined(__alpha) && !(defined(linux) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__))
- #define NEEDS_ALPHA_HEADER
- #undef BROKEN_SUN_HEADERS
- #endif /* (__alpha) */
diff --git a/x11-wm/xfce4/files/patch-ah b/x11-wm/xfce4/files/patch-ah
deleted file mode 100644
index b6355b44f539..000000000000
--- a/x11-wm/xfce4/files/patch-ah
+++ /dev/null
@@ -1,9 +0,0 @@
---- other/xfsoundrc.in.orig Tue Sep 5 02:26:09 2000
-+++ other/xfsoundrc.in Tue Feb 6 05:07:47 2001
-@@ -1,5 +1,5 @@
- Play
--xfplay
-+internal
- XFCE_DIR/sounds/beep03.wav
- XFCE_DIR/sounds/pop02.wav
-
diff --git a/x11-wm/xfce4/files/patch-ai b/x11-wm/xfce4/files/patch-ai
deleted file mode 100644
index 2ff5571f80c7..000000000000
--- a/x11-wm/xfce4/files/patch-ai
+++ /dev/null
@@ -1,20 +0,0 @@
---- xfsound/xfdsp.c.orig Fri Jul 7 05:51:00 2000
-+++ xfsound/xfdsp.c Tue Feb 6 04:52:16 2001
-@@ -45,7 +45,7 @@
- #include <sys/stat.h>
- #include <sys/ioctl.h>
- #include <sys/types.h>
--#if defined(linux)
-+#if defined(linux) || defined(__FreeBSD__)
- #include <sys/soundcard.h> /* guess :) */
- #endif
-
-@@ -62,7 +62,7 @@
-
- int masterfd;
-
--#if defined(linux)
-+#if defined(linux) || defined(__FreeBSD__)
- int
- i_play (char *soundfile)
- {
diff --git a/x11-wm/xfce4/files/patch-aj b/x11-wm/xfce4/files/patch-aj
deleted file mode 100644
index c1dedfccf4cf..000000000000
--- a/x11-wm/xfce4/files/patch-aj
+++ /dev/null
@@ -1,37 +0,0 @@
---- xfwm/session.c.orig Wed Jan 31 04:50:16 2001
-+++ xfwm/session.c Tue Feb 6 04:56:10 2001
-@@ -566,8 +566,10 @@
- callback_save_yourself2 (SmcConn sm_conn, SmPointer client_data)
- {
- char *path = NULL;
-- char *filename = NULL;
-- FILE *f = NULL;
-+ char *filename;
-+ FILE *f;
-+ int fd;
-+
- Bool success = True;
- struct passwd *pwd;
-
-@@ -578,16 +580,18 @@
- path = pwd->pw_dir;
- }
-
-- filename = tempnam (path, ".fs-");
-+ sprintf (filename, "path/.fs-XXXXXXXX");
-+ fd = mkstemp (filename);
-
- if (Scr.Options & SessionMgt)
- {
-- f = fopen (filename, "w");
-+ f = fdopen (fd, "w");
- success = save_session_state (sm_conn, filename, f);
- fclose (f);
- }
-- if (!success)
-+ if (!success || fd < 0)
- xfwm_msg (WARN, "SaveSession", "Can't save session\n");
-+ close (fd);
- /* also save session for builtin session mgt, so user will get
- * back to his environmnent even if he doesn't use ICE
- */