summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGurkirpal Singh <gurkirpal204@gmail.com>2017-03-22 17:18:09 +0530
committerTim-Philipp Müller <tim@centricular.com>2017-03-22 12:11:05 +0000
commit8fd5d04fefd3bcbc013e52042b7645183e327597 (patch)
treef067a73bba0229a5b42f319f5b8d16b8652fdd40
parent75d9ec634ce3db8396d86ad79ad5c08ca9347595 (diff)
downloadgst-omx-8fd5d04fefd3bcbc013e52042b7645183e327597.tar.gz
meson: fix logic to set HAVE_THEORA
https://bugzilla.gnome.org/show_bug.cgi?id=780392
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 1c917c2..a6982be 100644
--- a/meson.build
+++ b/meson.build
@@ -195,7 +195,7 @@ have_omx_theora = cc.has_header_symbol(
prefix : extra_video_headers,
args : gst_omx_args,
required : false)
-if have_omx_vp8
+if have_omx_theora
cdata.set('HAVE_THEORA', 1)
endif