mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 17:39:47 +00:00
7326dc4af2
If present, add '-lsocket' and '-lnsl' to network_deps. ext/curl/meson.build: add network_deps to dependencies gst/festival/meson.build: same sys/shm/meson.build: same Fixes linking issues on Illumos distros. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1736>
14 lines
400 B
Meson
14 lines
400 B
Meson
festival_sources = [
|
|
'gstfestival.c'
|
|
]
|
|
|
|
gstfestival = library('gstfestival',
|
|
festival_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstaudio_dep] + winsock2 + network_deps,
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstfestival, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstfestival]
|