diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-11-26 19:23:49 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2016-12-03 11:37:51 +0000 |
commit | c2a6a9b9ae8774c9cf057a6efceaf3ee81932a46 (patch) | |
tree | 510b4c341717075df6aab895f385627759f1b682 /games-util/dzip | |
parent | games-strategy/warzone2100: remove unused patches (diff) | |
download | gentoo-c2a6a9b9ae8774c9cf057a6efceaf3ee81932a46.tar.gz gentoo-c2a6a9b9ae8774c9cf057a6efceaf3ee81932a46.tar.bz2 gentoo-c2a6a9b9ae8774c9cf057a6efceaf3ee81932a46.zip |
games-util/dzip: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/2920
Diffstat (limited to 'games-util/dzip')
-rw-r--r-- | games-util/dzip/files/dzip-2.9-system-zlib.patch | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/games-util/dzip/files/dzip-2.9-system-zlib.patch b/games-util/dzip/files/dzip-2.9-system-zlib.patch deleted file mode 100644 index f68304adf240..000000000000 --- a/games-util/dzip/files/dzip-2.9-system-zlib.patch +++ /dev/null @@ -1,52 +0,0 @@ ---- dzip.h -+++ dzip.h -@@ -2,7 +2,7 @@ - #include <stdlib.h>
- #include <string.h>
-
--#include "zlib/zlib.h"
-+#include <zlib.h>
-
- typedef unsigned char uchar;
-
-@@ -177,4 +177,4 @@ - #else
- #define DIRCHAR '/'
- #define WRONGCHAR '\\'
--#endif -\ No newline at end of file -+#endif
---- Makefile.linux -+++ Makefile.linux -@@ -1,18 +1,17 @@ - # Makefile for linux
-
--CC = gcc
--CFLAGS = -Wall -O3
-+CC ?= gcc
-+CFLAGS ?= -O3
-+CFLAGS += -Wall
- TARGET = dzip
- OBJECTS = main.o compress.o uncompress.o list.o crc32.o \
-- encode.o decode.o v1code.o conmain.o delete.o \
-- zlib/adler32.o zlib/deflate.o zlib/trees.o \
-- zlib/inflate.o zlib/infblock.o zlib/inftrees.o zlib/infcodes.o \
-- zlib/infutil.o zlib/inffast.o
-+ encode.o decode.o v1code.o conmain.o delete.o
-+LIBS = -lz
-
- TMPFILES = gmon.out frag*
-
- $(TARGET): $(OBJECTS)
-- $(CC) $(CFLAGS) $(OBJECTS) -o $(TARGET) $(LDFLAGS)
-+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS)
-
- clean:
- rm -f $(TARGET) $(OBJECTS) $(TMPFILES)
-@@ -24,4 +23,4 @@ - encode.o: encode.c dzip.h
- list.o: list.c dzip.h dzipcon.h
- decode.o: decode.c dzip.h dzipcon.h
--v1code.o: v1code.c dzip.h dzipcon.h -\ No newline at end of file -+v1code.o: v1code.c dzip.h dzipcon.h
|