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 3311527B28 for ; Tue, 26 Feb 2019 07:11:40 -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 E9tkxhC1alYb for ; Tue, 26 Feb 2019 07:11:40 -0500 (EST) Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (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 E535A277F4 for ; Tue, 26 Feb 2019 07:11:39 -0500 (EST) From: Vladislav Shpilevoy Subject: [tarantool-patches] [PATCH v2 1/4] Remove dead dependency of http_parser on httpc Date: Tue, 26 Feb 2019 15:11:33 +0300 Message-Id: <8f695fc41fa6cd5ea27acd20a9ceb1406f9f8242.1551182934.git.v.shpilevoy@tarantool.org> In-Reply-To: References: In-Reply-To: References: 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 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)