mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Make a new API to hide some the implementation of eventfd, timerfd and signalfd along with clock and read/write/ioctl/close functions. We would like to have plugins use the abstractions so that we can switch them to something else when needed.
22 lines
616 B
Meson
22 lines
616 B
Meson
spa_support_sources = ['cpu.c',
|
|
'logger.c',
|
|
'loop.c',
|
|
'plugin.c',
|
|
'system.c']
|
|
|
|
spa_support_lib = shared_library('spa-support',
|
|
spa_support_sources,
|
|
c_args : [ '-D_GNU_SOURCE' ],
|
|
include_directories : [ spa_inc],
|
|
dependencies : pthread_lib,
|
|
install : true,
|
|
install_dir : '@0@/spa/support'.format(get_option('libdir')))
|
|
|
|
spa_dbus_sources = ['dbus.c']
|
|
|
|
spa_dbus_lib = shared_library('spa-dbus',
|
|
spa_dbus_sources,
|
|
include_directories : [ spa_inc],
|
|
dependencies : dbus_dep,
|
|
install : true,
|
|
install_dir : '@0@/spa/support'.format(get_option('libdir')))
|