summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2007-01-29 22:27:15 +0000
committerJames Bursa <james@netsurf-browser.org>2007-01-29 22:27:15 +0000
commita0b6661eb6980095f24d6317a31404596d70ba8c (patch)
treeb91c612d48815c03d05ec0466c543d85d72628c3 /content
parentb76283f3d52985abd24081bcbb9196ec440e10af (diff)
downloadnetsurf-a0b6661eb6980095f24d6317a31404596d70ba8c.tar.gz
netsurf-a0b6661eb6980095f24d6317a31404596d70ba8c.tar.bz2
Make GTK build compile on FreeBSD.
svn path=/trunk/netsurf/; revision=3154
Diffstat (limited to 'content')
-rw-r--r--content/content.c1
-rw-r--r--content/fetch.c5
-rw-r--r--content/fetch.h3
-rw-r--r--content/fetchcache.c1
-rw-r--r--content/urldb.c2
5 files changed, 9 insertions, 3 deletions
diff --git a/content/content.c b/content/content.c
index 8af888699..f87084bce 100644
--- a/content/content.c
+++ b/content/content.c
@@ -18,6 +18,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <strings.h>
#include <time.h>
#include "netsurf/utils/config.h"
#include "netsurf/content/content.h"
diff --git a/content/fetch.c b/content/fetch.c
index ed1431741..337e4a5ed 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -24,14 +24,15 @@
#include <string.h>
#include <strings.h>
#include <time.h>
+#include <sys/select.h>
#include <sys/stat.h>
#ifdef riscos
#include <unixlib/local.h>
#endif
-#include "curl/curl.h"
+#include <curl/curl.h>
#include "netsurf/utils/config.h"
#ifdef WITH_SSL
-#include "openssl/ssl.h"
+#include <openssl/ssl.h>
#endif
#include "netsurf/content/fetch.h"
#include "netsurf/content/urldb.h"
diff --git a/content/fetch.h b/content/fetch.h
index 847d16abf..c8a454816 100644
--- a/content/fetch.h
+++ b/content/fetch.h
@@ -13,7 +13,8 @@
#define _NETSURF_DESKTOP_FETCH_H_
#include <stdbool.h>
-#include "curl/curl.h"
+#include <sys/select.h>
+#include <curl/curl.h>
#include "netsurf/utils/config.h"
typedef enum {
diff --git a/content/fetchcache.c b/content/fetchcache.c
index 0a7e34c2d..c6c6e3507 100644
--- a/content/fetchcache.c
+++ b/content/fetchcache.c
@@ -16,6 +16,7 @@
#define _GNU_SOURCE /* for strndup */
#include <assert.h>
#include <string.h>
+#include <strings.h>
#include <sys/types.h>
#include <regex.h>
#include <time.h>
diff --git a/content/urldb.c b/content/urldb.c
index 9c3214823..457dc7a90 100644
--- a/content/urldb.c
+++ b/content/urldb.c
@@ -76,8 +76,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <strings.h>
#include <time.h>
+#include <sys/select.h>
#include <curl/curl.h>
#include "netsurf/image/bitmap.h"