meson: link libintl if it's not provided by libc

This fixes the build on musl with external gettext
This commit is contained in:
Rasmus Thomsen 2019-09-15 14:22:49 +02:00 committed by Tanu Kaskinen
parent d72a3a5eca
commit bff163089c
12 changed files with 22 additions and 14 deletions

View file

@ -31,7 +31,7 @@ executable('pulseaudio',
include_directories : [configinc, topinc],
link_args : ['-ffast-math'],
link_with : [libpulsecore, libpulsecommon, libpulse],
dependencies : [ltdl_dep, cap_dep, dbus_dep, libsystemd_dep, dl_dep],
dependencies : [ltdl_dep, cap_dep, dbus_dep, libsystemd_dep, dl_dep, libintl_dep],
c_args : pa_c_args,
)