From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7E9E9139085 for ; Sun, 15 Jan 2017 02:33:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D82C0E0D82; Sun, 15 Jan 2017 02:33:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6262E0D82 for ; Sun, 15 Jan 2017 02:33:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD784341229 for ; Sun, 15 Jan 2017 02:33:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC42B2775 for ; Sun, 15 Jan 2017 02:33:43 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1484447516.5025d0b525bc09e45fe0962d4e1f95b016a5c7f9.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/http-parser/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/http-parser/files/http-parser-2.1-flags.patch X-VCS-Directories: net-libs/http-parser/files/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 5025d0b525bc09e45fe0962d4e1f95b016a5c7f9 X-VCS-Branch: master Date: Sun, 15 Jan 2017 02:33:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: de1cf1aa-cb76-4abc-adbf-bbf8b7f064d1 X-Archives-Hash: 214151a9548a49151776c848ee6308c3 commit: 5025d0b525bc09e45fe0962d4e1f95b016a5c7f9 Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Sun Jan 8 12:27:55 2017 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Sun Jan 15 02:31:56 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5025d0b5 net-libs/http-parser: remove unused patch .../http-parser/files/http-parser-2.1-flags.patch | 32 ---------------------- 1 file changed, 32 deletions(-) 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 index fe9a593..00000000 --- a/net-libs/http-parser/files/http-parser-2.1-flags.patch +++ /dev/null @@ -1,32 +0,0 @@ -commit 3752e633e23284133decc8ca8481e4416a317fbc -Author: hasufell -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