summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2019-12-08 00:50:03 +0000
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2019-12-09 07:33:55 +0000
commit3921a94f28e7a59a5f61fdc2d4924e2ac3bcd56d (patch)
tree87809c3544d210a709a593618f68397c0f6a0bbb /meson.build
parent006f8cea9629c13377de05fdcee7122940864c55 (diff)
test: fix up HAVE_X11 / HAVE_X defines
Only HAVE_X was defined, while both HAVE_X11 and HAVE_X were used.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index ff7f1caa4..789b73cf8 100644
--- a/meson.build
+++ b/meson.build
@@ -278,7 +278,7 @@ else
gtk_quartz_dep = dependency('', required : false)
endif
-core_conf.set('HAVE_X', x11_dep.found())
+core_conf.set('HAVE_X11', x11_dep.found())
core_conf.set('HAVE_GIO_UNIX_2_0', giounix_dep.found())
if gio_dep.type_name() == 'pkgconfig'