meson: modules/alsa: Make alsa-util a shared library

This is to be consistent. In pa currently, as built by the autotools,
libalsa-util is a shared library. Moreover, all the libraries for the
modules, as defined in `src/meson.build`, are also shared libraries.

So let's stick to shared libraries everywhere for now, for simplicity.

We can rework that later on.

Signed-off-by: Arnaud Rebillout <arnaud.rebillout@collabora.com>
This commit is contained in:
Arnaud Rebillout 2018-09-20 15:26:40 +07:00 committed by Arun Raghavan
parent 097a2ee6e6
commit 652d3db8f4

View file

@ -26,11 +26,11 @@ if udev_dep.found()
libalsa_util_headers += [ '../udev-util.h' ]
endif
libalsa_util = static_library('libalsa_util',
libalsa_util = shared_library('libalsa_util',
libalsa_util_sources,
libalsa_util_headers,
c_args : [pa_c_args, server_c_args],
include_directories : [configinc, topinc],
dependencies : [libpulse_dep, libpulsecore_dep, alsa_dep, dbus_dep, udev_dep],
install : false
install : true
)