From 746652e918ce7328c0cc5ffef8a79146b91ba21b Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 29 Oct 2022 04:00:35 +0100 Subject: gentoo auto-resync : 29:10:2022 - 04:00:35 --- .../files/libaio-0.3.111-optional-werror.patch | 30 ---------------------- .../files/libaio-0.3.112-respect-LDFLAGS.patch | 13 ---------- 2 files changed, 43 deletions(-) delete mode 100644 dev-libs/libaio/files/libaio-0.3.111-optional-werror.patch delete mode 100644 dev-libs/libaio/files/libaio-0.3.112-respect-LDFLAGS.patch (limited to 'dev-libs/libaio/files') diff --git a/dev-libs/libaio/files/libaio-0.3.111-optional-werror.patch b/dev-libs/libaio/files/libaio-0.3.111-optional-werror.patch deleted file mode 100644 index 5b6f91e56d98..000000000000 --- a/dev-libs/libaio/files/libaio-0.3.111-optional-werror.patch +++ /dev/null @@ -1,30 +0,0 @@ -From ebe62b178f3e5fcde8a311e64aaffe62099204a5 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Sun, 21 Apr 2019 12:44:26 +0200 -Subject: [PATCH] make -Werror into an optional flag - -This lets distros disable the flag as random errors might come up with -different compiler flags and older/newer toolchain versions. - -Signed-off-by: Mike Frysinger ---- - harness/Makefile | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/harness/Makefile b/harness/Makefile -index f477737..a155c4b 100644 ---- a/harness/Makefile -+++ b/harness/Makefile -@@ -6,7 +6,8 @@ PROGS:=$(PARTPROGS) $(EXTRAPROGS) - HARNESS_SRCS:=main.c - # io_queue.c - --CFLAGS+=-Wall -Werror -I../src -g -O2 -DPAGE_SIZE=$(shell getconf PAGESIZE) -+CFLAGS_WERROR?=-Werror -+CFLAGS+=-Wall $(CFLAGS_WERROR) -I../src -g -O2 -DPAGE_SIZE=$(shell getconf PAGESIZE) - #-lpthread -lrt - - all: $(PROGS) --- -2.21.0 - diff --git a/dev-libs/libaio/files/libaio-0.3.112-respect-LDFLAGS.patch b/dev-libs/libaio/files/libaio-0.3.112-respect-LDFLAGS.patch deleted file mode 100644 index 20e23874fb6b..000000000000 --- a/dev-libs/libaio/files/libaio-0.3.112-respect-LDFLAGS.patch +++ /dev/null @@ -1,13 +0,0 @@ -We need to place LDFLAGS earlier to ensure e.g. as-needed works correctly. ---- a/src/Makefile -+++ b/src/Makefile -@@ -56,7 +56,7 @@ libaio.a: $(libaio_objs) - $(RANLIB) libaio.a - - $(libname): $(libaio_sobjs) libaio.map -- $(CC) $(SO_CFLAGS) -Wl,--version-script=libaio.map -Wl,-soname=$(soname) -o $@ $(libaio_sobjs) $(LINK_FLAGS) -+ $(CC) $(SO_CFLAGS) $(LINK_FLAGS) -Wl,--version-script=libaio.map -Wl,-soname=$(soname) -o $@ $(libaio_sobjs) - - install: $(all_targets) - install -D -m 644 libaio.h $(includedir)/libaio.h - -- cgit v1.2.3