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 B84012F80C for ; Sat, 3 Nov 2018 00:29:43 -0400 (EDT) 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 8s4oAI_zFTKB for ; Sat, 3 Nov 2018 00:29:43 -0400 (EDT) Received: from smtp5.mail.ru (smtp5.mail.ru [94.100.179.24]) (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 0CEDA2F7B6 for ; Sat, 3 Nov 2018 00:29:43 -0400 (EDT) From: Alexander Turenko Subject: [tarantool-patches] [PATCH 2/3] Add include on FreeBSD Date: Sat, 3 Nov 2018 07:29:33 +0300 Message-Id: <8d8e5597b6394c6882c4d64d1a6b88ccaac5e1d6.1541219191.git.alexander.turenko@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: Kirill Yukhin Cc: Alexander Turenko , tarantool-patches@freelists.org FreeBSD does not include headers recursively, so we need to include it explicitly at least for using IPPROTO_UDP macro. Thanks Po-Chuan Hsieh (@sunpoet) for the fix proposal (PR #3739). Fixes #3677. --- src/say.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/say.c b/src/say.c index 7f018ec11..860176ac2 100644 --- a/src/say.c +++ b/src/say.c @@ -37,6 +37,7 @@ #include #include #include +#include #include #include #include -- 2.19.1