gstreamer/subprojects/gst-plugins-bad/ext/neon/meson.build
Jan Alexander Steffens (heftig) 6b0efe5453 meson: Drop max version bound from neon
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>
2024-12-04 15:04:14 +00:00

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