summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-08-10 19:52:00 +0200
committerDavid Seifert <soap@gentoo.org>2017-08-13 13:29:32 +0200
commitfa3659163a459cca2f2a04a2c0b236c4ee52cc3d (patch)
tree86abaaabf35fecb3ed2fe4648ae48ad6c935a283 /x11-misc/xwit
parentx11-misc/xsnap: remove unused patch (diff)
downloadgentoo-fa3659163a459cca2f2a04a2c0b236c4ee52cc3d.tar.gz
gentoo-fa3659163a459cca2f2a04a2c0b236c4ee52cc3d.tar.bz2
gentoo-fa3659163a459cca2f2a04a2c0b236c4ee52cc3d.zip
x11-misc/xwit: remove unused patch/file
Closes: https://github.com/gentoo/gentoo/pull/5383
Diffstat (limited to 'x11-misc/xwit')
-rw-r--r--x11-misc/xwit/files/Makefile6
-rw-r--r--x11-misc/xwit/files/malloc.patch11
2 files changed, 0 insertions, 17 deletions
diff --git a/x11-misc/xwit/files/Makefile b/x11-misc/xwit/files/Makefile
deleted file mode 100644
index 7b106f0d7168..000000000000
--- a/x11-misc/xwit/files/Makefile
+++ /dev/null
@@ -1,6 +0,0 @@
-src = xwit.c dsimple.c ClientWin.c
-
-all: xwit
-
-xwit: $(o)
- $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(src) -o xwit -lX11
diff --git a/x11-misc/xwit/files/malloc.patch b/x11-misc/xwit/files/malloc.patch
deleted file mode 100644
index 41c3a7b82eff..000000000000
--- a/x11-misc/xwit/files/malloc.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- dsimple.c_ 2005-06-05 16:07:10.000000000 +0200
-+++ dsimple.c 2005-06-05 16:07:47.000000000 +0200
-@@ -46,7 +46,7 @@
- char *Malloc(size)
- unsigned size;
- {
-- char *data, *malloc();
-+ char *data; //, *malloc();
-
- if (!(data = malloc(size)))
- Fatal_Error("Out of memory!");