summaryrefslogtreecommitdiff
path: root/multimedia/mplayer-plugin-firefox/patches
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/mplayer-plugin-firefox/patches')
-rw-r--r--multimedia/mplayer-plugin-firefox/patches/patch-ac9
-rw-r--r--multimedia/mplayer-plugin-firefox/patches/patch-ae27
2 files changed, 0 insertions, 36 deletions
diff --git a/multimedia/mplayer-plugin-firefox/patches/patch-ac b/multimedia/mplayer-plugin-firefox/patches/patch-ac
deleted file mode 100644
index 0e85b53e727..00000000000
--- a/multimedia/mplayer-plugin-firefox/patches/patch-ac
+++ /dev/null
@@ -1,9 +0,0 @@
-$NetBSD: patch-ac,v 1.1.1.1 2004/11/17 02:31:34 xtraeme Exp $
-
---- Source/plugin-setup.cpp.orig 2004-11-17 02:30:00.000000000 +0100
-+++ Source/plugin-setup.cpp 2004-11-17 02:30:12.000000000 +0100
-@@ -1,3 +1,4 @@
-+#include <string.h>
- #include "plugin.h"
-
- #ifndef STATICDECLS
diff --git a/multimedia/mplayer-plugin-firefox/patches/patch-ae b/multimedia/mplayer-plugin-firefox/patches/patch-ae
deleted file mode 100644
index 3a9676f1ac2..00000000000
--- a/multimedia/mplayer-plugin-firefox/patches/patch-ae
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD: patch-ae,v 1.1.1.1 2004/11/17 02:31:35 xtraeme Exp $
-
---- Source/plugin-threads.cpp.orig 2004-11-17 02:33:15.000000000 +0100
-+++ Source/plugin-threads.cpp 2004-11-17 02:34:59.000000000 +0100
-@@ -1,3 +1,4 @@
-+#include <string.h>
- #include "plugin.h"
- #include <sys/types.h>
- #include <sys/stat.h>
-@@ -6,6 +7,7 @@
- #include <fcntl.h>
- #include <signal.h>
- #include <sys/wait.h>
-+#include <sys/param.h>
-
- extern int DEBUG;
-
-@@ -202,7 +204,9 @@
- // make the operations on the control pipe non-blocking
- flags = fcntl(*control, F_GETFL, 0);
- flags |= O_NONBLOCK;
-+#ifndef BSD
- flags |= O_NDELAY;
-+#endif
- fcntl(*control, F_SETFL, flags);
-
- return fdopen(filedesr[0], "r");