vlib: fix build with musl

Type: fix

When building with musl, some transitive includes from glibc are not
present. This patch adds direct includes for the necessary types, and it
also defines _GNU_SOURCE to ensure that the socket types are complete.

Change-Id: Ic69c307b9515fec764c32906b5bc7f1fb34f2525
Signed-off-by: Nathan Moos <nmoos@cisco.com>
diff --git a/src/vlib/log.h b/src/vlib/log.h
index a94c57a..c3ebb81 100644
--- a/src/vlib/log.h
+++ b/src/vlib/log.h
@@ -16,6 +16,7 @@
 #ifndef included_vlib_log_h
 #define included_vlib_log_h
 
+#include <sys/time.h>
 #include <vppinfra/types.h>
 
 #define foreach_vlib_log_level	\
diff --git a/src/vlibmemory/socket_client.c b/src/vlibmemory/socket_client.c
index 8d9d7ce..530a996 100644
--- a/src/vlibmemory/socket_client.c
+++ b/src/vlibmemory/socket_client.c
@@ -19,6 +19,7 @@
 
 #include <stdio.h>
 #define __USE_GNU
+#define _GNU_SOURCE
 #include <sys/socket.h>
 
 #include <svm/ssvm.h>