summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2017-11-29 18:01:40 +0100
committerBastien Nocera <hadess@hadess.net>2017-12-05 06:46:55 +0100
commit328b53f0b67293c5b310d4e1ce9894a83644416f (patch)
tree6e7713057fa63a86e1976c1d8163df52f222462a /meson_options.txt
parentb99e04f116972d2ee355fb129238cc574bd58dd3 (diff)
downloadgdk-pixbuf-328b53f0b67293c5b310d4e1ce9894a83644416f.tar.gz
build: Remove "enable" from Meson build options
As per https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting https://bugzilla.gnome.org/show_bug.cgi?id=790995
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 9eadfcc4c..a197b7434 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,16 +1,16 @@
-option('enable_png',
+option('png',
description: 'Enable PNG loader (requires libpng)',
type: 'boolean',
value: true)
-option('enable_tiff',
- description: 'Enable TIFF loader (requires libtiff), disabled on Windows if "enable_native_windows_loaders" is used',
+option('tiff',
+ description: 'Enable TIFF loader (requires libtiff), disabled on Windows if "native_windows_loaders" is used',
type: 'boolean',
value: true)
-option('enable_jpeg',
- description: 'Enable JPEG loader (requires libjpeg), disabled on Windows if "enable_native_windows_loaders" is used',
+option('jpeg',
+ description: 'Enable JPEG loader (requires libjpeg), disabled on Windows if "native_windows_loaders" is used',
type: 'boolean',
value: true)
-option('enable_jasper',
+option('jasper',
description: 'Enable JPEG2000 loader (requires libjasper)',
type: 'boolean',
value: false)
@@ -34,11 +34,11 @@ option('with_man',
description: 'Whether to generate man pages (requires xlstproc)',
type: 'boolean',
value: true)
-option('enable_relocatable',
+option('relocatable',
description: 'Whether to enable application bundle relocation support',
type: 'boolean',
value: false)
-option('enable_native_windows_loaders',
- description: 'Use Windows system components to handle BMP, EMF, GIF, ICO, JPEG, TIFF and WMF images, overriding enable_jpeg and enable_tiff. To build this into gdk-pixbuf, pass in windows" with the other loaders to build in or use "all" with the builtin_loaders option',
+option('native_windows_loaders',
+ description: 'Use Windows system components to handle BMP, EMF, GIF, ICO, JPEG, TIFF and WMF images, overriding jpeg and tiff. To build this into gdk-pixbuf, pass in windows" with the other loaders to build in or use "all" with the builtin_loaders option',
type: 'boolean',
value: false)