From 98c953b6e43643610ab24f41b9835cd7e685eddc Mon Sep 17 00:00:00 2001 From: Melinda Shore Date: Wed, 28 Aug 2013 17:09:11 -0800 Subject: [PATCH] Conditionalized in the correct event.h location for FreeBSD - probably merits further discussion --- src/getdns/getdns.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/getdns/getdns.h b/src/getdns/getdns.h index 4787ed0a..08ba6361 100644 --- a/src/getdns/getdns.h +++ b/src/getdns/getdns.h @@ -33,7 +33,11 @@ #include #include #include -#include +#if defined( __FreeBSD__ ) +# include +#else +# include +#endif #define GETDNS_COMPILATION_COMMENT The API implementation should fill in something here, such as a compilation version string and date, and change it each time the API is compiled.