summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorUli Schlachter <psychon@znc.in>2021-05-02 21:25:48 +0200
committerUli Schlachter <psychon@znc.in>2021-05-02 21:25:48 +0200
commit45cca0c984c17e98964beb63410627298d1f6a01 (patch)
treea810c462dc30d8907593ea1e42de7071995e7de1 /util
parent4f61b765c9f657fd755194afe576e56f945af4b6 (diff)
downloadcairo-45cca0c984c17e98964beb63410627298d1f6a01.tar.gz
meson: Move CAIRO_HAS_INTERPRETER to config.h
This is what autoconf does and hopefully that means this is the correct thing to do. Signed-off-by: Uli Schlachter <psychon@znc.in>
Diffstat (limited to 'util')
-rw-r--r--util/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/meson.build b/util/meson.build
index 55362b6d4..e3a1ace96 100644
--- a/util/meson.build
+++ b/util/meson.build
@@ -6,7 +6,7 @@ if feature_conf.get('CAIRO_HAS_GOBJECT_FUNCTIONS', 0) == 1
subdir('cairo-gobject')
endif
-if feature_conf.get('CAIRO_HAS_INTERPRETER', 0) == 1
+if conf.get('CAIRO_HAS_INTERPRETER', 0) == 1
subdir('cairo-script')
endif