summaryrefslogtreecommitdiff
path: root/frontends/kolibrios
diff options
context:
space:
mode:
authorAshish Gupta <ashmew2@gmail.com>2017-05-14 00:15:05 +0200
committerAshish Gupta <ashmew2@gmail.com>2017-10-25 22:04:54 +0200
commit89cdbc691c1bc950e351f6ac3095030bcb7d40c2 (patch)
treeda7153ca8fd5efc1b8d4da6b8f7a11d3e4913fd7 /frontends/kolibrios
parent77d26f5984ae6fbf6f6ffb74ad4e8b0064249f9f (diff)
downloadnetsurf-89cdbc691c1bc950e351f6ac3095030bcb7d40c2.tar.gz
netsurf-89cdbc691c1bc950e351f6ac3095030bcb7d40c2.tar.bz2
Enable GIF PNG JPEG image formats
Diffstat (limited to 'frontends/kolibrios')
-rw-r--r--frontends/kolibrios/Makefile2
-rw-r--r--frontends/kolibrios/Makefile.defaults6
2 files changed, 8 insertions, 0 deletions
diff --git a/frontends/kolibrios/Makefile b/frontends/kolibrios/Makefile
index fc065d1b6..742011b06 100644
--- a/frontends/kolibrios/Makefile
+++ b/frontends/kolibrios/Makefile
@@ -11,6 +11,8 @@ CFLAGS += '-DKOLIBRI_RUNTIME_RESPATH="$(NETSURF_KOLIBRI_RESPATH)"'
# Enable PNG and others from here (no pkg config for now)
CFLAGS += '-DWITH_PNG'
+CFLAGS += '-DWITH_GIF'
+CFLAGS += '-DWITH_JPEG'
# compile time font locations
CFLAGS += '-DNETSURF_FB_FONTPATH="$(NETSURF_KOLIBRI_FONTPATH)"'
diff --git a/frontends/kolibrios/Makefile.defaults b/frontends/kolibrios/Makefile.defaults
index ef51b6cf4..5441fd04a 100644
--- a/frontends/kolibrios/Makefile.defaults
+++ b/frontends/kolibrios/Makefile.defaults
@@ -42,3 +42,9 @@ NETSURF_KOLIBRI_RESPATH := /usbhd0/1/res
# KolibriOS does not need curl. It has it's own HTTP library.
NETSURF_USE_CURL := NO
NETSURF_USE_KOLIBRI_HTTPLIB := YES
+
+# image formats
+NETSURF_USE_PNG := YES
+NETSURF_USE_GIF := YES
+NETSURF_USE_JPEG := YES
+NETSURF_USE_BMP := NO