summaryrefslogtreecommitdiff
path: root/games-mud/gnome-mud/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-mud/gnome-mud/files
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-mud/gnome-mud/files')
-rw-r--r--games-mud/gnome-mud/files/0.11.2-gst1.patch42
-rw-r--r--games-mud/gnome-mud/files/0.11.2-telopts-reenable.patch35
2 files changed, 0 insertions, 77 deletions
diff --git a/games-mud/gnome-mud/files/0.11.2-gst1.patch b/games-mud/gnome-mud/files/0.11.2-gst1.patch
deleted file mode 100644
index 64c6682c6726..000000000000
--- a/games-mud/gnome-mud/files/0.11.2-gst1.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 15c37855ab3559efaeffcef651c98ed971ae84bb Mon Sep 17 00:00:00 2001
-From: Steven Jackson
-Date: Wed, 19 Apr 2017 20:02:57 +0100
-Subject: [PATCH] gstreamer: Upgrade to 1.0 from 0.10
----
- configure.ac | 6 +++---
- gnome-mud.spec.in | 4 ++--
- 2 files changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 50c4c81..125b054 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -76,7 +76,7 @@ LIBGNET_REQUIRED=0.22
- VTE_REQUIRED=0.11.00
- PCRE_REQUIRED=6.0.0
- GCONF_REQUIRED=0.20
--GSTREAMER_REQUIRED=0.10
-+GSTREAMER_REQUIRED=1.0
-
- PKG_CHECK_MODULES(GMUD, gtk+-2.0 >= $GTK_REQUIRED vte >= $VTE_REQUIRED libglade-2.0 >= $LIBGLADE_REQUIRED libpcre >= $PCRE_REQUIRED gmodule-2.0 >= $GMODULE_REQUIRED gnet-2.0 >= $LIBGNET_REQUIRED gconf-2.0 >= $GCONF_REQUIRED)
- AC_SUBST(GMUD_CFLAGS)
-@@ -114,14 +114,14 @@ AC_ARG_ENABLE(gstreamer,
- [Enable GStreamer used for MSP (Mud Sound Protocol) Default=auto]),,
- enable_gstreamer=auto)
- if test "x$enable_gstreamer" != "xno"; then
-- PKG_CHECK_EXISTS(gstreamer-0.10, have_gst=yes, have_gst=no)
-+ PKG_CHECK_EXISTS(gstreamer-1.0, have_gst=yes, have_gst=no)
- if test "x$have_gst" = "xno" -a "x$enable_gstreamer" = "xyes"; then
- AC_MSG_ERROR([Gstreamer support explicitly requested but libgstreamer was not found])
- fi
- if test "x$have_gst" = "xyes"; then
- AC_DEFINE(ENABLE_GST, 1, [Define if GStreamer should be enabled])
- enable_gstreamer=yes
-- PKG_CHECK_MODULES(MSP, gstreamer-0.10 >= $GSTREAMER_REQUIRED)
-+ PKG_CHECK_MODULES(MSP, gstreamer-1.0 >= $GSTREAMER_REQUIRED)
- fi
- fi
- AM_CONDITIONAL(USE_GSTREAMER, test "x$enable_gstreamer" = xyes)
---
-2.10.2
-
diff --git a/games-mud/gnome-mud/files/0.11.2-telopts-reenable.patch b/games-mud/gnome-mud/files/0.11.2-telopts-reenable.patch
deleted file mode 100644
index ebafe30c4cf4..000000000000
--- a/games-mud/gnome-mud/files/0.11.2-telopts-reenable.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 62b043beedc14741a000e848a004ba44982b28b8 Mon Sep 17 00:00:00 2001
-From: Steven Jackson
-Date: Wed, 19 Apr 2017 10:38:18 +0000
-Subject: [PATCH] mud-telnet: Fix re-enabling disabled TELOPTS
-
-When the server disabled a TELOPT it wasn't possible for it to
-re-enable it, as it should.
-
-Enabling and disabling MSP and CHARSET in the preferences window
-doesn't control the MudTelnetHandler enabled field, so this change
-doesn't break that. Those preferences are used at a higher level,
-in mud-window-view.c.
-
-Thanks to shentino for reporting and assisting with the fix.
-
-Bug report: https://bugzilla.gnome.org/show_bug.cgi?id=781452
----
- src/mud-telnet.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/mud-telnet.c b/src/mud-telnet.c
-index 052ba04..0fe274a 100644
---- a/src/mud-telnet.c
-+++ b/src/mud-telnet.c
-@@ -939,7 +939,7 @@ mud_telnet_handle_positive_nego(MudTelnet *telnet,
- // his state to YES and send DO; otherwise send DONT
- // FIXME-US/HIM
- // FIXME: What to do in the opposite "him" gint value case?
-- if (mud_telnet_isenabled(telnet, opt_no, him))
-+ if (mud_telnet_get_index_by_option(telnet, opt_no) != -1)
- {
- mud_telnet_set_telopt_state(opt, TELOPT_STATE_YES, bitshift);
- mud_telnet_send_iac(telnet, affirmative, opt_no);
---
-1.9.1