summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2011-03-06 13:58:02 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2011-03-06 13:58:02 +0000
commit5ac45472c7af8ccf686ea93791e491899889f087 (patch)
tree9d64a00ac2ceff5686f247ad163839a880f71b71 /render
parentbfadf014825099ca4021a083fca7a6a83d737331 (diff)
downloadnetsurf-5ac45472c7af8ccf686ea93791e491899889f087.tar.gz
netsurf-5ac45472c7af8ccf686ea93791e491899889f087.tar.bz2
Fix broken CONTENT_PLUGIN API.
Add a default content handler for Amiga using the plugin interface, which passes unknown files (currently images only) through DataTypes. svn path=/trunk/netsurf/; revision=11924
Diffstat (limited to 'render')
-rw-r--r--render/box_construct.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/render/box_construct.c b/render/box_construct.c
index 44fcb54b1..ae7c1787b 100644
--- a/render/box_construct.c
+++ b/render/box_construct.c
@@ -78,6 +78,9 @@ static const content_type image_types[] = {
#ifdef WITH_DRAW
CONTENT_DRAW,
#endif
+#ifdef WITH_PLUGIN
+ CONTENT_PLUGIN,
+#endif
#ifdef WITH_ARTWORKS
CONTENT_ARTWORKS,
#endif