net-libs/http-parser: remove unused patch
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Sun, 8 Jan 2017 12:27:55 +0000 (13:27 +0100)
committerGöktürk Yüksek <gokturk@gentoo.org>
Sun, 15 Jan 2017 02:31:56 +0000 (21:31 -0500)
net-libs/http-parser/files/http-parser-2.1-flags.patch [deleted file]

diff --git a/net-libs/http-parser/files/http-parser-2.1-flags.patch b/net-libs/http-parser/files/http-parser-2.1-flags.patch
deleted file mode 100644 (file)
index fe9a593..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-commit 3752e633e23284133decc8ca8481e4416a317fbc
-Author: hasufell <hasufell@gentoo.org>
-Date:   Sun Jun 30 12:27:04 2013 +0200
-
-    respect system flags
-
-diff --git a/Makefile b/Makefile
-index 64e5c2f..2e20723 100644
---- a/Makefile
-+++ b/Makefile
-@@ -7,9 +7,9 @@ CPPFLAGS_DEBUG += $(CPPFLAGS_DEBUG_EXTRA)
- CPPFLAGS_FAST = $(CPPFLAGS) -DHTTP_PARSER_STRICT=0
- CPPFLAGS_FAST += $(CPPFLAGS_FAST_EXTRA)
--CFLAGS += -Wall -Wextra -Werror
--CFLAGS_DEBUG = $(CFLAGS) -O0 -g $(CFLAGS_DEBUG_EXTRA)
--CFLAGS_FAST = $(CFLAGS) -O3 $(CFLAGS_FAST_EXTRA)
-+CFLAGS += -Wall -Wextra
-+CFLAGS_DEBUG = $(CFLAGS) $(CFLAGS_DEBUG_EXTRA)
-+CFLAGS_FAST = $(CFLAGS) $(CFLAGS_FAST_EXTRA)
- CFLAGS_LIB = $(CFLAGS_FAST) -fPIC
- test: test_g test_fast
-@@ -44,7 +44,7 @@ libhttp_parser.o: http_parser.c http_parser.h Makefile
-       $(CC) $(CPPFLAGS_FAST) $(CFLAGS_LIB) -c http_parser.c -o libhttp_parser.o
- library: libhttp_parser.o
--      $(CC) -shared -o libhttp_parser.so libhttp_parser.o
-+      $(CC) $(CFLAGS) $(LDFLAGS) -shared -o libhttp_parser.so libhttp_parser.o
- package: http_parser.o
-       $(AR) rcs libhttp_parser.a http_parser.o