summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/browsers/mozilla-plugins/fribid/emulated-version.patch12
-rw-r--r--pkgs/applications/networking/browsers/mozilla-plugins/mplayerplug-in/icecat3-idldir.patch16
-rw-r--r--pkgs/applications/networking/instant-messengers/freetalk/01_callbacks_const_fix.diff25
-rw-r--r--pkgs/applications/networking/instant-messengers/silc-client/server_setup.patch28
-rw-r--r--pkgs/applications/networking/sync/lsyncd/configure-a2x-fix.patch18
5 files changed, 0 insertions, 99 deletions
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/fribid/emulated-version.patch b/pkgs/applications/networking/browsers/mozilla-plugins/fribid/emulated-version.patch
deleted file mode 100644
index f730ad017b1d..000000000000
--- a/pkgs/applications/networking/browsers/mozilla-plugins/fribid/emulated-version.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/common/defines.h  2012-11-14 18:02:43.000000000 +0100
-+++ b/common/defines.h  2013-09-20 19:17:45.669290630 +0200
-@@ -39,7 +39,7 @@
- #define RELEASE_TIME        1352912534
- #define IPCVERSION          "10"
- 
--#define EMULATED_VERSION    "4.15.0.14"
-+#define EMULATED_VERSION    "4.17.0.11" // Was 4.15.0.14
- #define DNSVERSION          "2"
- #define STATUSDOMAIN        ".status.fribid.se"
- 
-
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/mplayerplug-in/icecat3-idldir.patch b/pkgs/applications/networking/browsers/mozilla-plugins/mplayerplug-in/icecat3-idldir.patch
deleted file mode 100644
index 39dbc7a3ed05..000000000000
--- a/pkgs/applications/networking/browsers/mozilla-plugins/mplayerplug-in/icecat3-idldir.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-We have to run `xpidl', but we need to provide it with the right IDL
-directory.  With GNU IceCat 3 (and possibly Firefox 3), this happens to be
-"$(pkg-config --variable=idldir libxul)/stable".
-
---- mplayerplug-in-3.55/Makefile.in	2008-01-03 01:20:33.000000000 +0100
-+++ mplayerplug-in-3.55/Makefile.in	2008-09-29 22:47:20.000000000 +0200
-@@ -46,7 +46,7 @@ datadir=@datadir@
- LOCALEDIR=$(datadir)/locale
- MOZILLA_HOME=@MOZILLA_HOME@
- GECKO_XPIDL=@GECKO_XPIDL@
--GECKO_IDLDIR=@GECKO_IDLDIR@
-+GECKO_IDLDIR=@GECKO_IDLDIR@/stable
- 
- PIXMAPS=pixmaps/logo.xpm pixmaps/progress_left.xpm pixmaps/progress_right.xpm \
- 	pixmaps/progress_fill.xpm pixmaps/progress_middle.xpm
-
diff --git a/pkgs/applications/networking/instant-messengers/freetalk/01_callbacks_const_fix.diff b/pkgs/applications/networking/instant-messengers/freetalk/01_callbacks_const_fix.diff
deleted file mode 100644
index 5fe871601229..000000000000
--- a/pkgs/applications/networking/instant-messengers/freetalk/01_callbacks_const_fix.diff
+++ /dev/null
@@ -1,25 +0,0 @@
-Description: Patch to fix FTBFS due to a modified const in src/callbacks.cc
-Forwarded: yes
-Origin: Ubuntu,
-https://bugs.launchpad.net/ubuntu/+source/freetalk/+bug/443241
-Bug-Debian: http://bugs.debian.org/560535
-Author: Jon Bernard <bernardj@gmail.com>
---- 3.2-1.orig/src/callbacks.cc	2008-11-15 10:41:22.000000000 +0000
-+++ 3.2-1/src/callbacks.cc	2009-10-21 15:50:49.000000000 +0100
-@@ -116,13 +116,13 @@ ft_msg_msg_handler (LmMessageHandler *ha
- 		    LmMessage *msg, gpointer user_data)
- {
-   LmMessageNode *root, *body, *x;
--  const char *from, *msg_str, *type;
--  char *ts = NULL;
-+  const char *msg_str, *type;
-+  char *from, *ts = NULL;
- 
-   root = lm_message_get_node (msg);
-   body = lm_message_node_get_child (root, "body");
- 
--  from = lm_message_node_get_attribute (msg->node, "from");
-+  from = (char *) lm_message_node_get_attribute (msg->node, "from");
- 
-   /* since the file-transfer happens in-band with messages, we can no longer
-    * ignore messages with no 'body' */
diff --git a/pkgs/applications/networking/instant-messengers/silc-client/server_setup.patch b/pkgs/applications/networking/instant-messengers/silc-client/server_setup.patch
deleted file mode 100644
index 466194c0a8fe..000000000000
--- a/pkgs/applications/networking/instant-messengers/silc-client/server_setup.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Add function to replace the behaviour of server_setup_find_port which was removed from irssi on revision 5125. Fixes bug #577501.
---- a/apps/irssi/src/silc/core/client_ops.c
-+++ b/apps/irssi/src/silc/core/client_ops.c
-@@ -2790,6 +2790,15 @@
-   silc_free(a);
- }
- 
-+/* helper function to emulate server_setup_find_port */
-+static SERVER_SETUP_REC *silc_server_setup_find_port(const char *address,
-+						     int port) {
-+  SERVER_SETUP_REC *rec;
-+
-+  rec = server_setup_find(address, port, NULL);
-+  return (rec == NULL || rec->port != port) ? NULL : rec;
-+}
-+
- /* Find authentication data by hostname and port. The hostname may be IP
-    address as well.*/
- 
-@@ -2811,7 +2820,7 @@
- 
-   /* Check whether we find the password for this server in our
-      configuration.  If it's set, always send it server. */
--  setup = server_setup_find_port(hostname, port);
-+  setup = silc_server_setup_find_port(hostname, port);
-   if (setup && setup->password) {
-     completion(SILC_AUTH_PASSWORD, setup->password, strlen(setup->password),
- 	       context);
diff --git a/pkgs/applications/networking/sync/lsyncd/configure-a2x-fix.patch b/pkgs/applications/networking/sync/lsyncd/configure-a2x-fix.patch
deleted file mode 100644
index 73b479946918..000000000000
--- a/pkgs/applications/networking/sync/lsyncd/configure-a2x-fix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -aur lsyncd-release-2.1.5.orig/configure.ac lsyncd-release-2.1.5/configure.ac
---- lsyncd-release-2.1.5.orig/configure.ac	2013-06-07 18:24:02.000000000 +0600
-+++ lsyncd-release-2.1.5/configure.ac	2014-03-04 13:24:15.390350812 +0600
-@@ -15,10 +15,10 @@
- AC_PROG_INSTALL
- AC_PROG_MAKE_SET
- 
--#AC_PATH_PROG([A2X], [a2x], [no])
--#if test x${A2X} = xno ; then
--#	AC_MSG_ERROR([Program 'a2x' (package asciidoc) is required])
--#fi
-+AC_PATH_PROG([A2X], [a2x], [no])
-+if test x${A2X} = xno ; then
-+	AC_MSG_ERROR([Program 'a2x' (package asciidoc) is required])
-+fi
- 
- ###
- # Checks for Lua
\ No newline at end of file