mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
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:
parent
097a2ee6e6
commit
652d3db8f4
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue