Skip to content

Commit

Permalink
meson: require orc 0.4.24 here too
Browse files Browse the repository at this point in the history
Needed for some video stuff. Same requirement as in
the autotools build.
  • Loading branch information
tp-m committed Oct 3, 2016
1 parent 87905cc commit 0e82516
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion meson.build
Expand Up @@ -17,6 +17,7 @@ else
endif

glib_req = '>= 2.40.0'
orc_req = '>= 0.4.24'
gst_req = '>= @0@.@1@.0'.format(gst_version_major, gst_version_minor)

api_version = '1.0'
Expand Down Expand Up @@ -162,7 +163,7 @@ orcc_args = []
if get_option('use_orc') != 'no'
need_orc = get_option('use_orc') == 'yes'
# Used by various libraries/elements that use Orc code
orc_dep = dependency('orc-0.4', version : '>= 0.4.17', required : need_orc)
orc_dep = dependency('orc-0.4', version : orc_req, required : need_orc)
orcc = find_program('orcc', required : need_orc)
if orc_dep.found() and orcc.found()
have_orcc = true
Expand Down

0 comments on commit 0e82516

Please sign in to comment.