From 17b557ae06f2d6667c8a63030af68da98741bcee Mon Sep 17 00:00:00 2001 From: Imre Kaloz Date: Fri, 8 May 2015 12:09:26 +0000 Subject: [PATCH] tools: host/include/getline.h: fix FreeBSD 8.0+ support Signed-off-by: Jo-Philipp Wich Signed-off-by: Imre Kaloz SVN-Revision: 45628 --- tools/include/getline.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/include/getline.h b/tools/include/getline.h index 3ac21715b8..7b320f77ce 100644 --- a/tools/include/getline.h +++ b/tools/include/getline.h @@ -32,7 +32,11 @@ #include #include -#if !defined(__linux__) && !defined(__OpenBSD__) && !(defined(__APPLE__) && __DARWIN_C_LEVEL >= 200809L) +#ifdef __FreeBSD__ +#include +#endif + +#if !defined(__linux__) && !defined(__OpenBSD__) && !(defined(__APPLE__) && __DARWIN_C_LEVEL >= 200809L) && !(defined(__FreeBSD__) && __FreeBSD_version >= 800000) /* * Emulate glibc getline() via BSD fgetln(). * Note that outsize is not changed unless memory is allocated. -- 2.30.2