summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
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"