1From 9981542cb443cdaf9134500b78fe7eda9f99861f Mon Sep 17 00:00:00 2001 2From: Khem Raj <raj.khem@gmail.com> 3Date: Thu, 7 Sep 2017 21:43:26 -0700 4Subject: [PATCH] cimxml: Include sys/select.h for fd_set 5 6define __SOCKADDR_ARG on linux when libc != glibc 7 8Signed-off-by: Khem Raj <raj.khem@gmail.com> 9--- 10Upstream-Status: Pending 11 backend/cimxml/indicationlistener.c | 3 ++- 12 1 file changed, 2 insertions(+), 1 deletion(-) 13 14diff --git a/backend/cimxml/indicationlistener.c b/backend/cimxml/indicationlistener.c 15index 0d7d9fe..37c45ae 100755 16--- a/backend/cimxml/indicationlistener.c 17+++ b/backend/cimxml/indicationlistener.c 18@@ -25,6 +25,7 @@ 19 20 #include <pthread.h> 21 #include <sys/socket.h> 22+#include <sys/select.h> 23 #include <netinet/in.h> 24 #include <fcntl.h> 25 #include <errno.h> 26@@ -36,7 +37,7 @@ static int do_listen=1; 27 #define hdrBufsize 5000 28 #define hdrLimmit 5000 29 30-#ifdef __APPLE__ 31+#if defined(__APPLE__) || (defined(__linux__) && !defined(__GLIBC__)) 32 # define __SOCKADDR_ARG struct sockaddr *__restrict 33 #endif 34 35-- 362.14.1 37 38