tools: host/include/getline.h: fix FreeBSD 8.0+ support
authorImre Kaloz <kaloz@openwrt.org>
Fri, 8 May 2015 12:09:26 +0000 (12:09 +0000)
committerImre Kaloz <kaloz@openwrt.org>
Fri, 8 May 2015 12:09:26 +0000 (12:09 +0000)
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 45628

tools/include/getline.h

index 3ac21715b885426f66df83a85d60b04632db9d5f..7b320f77cefd2e798b90c8216813025d4e7ff883 100644 (file)
 #include <stdlib.h>
 #include <string.h>
 
-#if !defined(__linux__) && !defined(__OpenBSD__) && !(defined(__APPLE__) && __DARWIN_C_LEVEL >= 200809L)
+#ifdef __FreeBSD__
+#include <osreldate.h>
+#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.