summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2017-08-04 14:41:55 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2017-08-21 15:19:08 +0800
commit98ebded2cdcb54ea542b9e04773c59783ea7d82c (patch)
tree2eb64e229ec5c0a379decea19706f2e0d6c83dd6 /gdk-pixbuf
parent64ac9d7a37986eef404914b66e220e0ea530b845 (diff)
downloadgdk-pixbuf-98ebded2cdcb54ea542b9e04773c59783ea7d82c.tar.gz
build: Allow 'all' shorthand for builtin_loaders build option
To ease packaging of the built binaries, provide an 'all' shorthand for making all the buildable loaders built into the main GDK-Pixbuf library, so that we do not need to distribute them as well, and makes it easier so that one will not have to try to find and enter all the names of the loaders that are shipped with GDK-Pixbuf. https://bugzilla.gnome.org/show_bug.cgi?id=785767
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/meson.build b/gdk-pixbuf/meson.build
index 209c2c45f..0e8c8b4d1 100644
--- a/gdk-pixbuf/meson.build
+++ b/gdk-pixbuf/meson.build
@@ -110,7 +110,7 @@ foreach l: loaders
sources = l[1]
cond = l.get(2, true)
- if cond and builtin_loaders.contains(name)
+ if cond and (builtin_loaders.contains(name) or builtin_all_loaders)
cflag_for_included_loader = ['-DINCLUDE_@0@'.format(name)]
included_loaders_cflags += cflag_for_included_loader
@@ -149,7 +149,7 @@ foreach l: loaders
sources = l[1]
cond = l.get(2, true)
- if cond and not builtin_loaders.contains(name)
+ if cond and not (builtin_loaders.contains(name) or builtin_all_loaders)
mod = shared_module('pixbufloader-@0@'.format(name),
sources,
dependencies: loaders_deps + gdk_pixbuf_deps + [ gdkpixbuf_dep ],