mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
meson: Pass native: false to add_languages()
This is needed for cross-compiling without a build machine compiler available. The option was added in 0.54, but we only need this in Cerbero and it doesn't affect older versions so it should be ok. Will only cause a spurious warning. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/660>
This commit is contained in:
parent
9280d4b8f5
commit
4e7d3b42ec
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ else
|
|||
endif
|
||||
gst_version_is_dev = gst_version_minor % 2 == 1 and gst_version_micro < 90
|
||||
|
||||
have_cxx = add_languages('cpp', required : false)
|
||||
have_objc = add_languages('objc', required : false)
|
||||
have_cxx = add_languages('cpp', native: false, required: false)
|
||||
have_objc = add_languages('objc', native: false, required: false)
|
||||
|
||||
glib_req = '>= 2.44.0'
|
||||
orc_req = '>= 0.4.24'
|
||||
|
|
Loading…
Reference in a new issue