Fixed includes for FreeBSD
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 17 Jan 2005 10:29:00 +0000 (10:29 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 17 Jan 2005 10:29:00 +0000 (10:29 +0000)
src/tcpdchk.c
src/unix.c

index 93a80b8..96ef8bc 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (C) 1995-2005, Index Data ApS
  * See the file LICENSE for details.
  *
- * $Id: tcpdchk.c,v 1.6 2005-01-16 21:51:50 adam Exp $
+ * $Id: tcpdchk.c,v 1.7 2005-01-17 10:29:25 adam Exp $
  */
 /**
  * \file tcpdchk.c
 #include <stdio.h>
 #include <string.h>
 
+#if HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+
 #ifdef WIN32
 #include <winsock.h>
 #else
+#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>
 #endif
 
 #include <yaz/yconfig.h>
index da80f53..1d2b925 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (C) 1995-2005, Index Data ApS
  * See the file LICENSE for details.
  *
- * $Id: unix.c,v 1.9 2005-01-16 21:51:50 adam Exp $
+ * $Id: unix.c,v 1.10 2005-01-17 10:29:00 adam Exp $
  * UNIX socket COMSTACK. By Morten Bøgeskov.
  */
 /**
@@ -16,6 +16,9 @@
 #include <string.h>
 #include <stdlib.h>
 #include <errno.h>
+#if HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
 #if HAVE_UNISTD_H
 #include <unistd.h>
 #endif
@@ -26,9 +29,6 @@
 #if HAVE_PWD_H
 #include <pwd.h>
 #endif
-#if HAVE_SYS_TYPES_H
-#include <sys/types.h>
-#endif
 
 #if HAVE_SYS_SOCKET_H
 #include <sys/socket.h>