From: Michael Mair-Keimberger (asterix) Date: Thu, 10 Aug 2017 17:52:00 +0000 (+0200) Subject: x11-misc/xwit: remove unused patch/file X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=fa3659163a459cca2f2a04a2c0b236c4ee52cc3d;p=gentoo.git x11-misc/xwit: remove unused patch/file Closes: https://github.com/gentoo/gentoo/pull/5383 --- 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!");