diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-12-17 14:03:54 -0500 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-12-17 19:39:18 -0500 |
commit | 3c657663b26972c50d29ac25b07af81f5fcd4b6a (patch) | |
tree | c41fb47b256785d57736e34a9097be173b423a13 /games-util/xqf/files | |
parent | add slot dep for media-libs/libpng and virtual/jpeg (diff) | |
download | gentoo-3c657663b26972c50d29ac25b07af81f5fcd4b6a.tar.gz gentoo-3c657663b26972c50d29ac25b07af81f5fcd4b6a.tar.bz2 gentoo-3c657663b26972c50d29ac25b07af81f5fcd4b6a.zip |
clean old
Package-Manager: portage-2.2.24
Diffstat (limited to 'games-util/xqf/files')
-rw-r--r-- | games-util/xqf/files/xqf-1.0.5-cpu-overrun.patch | 21 | ||||
-rw-r--r-- | games-util/xqf/files/xqf-1.0.5-underlink.patch | 10 | ||||
-rw-r--r-- | games-util/xqf/files/xqf-1.0.5-zlib-1.2.5.1-compile-fix.patch | 11 |
3 files changed, 0 insertions, 42 deletions
diff --git a/games-util/xqf/files/xqf-1.0.5-cpu-overrun.patch b/games-util/xqf/files/xqf-1.0.5-cpu-overrun.patch deleted file mode 100644 index 8797eee462c8..000000000000 --- a/games-util/xqf/files/xqf-1.0.5-cpu-overrun.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- xqf.orig/src/launch.c -+++ xqf/src/launch.c -@@ -168,13 +168,17 @@ - - res = read (fd, cl->buffer + cl->pos, CLIENT_ERROR_BUFFER - 1 - cl->pos); - -- if (res <= 0) { /* read error or EOF */ -+ if (res < 0) { /* read error or EOF */ - if (errno == EAGAIN || errno == EWOULDBLOCK) - return; - - client_detach (cl); - return; - } -+ else if (res == 0) { -+ client_detach (cl); -+ return; -+ } - - if (cl->pos + res == CLIENT_ERROR_BUFFER - 1) { - tmp = &cl->buffer[CLIENT_ERROR_BUFFER - 1]; diff --git a/games-util/xqf/files/xqf-1.0.5-underlink.patch b/games-util/xqf/files/xqf-1.0.5-underlink.patch deleted file mode 100644 index 0948b82313d2..000000000000 --- a/games-util/xqf/files/xqf-1.0.5-underlink.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- src/Makefile.in.old -+++ src/Makefile.in -@@ -311,6 +311,7 @@ - $(GEOIP_LIB) \ - $(PACKAGE_LIBS) \ - $(GDK_PIXBUF_LIBS) \ -+ -lX11 -ldl \ - -lz - - xqf_LDFLAGS = -Wl,-rpath,$(pkglibdir) -Wl,--export-dynamic -Wl,--version-script=$(top_srcdir)/src/xqf.map diff --git a/games-util/xqf/files/xqf-1.0.5-zlib-1.2.5.1-compile-fix.patch b/games-util/xqf/files/xqf-1.0.5-zlib-1.2.5.1-compile-fix.patch deleted file mode 100644 index 9bd433b3b27e..000000000000 --- a/games-util/xqf/files/xqf-1.0.5-zlib-1.2.5.1-compile-fix.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- xqf-1.0.5/src/zip/ioapi.h -+++ xqf-1.0.5/src/zip/ioapi.h -@@ -6,6 +6,8 @@ - Copyright (C) 1998-2003 Gilles Vollant - */ - -+#define OF(x) x -+ - #ifndef _ZLIBIOAPI_H - #define _ZLIBIOAPI_H - |