summaryrefslogtreecommitdiff
blob: 6aca4f6abdf94a9f32d4b09d847f3380f39439f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--- netsurf-3.6/frontends/gtk/Makefile
+++ netsurf-3.6/frontends/gtk/Makefile
@@ -16,7 +16,6 @@
 
 # GTK and GLIB flags to disable depricated usage
 GTKDEPFLAGS := -DG_DISABLE_SINGLE_INCLUDES \
-		-DG_DISABLE_DEPRECATED \
 	       	-DGTK_DISABLE_SINGLE_INCLUDES \
 		-DGTK_MULTIHEAD_SAFE \
 		-DPANGO_DISABLE_DEPRECATED
--- netsurf-3.6/content/handlers/image/video.c
+++ netsurf-3.6/content/handlers/image/video.c
@@ -22,6 +22,8 @@
 #include "content/content_protected.h"
 
 #include "image/video.h"
+#include "utils/http/parameter.h"
+#include "content/llcache.h"
 
 typedef struct nsvideo_content {
 	struct content base;
--- netsurf-3.6/content/content_factory.h
+++ netsurf-3.6/content/content_factory.h
@@ -25,6 +25,7 @@
 
 #include "netsurf/content_type.h"
 #include "utils/errors.h"
+#include "utils/utils.h"
 
 #define CONTENT_FACTORY_REGISTER_TYPES(HNAME, HTYPELIST, HHANDLER)	\
 									\