From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id A1EFD27D53 for ; Tue, 26 Feb 2019 07:12:33 -0500 (EST) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dJ81vlYN-97L for ; Tue, 26 Feb 2019 07:12:33 -0500 (EST) Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 37D6024AC3 for ; Tue, 26 Feb 2019 07:12:33 -0500 (EST) Subject: [tarantool-patches] Re: [PATCH v2 1/4] Remove dead dependency of http_parser on httpc From: Vladislav Shpilevoy References: <8f695fc41fa6cd5ea27acd20a9ceb1406f9f8242.1551182934.git.v.shpilevoy@tarantool.org> Message-ID: Date: Tue, 26 Feb 2019 15:12:30 +0300 MIME-Version: 1.0 In-Reply-To: <8f695fc41fa6cd5ea27acd20a9ceb1406f9f8242.1551182934.git.v.shpilevoy@tarantool.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: tarantool-patches@freelists.org Cc: kostja@tarantool.org Pushed to 2.1 as obvious. On 26/02/2019 15:11, Vladislav Shpilevoy wrote: > Http_parser is a standalone library, which in fact does not > require httpc. And because of that it is going to be moved into > lib/http_parser. > --- > src/http_parser.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/src/http_parser.c b/src/http_parser.c > index d485f5b44..e70f96164 100644 > --- a/src/http_parser.c > +++ b/src/http_parser.c > @@ -30,7 +30,6 @@ > */ > > #include > -#include "httpc.h" > #include "http_parser.h" > > #define LF (unsigned char) '\n' > -- > 2.17.2 (Apple Git-113) > >