summaryrefslogtreecommitdiff
path: root/Makefile.defaults
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2011-05-06 22:42:37 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2011-05-06 22:42:37 +0000
commit208363fe2a8a519915123d80f3ca02452aa76eb3 (patch)
treeb168143a3383e7ad99ba15c92e018efc185d7800 /Makefile.defaults
parente71691bae890040b83cfd54a2d9a1097d5026866 (diff)
downloadnetsurf-208363fe2a8a519915123d80f3ca02452aa76eb3.tar.gz
netsurf-208363fe2a8a519915123d80f3ca02452aa76eb3.tar.bz2
Rename DataTypes related code/files/defines to avoid confusion and aid adding support
for other DataType classes. Disable MNG/WebP by default as they aren't common and the required libs are quite large; DataTypes can handle these formats for now. svn path=/trunk/netsurf/; revision=12284
Diffstat (limited to 'Makefile.defaults')
-rw-r--r--Makefile.defaults8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.defaults b/Makefile.defaults
index ee7b21d95..dd3755049 100644
--- a/Makefile.defaults
+++ b/Makefile.defaults
@@ -220,9 +220,13 @@ ifeq ($(TARGET),amiga)
# Valid options: YES, NO, AUTO
NETSURF_USE_ROSPRITE := YES
+ # Enable NetSurf's use of libmng for displaying MNGs, JNGs and PNGs
+ # Valid options: YES, NO (at least one of PNG/MNG/DT highly recommended)
+ NETSURF_USE_MNG := NO
+
# Enable NetSurf's use of libwebp for displaying WebPs
# Valid options: YES, NO
- NETSURF_USE_WEBP := YES
+ NETSURF_USE_WEBP := NO
# Enable NetSurf to display Amiga icons
# Valid options: YES, NO (recommended)
@@ -230,7 +234,7 @@ ifeq ($(TARGET),amiga)
# Enable NetSurf's use of DataTypes for unknown filetypes
# Valid options: YES, NO
- NETSURF_USE_PLUGINS := YES
+ NETSURF_USE_AMIGA_DATATYPES := YES
# Enable NetSurf's use of libsvgtiny for displaying SVGs
# (NB: Requires NETSURF_AMIGA_USE_CAIRO)