From 57d67f21d33ed68b11d549d88fd212d22174b418 Mon Sep 17 00:00:00 2001 From: Jasper Lievisse Adriaanse Date: Thu, 20 Jun 2013 20:10:27 +0200 Subject: [PATCH] Include missing header to fix compilation error On OpenBSD the lack of sys/socket.h resulted in: error: field 'address' has incomplete type https://bugs.freedesktop.org/show_bug.cgi?id=65977 --- src/contact.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/contact.h b/src/contact.h index c7ba746..068ec2b 100644 --- a/src/contact.h +++ b/src/contact.h @@ -40,6 +40,7 @@ /* Winsock makes some inappropriately-namespaced definitions */ #undef interface #else +#include #include #endif -- 1.8.3.1