diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-09-15 14:22:49 +0200 |
---|---|---|
committer | Tanu Kaskinen <tanuk@iki.fi> | 2019-09-25 04:42:03 +0000 |
commit | bff163089c5cd629116391cde55f55c73f422d10 (patch) | |
tree | 13b7d9ab64f80b498364e9aa2300778bd179f611 /src/pulsecore/meson.build | |
parent | d72a3a5eca7e43c24fe16f5b2ed493ae1d12720f (diff) | |
download | pulseaudio-bff163089c5cd629116391cde55f55c73f422d10.tar.gz |
meson: link libintl if it's not provided by libc
This fixes the build on musl with external gettext
Diffstat (limited to 'src/pulsecore/meson.build')
-rw-r--r-- | src/pulsecore/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/meson.build b/src/pulsecore/meson.build index 19f6b9e99..0bd596cbd 100644 --- a/src/pulsecore/meson.build +++ b/src/pulsecore/meson.build @@ -198,7 +198,7 @@ libpulsecore = shared_library('pulsecore-' + pa_version_major_minor, install_rpath : privlibdir, install_dir : privlibdir, link_with : libpulsecore_simd_lib, - dependencies : [libm_dep, libpulsecommon_dep, libpulse_dep, ltdl_dep, shm_dep, sndfile_dep, database_dep, dbus_dep, libatomic_ops_dep, orc_dep, samplerate_dep, soxr_dep, speex_dep, x11_dep], + dependencies : [libm_dep, libpulsecommon_dep, libpulse_dep, ltdl_dep, shm_dep, sndfile_dep, database_dep, dbus_dep, libatomic_ops_dep, orc_dep, samplerate_dep, soxr_dep, speex_dep, x11_dep, libintl_dep], implicit_include_directories : false) libpulsecore_dep = declare_dependency(link_with: libpulsecore) |