From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp51.i.mail.ru (smtp51.i.mail.ru [94.100.177.111]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 7B61645C310 for ; Tue, 12 May 2020 15:33:38 +0300 (MSK) From: sergeyb@tarantool.org Date: Tue, 12 May 2020 15:32:24 +0300 Message-Id: <007e98e9a9c3ac11ab418e7132c07b9d56dc53d9.1589284160.git.sergeyb@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 06/11] Include libgen.h when building on OpenBSD List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org Cc: o.piskunov@tarantool.org From: Sergey Bronnikov Part of #4967 --- src/lua/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua/init.c b/src/lua/init.c index 5b4b5b463..a0b2fc775 100644 --- a/src/lua/init.c +++ b/src/lua/init.c @@ -31,7 +31,7 @@ #include "lua/init.h" #include "lua/utils.h" #include "main.h" -#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__) +#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__) || defined(__OpenBSD__) #include #endif -- 2.23.0