More explicit use of #if HAVE_...header's.
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 5 Dec 2008 10:34:45 +0000 (11:34 +0100)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 5 Dec 2008 10:34:45 +0000 (11:34 +0100)
src/ber_int.c
src/daemon.c
src/log.c
src/tcpdchk.c
src/tcpip.c
src/tpath.c

index f0680fb..5524096 100644 (file)
@@ -23,7 +23,8 @@
 
 #ifdef WIN32
 #include <winsock.h>
-#else
+#endif
+#if HAVE_NETINET_IN_H
 #include <netinet/in.h>
 #endif
 
index 1824ef0..f0ccd3e 100644 (file)
 #include <unistd.h>
 #endif
 #include <stdlib.h>
-#include <signal.h>
 #if HAVE_SYS_WAIT_H
 #include <sys/wait.h>
 #endif
 
+#if HAVE_SYS_TYPES_H
 #include <sys/types.h>
+#endif
 
 #if HAVE_SYS_STAT_H
 #include <sys/stat.h>
index 47464fe..40baf7f 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -16,7 +16,9 @@
 #include <windows.h>
 #endif
 
+#if HAVE_SYS_STAT_H
 #include <sys/stat.h>
+#endif
 #include <stdio.h>
 #include <stdlib.h>
 #include <ctype.h>
index d19f8f6..98bdc2b 100644 (file)
 #include <stdio.h>
 #include <string.h>
 
+#ifdef WIN32
+#include <winsock.h>
+#endif
+
 #if HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
 
-#ifdef WIN32
-#include <winsock.h>
-#else
+#if HAVE_NETINET_IN_H
 #include <netinet/in.h>
-#include <netdb.h>
-#include <arpa/inet.h>
-#include <netinet/tcp.h>
 #endif
 
-#if HAVE_SYS_SOCKET_H
-#include <sys/socket.h>
+#if HAVE_NETDB_H
+#include <netdb.h>
 #endif
 
-#include <yaz/yconfig.h>
 #include <yaz/comstack.h>
 #include <yaz/statserv.h>
 #include <yaz/log.h>
index fcdcce1..add2d32 100644 (file)
@@ -25,7 +25,6 @@
 #endif
 
 #ifdef WIN32
-
 /* VS 2003 or later has getaddrinfo; older versions do not */
 #include <winsock2.h>
 #if _MSC_VER >= 1300
 #else
 #define HAVE_GETADDRINFO 0
 #endif
+#endif
 
-#else
+#if HAVE_NETINET_IN_H
 #include <netinet/in.h>
+#endif
+#if HAVE_NETDB_H
 #include <netdb.h>
+#endif
+#if HAVE_ARPA_INET_H
 #include <arpa/inet.h>
+#endif
+#if HAVE_NETINET_TCP_H
 #include <netinet/tcp.h>
 #endif
-
 #if HAVE_SYS_SOCKET_H
 #include <sys/socket.h>
 #endif
index d4eb5b5..3599ddc 100644 (file)
 #include <ctype.h>
 #include <yaz/tpath.h>
 #include <yaz/log.h>
+#if HAVE_SYS_TYPES_H
 #include <sys/types.h>
+#endif
+#if HAVE_SYS_STAT_H
 #include <sys/stat.h>
+#endif
 #if HAVE_UNISTD_H
 #include <unistd.h>
 #endif