x11-misc/xwit: remove unused patch/file
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Thu, 10 Aug 2017 17:52:00 +0000 (19:52 +0200)
committerDavid Seifert <soap@gentoo.org>
Sun, 13 Aug 2017 11:29:32 +0000 (13:29 +0200)
Closes: https://github.com/gentoo/gentoo/pull/5383

x11-misc/xwit/files/Makefile [deleted file]
x11-misc/xwit/files/malloc.patch [deleted file]

diff --git a/x11-misc/xwit/files/Makefile b/x11-misc/xwit/files/Makefile
deleted file mode 100644 (file)
index 7b106f0..0000000
+++ /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 (file)
index 41c3a7b..0000000
+++ /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!");