Fixed compilation error on FreeBSD
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 16 Mar 2007 09:34:55 +0000 (09:34 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 16 Mar 2007 09:34:55 +0000 (09:34 +0000)
http://test/idtest/2007-03-16T00:00:01Z/pazpar2-0.1--freebsd.txt

src/database.c

index 3a987ea..b1cd969 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: database.c,v 1.1 2007-03-15 16:55:34 quinn Exp $ */
+/* $Id: database.c,v 1.2 2007-03-16 09:34:55 adam Exp $ */
 
 #include <libxml/parser.h>
 #include <libxml/tree.h>
 #include "http.h"
 #include "zeerex.h"
 
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netdb.h>
+#include <netinet/in.h>
+
 static struct host *hosts = 0;  // The hosts we know about 
 static struct database *databases = 0; // The databases we know about
 static NMEM nmem = 0;