Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xwit/files/
Date: Sun, 13 Aug 2017 11:31:54
Message-Id: 1502623772.fa3659163a459cca2f2a04a2c0b236c4ee52cc3d.soap@gentoo
1 commit: fa3659163a459cca2f2a04a2c0b236c4ee52cc3d
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Thu Aug 10 17:52:00 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 13 11:29:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa365916
7
8 x11-misc/xwit: remove unused patch/file
9
10 Closes: https://github.com/gentoo/gentoo/pull/5383
11
12 x11-misc/xwit/files/Makefile | 6 ------
13 x11-misc/xwit/files/malloc.patch | 11 -----------
14 2 files changed, 17 deletions(-)
15
16 diff --git a/x11-misc/xwit/files/Makefile b/x11-misc/xwit/files/Makefile
17 deleted file mode 100644
18 index 7b106f0d716..00000000000
19 --- a/x11-misc/xwit/files/Makefile
20 +++ /dev/null
21 @@ -1,6 +0,0 @@
22 -src = xwit.c dsimple.c ClientWin.c
23 -
24 -all: xwit
25 -
26 -xwit: $(o)
27 - $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(src) -o xwit -lX11
28
29 diff --git a/x11-misc/xwit/files/malloc.patch b/x11-misc/xwit/files/malloc.patch
30 deleted file mode 100644
31 index 41c3a7b82ef..00000000000
32 --- a/x11-misc/xwit/files/malloc.patch
33 +++ /dev/null
34 @@ -1,11 +0,0 @@
35 ---- dsimple.c_ 2005-06-05 16:07:10.000000000 +0200
36 -+++ dsimple.c 2005-06-05 16:07:47.000000000 +0200
37 -@@ -46,7 +46,7 @@
38 - char *Malloc(size)
39 - unsigned size;
40 - {
41 -- char *data, *malloc();
42 -+ char *data; //, *malloc();
43 -
44 - if (!(data = malloc(size)))
45 - Fatal_Error("Out of memory!");