mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
6b0efe5453
Neon 0.34.0 broke the build again, but the API+ABI has been stable since 0.27 and the library is so-versioned. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8008>
12 lines
369 B
Meson
12 lines
369 B
Meson
neon_dep = dependency('neon', version: '>= 0.27', required: get_option('neon'))
|
|
|
|
if neon_dep.found()
|
|
gstneon = library('gstneonhttpsrc',
|
|
'gstneonhttpsrc.c',
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, neon_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir)
|
|
plugins += [gstneon]
|
|
endif
|