diff options
author | 2020-05-15 09:20:46 +0200 | |
---|---|---|
committer | 2020-05-15 09:21:26 +0200 | |
commit | f668f6d593b00483aa9ccf4be91271bdcb595efb (patch) | |
tree | 2e903e9dc4703d91acb9fc7a7da989b677fd9cd4 /dev-libs/zlog/files | |
parent | sys-fs/treesize: Fix building with CFLAGS=-fno-common (diff) | |
download | gentoo-f668f6d593b00483aa9ccf4be91271bdcb595efb.tar.gz gentoo-f668f6d593b00483aa9ccf4be91271bdcb595efb.tar.bz2 gentoo-f668f6d593b00483aa9ccf4be91271bdcb595efb.zip |
dev-libs/zlog: Add v1.2.14
This also drops the necessity of patches.
Fixes: https://goto.google.com/my-cloudtop-admin
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Tobias Klausmann <klausman@gentoo.org>
Diffstat (limited to 'dev-libs/zlog/files')
-rw-r--r-- | dev-libs/zlog/files/zlog-testsuite-flags.patch | 22 | ||||
-rw-r--r-- | dev-libs/zlog/files/zlog_no_werr.patch | 11 |
2 files changed, 0 insertions, 33 deletions
diff --git a/dev-libs/zlog/files/zlog-testsuite-flags.patch b/dev-libs/zlog/files/zlog-testsuite-flags.patch deleted file mode 100644 index 4ce0a4b6d16c..000000000000 --- a/dev-libs/zlog/files/zlog-testsuite-flags.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- zlog-1.2.12.orig/test/makefile 2013-09-25 04:38:42.000000000 -0700 -+++ zlog-1.2.12/test/makefile 2018-02-13 16:59:33.812131188 -0800 -@@ -1,3 +1,6 @@ -+CFLAGS := -O2 -g -+CC := gcc -+ - exe = \ - test_tmp \ - test_buf \ -@@ -24,10 +27,10 @@ - all : $(exe) - - $(exe) : %:%.o -- gcc -O2 -g -o $@ $^ -L../src -lzlog -lpthread -Wl,-rpath ../src -+ $(CC) $(CFLAGS) -o $@ $^ -L../src -lzlog -lpthread -Wl,-rpath ../src - - .c.o : -- gcc -O2 -g -Wall -D_GNU_SOURCE -o $@ -c $< -I. -I../src -+ $(CC) $(CLFAGS) -Wall -D_GNU_SOURCE -o $@ -c $< -I. -I../src - - clean : - rm -f press.log* *.o $(exe) diff --git a/dev-libs/zlog/files/zlog_no_werr.patch b/dev-libs/zlog/files/zlog_no_werr.patch deleted file mode 100644 index b01325db09d0..000000000000 --- a/dev-libs/zlog/files/zlog_no_werr.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/makefile 2016-08-11 10:40:49.466873499 +0200 -+++ b/src/makefile 2016-08-11 10:40:59.626762850 +0200 -@@ -32,7 +32,7 @@ - # Fallback to gcc when $CC is not in $PATH. - CC:=$(shell sh -c 'type $(CC) >/dev/null 2>/dev/null && echo $(CC) || echo gcc') - OPTIMIZATION?=-O2 --WARNINGS=-Wall -Werror -Wstrict-prototypes -fwrapv -+WARNINGS=-Wall -Wstrict-prototypes -fwrapv - DEBUG?= -g -ggdb - REAL_CFLAGS=$(OPTIMIZATION) -fPIC -pthread $(CFLAGS) $(WARNINGS) $(DEBUG) - REAL_LDFLAGS=$(LDFLAGS) -pthread |