2006-06-19 21:53:48 +00:00
|
|
|
# This file is part of PulseAudio.
|
2004-06-11 00:33:43 +00:00
|
|
|
#
|
2007-02-13 15:35:19 +00:00
|
|
|
# Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
# Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
|
# Copyright 2006 Diego Pettenò
|
|
|
|
|
#
|
2006-06-19 21:53:48 +00:00
|
|
|
# PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
2004-06-11 00:33:43 +00:00
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
2006-06-19 21:53:48 +00:00
|
|
|
# PulseAudio is distributed in the hope that it will be useful, but
|
2004-06-11 00:33:43 +00:00
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
# General Public License for more details.
|
|
|
|
|
#
|
2004-11-14 14:58:54 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
# along with PulseAudio; if not, write to the Free Software
|
2004-07-16 20:02:44 +00:00
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
# USA.
|
2004-06-11 00:33:43 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Extra directories #
|
|
|
|
|
###################################
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
pulseincludedir=$(includedir)/pulse
|
|
|
|
|
pulsecoreincludedir=$(includedir)/pulsecore
|
2006-07-26 17:36:14 +00:00
|
|
|
pulselibexecdir=$(libexecdir)/pulse
|
2011-03-15 12:30:42 +01:00
|
|
|
if HAVE_X11
|
2007-10-28 19:13:50 +00:00
|
|
|
xdgautostartdir=$(sysconfdir)/xdg/autostart
|
2011-03-15 12:30:42 +01:00
|
|
|
endif
|
|
|
|
|
if HAVE_ALSA
|
2009-06-18 23:01:24 +02:00
|
|
|
alsaprofilesetsdir=$(datadir)/pulseaudio/alsa-mixer/profile-sets
|
|
|
|
|
alsapathsdir=$(datadir)/pulseaudio/alsa-mixer/paths
|
2011-03-15 12:30:42 +01:00
|
|
|
endif
|
|
|
|
|
if HAVE_DBUS
|
2009-08-12 01:50:24 +02:00
|
|
|
dbuspolicydir=$(sysconfdir)/dbus-1/system.d
|
2011-03-15 12:30:42 +01:00
|
|
|
endif
|
2004-09-01 17:36:46 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Compiler/linker flags #
|
|
|
|
|
###################################
|
|
|
|
|
|
2008-10-21 22:05:13 +02:00
|
|
|
AM_CFLAGS = \
|
|
|
|
|
-I$(top_srcdir)/src \
|
2009-01-08 12:28:20 +02:00
|
|
|
-I$(top_srcdir)/src/modules \
|
2009-01-19 17:30:41 +01:00
|
|
|
-I$(top_builddir)/src/modules \
|
2011-06-25 16:36:08 +02:00
|
|
|
$(PTHREAD_CFLAGS) \
|
2011-01-25 11:57:30 +01:00
|
|
|
-DPA_ALSA_PATHS_DIR=\"$(alsapathsdir)\" \
|
|
|
|
|
-DPA_ALSA_PROFILE_SETS_DIR=\"$(alsaprofilesetsdir)\"
|
2011-09-19 13:41:13 +05:30
|
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
2011-09-14 07:24:19 +05:30
|
|
|
SERVER_CFLAGS = -D__INCLUDED_FROM_PULSE_AUDIO
|
2008-08-03 22:46:21 +01:00
|
|
|
|
2008-10-01 01:31:56 +02:00
|
|
|
AM_LIBADD = $(PTHREAD_LIBS) $(INTLLIBS)
|
|
|
|
|
AM_LDADD = $(PTHREAD_LIBS) $(INTLLIBS)
|
2009-07-17 14:18:07 +02:00
|
|
|
AM_LDFLAGS = $(NODELETE_LDFLAGS)
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2012-06-23 19:14:12 +08:00
|
|
|
if HAVE_GCOV
|
|
|
|
|
AM_CFLAGS+=$(GCOV_CFLAGS)
|
|
|
|
|
AM_CXXFLAGS+=$(GCOV_CFLAGS)
|
|
|
|
|
AM_LDFLAGS+=$(GCOV_LIBS)
|
|
|
|
|
endif
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
if STATIC_BINS
|
|
|
|
|
BINLDFLAGS = -static
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if OS_IS_WIN32
|
2011-01-06 01:39:29 +01:00
|
|
|
AM_LDFLAGS+=-Wl,--export-all-symbols,--enable-auto-import -no-undefined
|
2006-01-10 17:51:06 +00:00
|
|
|
WINSOCK_LIBS=-lwsock32 -lws2_32 -lwininet
|
|
|
|
|
endif
|
|
|
|
|
|
2011-03-17 12:40:26 +01:00
|
|
|
if OS_IS_DARWIN
|
2011-05-27 15:33:17 +02:00
|
|
|
AM_LDFLAGS+=-Wl,-headerpad_max_install_names -headerpad_max_install_names
|
2011-03-17 12:40:26 +01:00
|
|
|
endif
|
|
|
|
|
|
2009-03-04 22:07:41 +01:00
|
|
|
FOREIGN_CFLAGS = -w
|
2011-06-23 22:21:01 +02:00
|
|
|
|
2011-06-25 16:36:06 +02:00
|
|
|
MODULE_LDFLAGS = $(AM_LDFLAGS) -module -disable-static -avoid-version $(NOUNDEFINED_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
MODULE_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2009-01-08 14:55:33 +02:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Extra files #
|
|
|
|
|
###################################
|
|
|
|
|
|
2009-11-14 22:23:10 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
|
pulse/client.conf.in \
|
|
|
|
|
pulse/version.h.in \
|
|
|
|
|
daemon/daemon.conf.in \
|
|
|
|
|
daemon/default.pa.in \
|
|
|
|
|
daemon/system.pa.in \
|
|
|
|
|
depmod.py \
|
|
|
|
|
daemon/esdcompat.in \
|
|
|
|
|
daemon/start-pulseaudio-x11.in \
|
|
|
|
|
daemon/start-pulseaudio-kde.in \
|
2012-02-15 21:59:17 +01:00
|
|
|
utils/padsp.in \
|
2010-09-23 17:16:41 +05:30
|
|
|
utils/qpaeq \
|
2009-11-14 22:23:10 +00:00
|
|
|
modules/module-defs.h.m4 \
|
|
|
|
|
daemon/pulseaudio.desktop.in \
|
|
|
|
|
daemon/pulseaudio-kde.desktop.in \
|
|
|
|
|
map-file \
|
2010-09-10 12:56:40 +02:00
|
|
|
daemon/pulseaudio-system.conf \
|
|
|
|
|
modules/echo-cancel/adrian-license.txt
|
2009-11-14 22:23:10 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
pulseconf_DATA = \
|
2006-02-16 21:37:20 +00:00
|
|
|
default.pa \
|
2008-07-30 16:59:30 +02:00
|
|
|
system.pa \
|
2006-02-16 21:37:20 +00:00
|
|
|
daemon.conf \
|
|
|
|
|
client.conf
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2011-02-17 11:28:54 +01:00
|
|
|
if HAVE_DBUS
|
2009-08-12 01:50:24 +02:00
|
|
|
dbuspolicy_DATA = \
|
|
|
|
|
daemon/pulseaudio-system.conf
|
2011-02-17 11:28:54 +01:00
|
|
|
endif
|
2009-08-12 01:50:24 +02:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
if HAVE_X11
|
2009-02-21 21:14:56 +01:00
|
|
|
xdgautostart_in_files = \
|
2009-10-01 22:33:22 +01:00
|
|
|
daemon/pulseaudio.desktop.in \
|
|
|
|
|
daemon/pulseaudio-kde.desktop.in
|
2009-02-21 21:14:56 +01:00
|
|
|
xdgautostart_DATA = $(xdgautostart_in_files:.desktop.in=.desktop)
|
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
2011-03-15 12:30:42 +01:00
|
|
|
endif
|
2009-02-21 21:14:56 +01:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2010-10-19 09:59:45 +05:30
|
|
|
###################################
|
|
|
|
|
# Includes #
|
|
|
|
|
###################################
|
|
|
|
|
|
|
|
|
|
BUILT_SOURCES =
|
|
|
|
|
CLEANFILES =
|
|
|
|
|
include $(top_srcdir)/orc.mak
|
|
|
|
|
ORC_SOURCE =
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Main daemon #
|
|
|
|
|
###################################
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
bin_PROGRAMS = pulseaudio
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
pulseaudio_SOURCES = \
|
2009-06-12 07:16:05 +03:00
|
|
|
daemon/caps.c daemon/caps.h \
|
2006-02-16 19:19:58 +00:00
|
|
|
daemon/cmdline.c daemon/cmdline.h \
|
|
|
|
|
daemon/cpulimit.c daemon/cpulimit.h \
|
|
|
|
|
daemon/daemon-conf.c daemon/daemon-conf.h \
|
|
|
|
|
daemon/dumpmodules.c daemon/dumpmodules.h \
|
2007-10-28 19:13:50 +00:00
|
|
|
daemon/ltdl-bind-now.c daemon/ltdl-bind-now.h \
|
2009-10-08 08:45:34 +02:00
|
|
|
daemon/main.c
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2011-01-25 11:57:30 +01:00
|
|
|
pulseaudio_CFLAGS = $(AM_CFLAGS) $(CAP_CFLAGS)
|
|
|
|
|
pulseaudio_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la $(LIBLTDL) $(CAP_LIBS)
|
2006-06-11 01:34:12 +00:00
|
|
|
# This is needed because automake doesn't properly expand the foreach below
|
2010-11-28 14:27:08 +00:00
|
|
|
pulseaudio_DEPENDENCIES = libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la $(PREOPEN_LIBS)
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2009-10-08 08:45:34 +02:00
|
|
|
if HAVE_DBUS
|
|
|
|
|
pulseaudio_CFLAGS += $(DBUS_CFLAGS)
|
|
|
|
|
pulseaudio_SOURCES += daemon/server-lookup.c daemon/server-lookup.h
|
|
|
|
|
pulseaudio_LDADD += $(DBUS_LIBS)
|
|
|
|
|
endif
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
if PREOPEN_MODS
|
|
|
|
|
PREOPEN_LIBS = $(PREOPEN_MODS)
|
|
|
|
|
else
|
2006-05-16 15:29:58 +00:00
|
|
|
PREOPEN_LIBS = $(modlibexec_LTLIBRARIES)
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
2004-11-17 00:05:25 +00:00
|
|
|
|
2006-04-13 17:32:10 +00:00
|
|
|
if FORCE_PREOPEN
|
2009-07-07 20:51:53 +02:00
|
|
|
pulseaudio_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) $(IMMEDIATE_LDFLAGS) -dlpreopen force $(foreach f,$(PREOPEN_LIBS),-dlpreopen $(f))
|
2006-04-13 17:32:10 +00:00
|
|
|
else
|
2009-07-07 20:51:53 +02:00
|
|
|
pulseaudio_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) $(IMMEDIATE_LDFLAGS) -dlopen force $(foreach f,$(PREOPEN_LIBS),-dlopen $(f))
|
2006-04-13 17:32:10 +00:00
|
|
|
endif
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Utility programs #
|
|
|
|
|
###################################
|
2004-06-11 00:33:43 +00:00
|
|
|
|
2011-02-17 11:28:54 +01:00
|
|
|
bin_SCRIPTS = esdcompat
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
bin_PROGRAMS += \
|
2004-11-21 18:15:33 +00:00
|
|
|
pacat \
|
2011-01-06 02:10:45 +01:00
|
|
|
pactl
|
|
|
|
|
|
|
|
|
|
if !OS_IS_WIN32
|
|
|
|
|
bin_PROGRAMS += pasuspender
|
|
|
|
|
endif
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
if HAVE_AF_UNIX
|
|
|
|
|
bin_PROGRAMS += pacmd
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if HAVE_X11
|
|
|
|
|
bin_PROGRAMS += pax11publish
|
2011-02-17 11:28:54 +01:00
|
|
|
bin_SCRIPTS += start-pulseaudio-x11 start-pulseaudio-kde
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
pacat_SOURCES = utils/pacat.c
|
2010-11-28 14:27:08 +00:00
|
|
|
pacat_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la $(LIBSNDFILE_LIBS)
|
2009-05-26 00:05:28 +02:00
|
|
|
pacat_CFLAGS = $(AM_CFLAGS) $(LIBSNDFILE_CFLAGS)
|
2006-01-10 17:51:06 +00:00
|
|
|
pacat_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
pactl_SOURCES = utils/pactl.c
|
2010-11-28 14:27:08 +00:00
|
|
|
pactl_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la $(LIBSNDFILE_LIBS)
|
2006-01-10 17:51:06 +00:00
|
|
|
pactl_CFLAGS = $(AM_CFLAGS) $(LIBSNDFILE_CFLAGS)
|
|
|
|
|
pactl_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
pasuspender_SOURCES = utils/pasuspender.c
|
2010-11-28 14:27:08 +00:00
|
|
|
pasuspender_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-05-26 00:05:28 +02:00
|
|
|
pasuspender_CFLAGS = $(AM_CFLAGS)
|
2007-10-28 19:13:50 +00:00
|
|
|
pasuspender_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
pacmd_SOURCES = utils/pacmd.c
|
2006-01-10 17:51:06 +00:00
|
|
|
pacmd_CFLAGS = $(AM_CFLAGS)
|
2010-11-28 14:27:08 +00:00
|
|
|
pacmd_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-01-10 17:51:06 +00:00
|
|
|
pacmd_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2008-10-22 20:36:21 +02:00
|
|
|
pax11publish_SOURCES = utils/pax11publish.c
|
2009-01-07 16:33:43 +02:00
|
|
|
pax11publish_CFLAGS = $(AM_CFLAGS) $(X11_CFLAGS)
|
2010-11-28 14:27:08 +00:00
|
|
|
pax11publish_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la $(X11_LIBS)
|
2006-01-10 17:51:06 +00:00
|
|
|
pax11publish_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
|
|
|
|
###################################
|
|
|
|
|
# Test programs #
|
|
|
|
|
###################################
|
|
|
|
|
|
2011-11-08 00:09:34 +05:30
|
|
|
TESTS_default = \
|
2009-01-08 17:19:20 +02:00
|
|
|
mainloop-test \
|
|
|
|
|
strlist-test \
|
|
|
|
|
close-test \
|
|
|
|
|
memblockq-test \
|
|
|
|
|
channelmap-test \
|
|
|
|
|
thread-mainloop-test \
|
|
|
|
|
utf8-test \
|
2011-04-13 14:05:18 +05:30
|
|
|
format-test \
|
2009-01-08 17:19:20 +02:00
|
|
|
get-binary-name-test \
|
|
|
|
|
ipacl-test \
|
|
|
|
|
hook-list-test \
|
|
|
|
|
memblock-test \
|
|
|
|
|
asyncq-test \
|
|
|
|
|
asyncmsgq-test \
|
|
|
|
|
queue-test \
|
|
|
|
|
rtpoll-test \
|
|
|
|
|
resampler-test \
|
|
|
|
|
smoother-test \
|
2011-10-04 14:12:20 +02:00
|
|
|
thread-test \
|
2011-10-04 14:08:05 +02:00
|
|
|
volume-test \
|
2009-01-08 17:19:20 +02:00
|
|
|
mix-test \
|
|
|
|
|
proplist-test \
|
2011-11-18 10:19:34 +01:00
|
|
|
lock-autospawn-test
|
2009-01-08 17:19:20 +02:00
|
|
|
|
2011-06-23 22:21:01 +02:00
|
|
|
TESTS_norun = \
|
2006-01-10 17:51:06 +00:00
|
|
|
mcalign-test \
|
2004-09-12 23:29:54 +00:00
|
|
|
pacat-simple \
|
|
|
|
|
parec-simple \
|
2007-10-28 19:13:50 +00:00
|
|
|
flist-test \
|
2011-10-04 14:12:20 +02:00
|
|
|
remix-test \
|
2008-05-15 23:34:41 +00:00
|
|
|
rtstutter \
|
2011-10-04 14:12:20 +02:00
|
|
|
sig2str-test \
|
2008-08-09 03:49:42 +02:00
|
|
|
stripnul \
|
2011-09-26 21:30:49 +05:30
|
|
|
echo-cancel-test
|
2011-01-06 02:10:45 +01:00
|
|
|
|
2011-11-08 00:09:34 +05:30
|
|
|
# These tests need a running pulseaudio daemon
|
|
|
|
|
TESTS_daemon = \
|
|
|
|
|
connect-stress \
|
2011-11-10 13:24:07 +05:30
|
|
|
extended-test \
|
|
|
|
|
interpol-test \
|
|
|
|
|
sync-playback
|
2011-11-08 00:09:34 +05:30
|
|
|
|
2011-01-06 02:10:45 +01:00
|
|
|
if !OS_IS_WIN32
|
2011-11-08 00:09:34 +05:30
|
|
|
TESTS_default += \
|
2009-08-21 16:02:57 -06:00
|
|
|
sigbus-test \
|
|
|
|
|
usergroup-test
|
2011-01-06 02:10:45 +01:00
|
|
|
endif
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2011-09-29 13:25:12 +02:00
|
|
|
if !OS_IS_DARWIN
|
2011-11-08 00:09:34 +05:30
|
|
|
TESTS_default += \
|
2011-09-29 13:25:12 +02:00
|
|
|
once-test
|
|
|
|
|
endif
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
if HAVE_SIGXCPU
|
2011-06-23 22:21:01 +02:00
|
|
|
TESTS_norun += \
|
2006-01-10 17:51:06 +00:00
|
|
|
cpulimit-test \
|
|
|
|
|
cpulimit-test2
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if HAVE_GLIB20
|
2011-11-08 00:09:34 +05:30
|
|
|
TESTS_default += \
|
2009-01-08 17:19:20 +02:00
|
|
|
mainloop-test-glib
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
|
|
|
|
|
2009-02-13 18:19:10 +01:00
|
|
|
if HAVE_GTK20
|
2011-06-23 22:21:01 +02:00
|
|
|
TESTS_norun += \
|
2009-02-13 18:19:10 +01:00
|
|
|
gtk-test
|
|
|
|
|
endif
|
|
|
|
|
|
2009-02-20 03:19:33 +01:00
|
|
|
if HAVE_ALSA
|
2011-06-23 22:21:01 +02:00
|
|
|
TESTS_norun += \
|
2009-02-20 03:19:33 +01:00
|
|
|
alsa-time-test
|
|
|
|
|
endif
|
|
|
|
|
|
2011-10-04 14:01:03 +02:00
|
|
|
TESTS_ENVIRONMENT=MAKE_CHECK=1
|
2011-11-08 00:09:34 +05:30
|
|
|
TESTS = $(TESTS_default)
|
2011-10-04 14:01:03 +02:00
|
|
|
|
2009-01-20 00:55:39 +01:00
|
|
|
if BUILD_TESTS_DEFAULT
|
2011-11-08 00:09:34 +05:30
|
|
|
noinst_PROGRAMS = $(TESTS_default) $(TESTS_norun) $(TESTS_daemon)
|
2009-01-20 00:55:39 +01:00
|
|
|
else
|
2011-11-08 00:09:34 +05:30
|
|
|
check_PROGRAMS = $(TESTS_default) $(TESTS_norun) $(TESTS_daemon)
|
2009-01-20 00:55:39 +01:00
|
|
|
endif
|
|
|
|
|
|
2011-11-08 00:09:34 +05:30
|
|
|
check-daemon:
|
|
|
|
|
$(MAKE) check TESTS="$(TESTS_daemon)"
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
mainloop_test_SOURCES = tests/mainloop-test.c
|
2006-01-10 17:51:06 +00:00
|
|
|
mainloop_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:25 +02:00
|
|
|
mainloop_test_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-01-10 17:51:06 +00:00
|
|
|
mainloop_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-04-30 23:34:17 +00:00
|
|
|
thread_mainloop_test_SOURCES = tests/thread-mainloop-test.c
|
|
|
|
|
thread_mainloop_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-28 14:27:08 +00:00
|
|
|
thread_mainloop_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-04-30 23:34:17 +00:00
|
|
|
thread_mainloop_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-05-16 00:46:03 +00:00
|
|
|
utf8_test_SOURCES = tests/utf8-test.c
|
|
|
|
|
utf8_test_CFLAGS = $(AM_CFLAGS)
|
2011-11-16 13:00:28 +01:00
|
|
|
utf8_test_LDADD = $(AM_LDADD) libpulse.la
|
2006-05-16 00:46:03 +00:00
|
|
|
utf8_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2011-04-13 14:05:18 +05:30
|
|
|
format_test_SOURCES = tests/format-test.c
|
|
|
|
|
format_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
format_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
|
|
|
|
format_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2007-05-29 17:24:48 +00:00
|
|
|
get_binary_name_test_SOURCES = tests/get-binary-name-test.c
|
2006-07-14 00:19:09 +00:00
|
|
|
get_binary_name_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:25 +02:00
|
|
|
get_binary_name_test_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-07-14 00:19:09 +00:00
|
|
|
get_binary_name_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
ipacl_test_SOURCES = tests/ipacl-test.c
|
2006-07-20 16:48:26 +00:00
|
|
|
ipacl_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
ipacl_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-07-20 16:48:26 +00:00
|
|
|
ipacl_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-08-12 23:35:44 +00:00
|
|
|
hook_list_test_SOURCES = tests/hook-list-test.c
|
|
|
|
|
hook_list_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
hook_list_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-08-12 23:35:44 +00:00
|
|
|
hook_list_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2007-05-29 17:24:48 +00:00
|
|
|
memblock_test_SOURCES = tests/memblock-test.c
|
2006-08-18 19:56:51 +00:00
|
|
|
memblock_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
memblock_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-05-29 17:24:48 +00:00
|
|
|
memblock_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2006-08-18 19:56:51 +00:00
|
|
|
|
2006-09-11 07:56:03 +00:00
|
|
|
thread_test_SOURCES = tests/thread-test.c
|
2006-08-29 19:51:14 +00:00
|
|
|
thread_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
thread_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-05-29 17:24:48 +00:00
|
|
|
thread_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2006-08-29 19:51:14 +00:00
|
|
|
|
2010-01-13 17:40:31 +01:00
|
|
|
once_test_SOURCES = tests/once-test.c
|
|
|
|
|
once_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
once_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2010-01-13 17:40:31 +01:00
|
|
|
once_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
flist_test_SOURCES = tests/flist-test.c
|
2006-09-09 23:56:58 +00:00
|
|
|
flist_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
flist_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-05-29 17:24:48 +00:00
|
|
|
flist_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2006-09-09 23:56:58 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
asyncq_test_SOURCES = tests/asyncq-test.c
|
|
|
|
|
asyncq_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
asyncq_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-10-28 19:13:50 +00:00
|
|
|
asyncq_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
|
|
|
|
asyncmsgq_test_SOURCES = tests/asyncmsgq-test.c
|
|
|
|
|
asyncmsgq_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
asyncmsgq_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-10-28 19:13:50 +00:00
|
|
|
asyncmsgq_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
|
|
|
|
queue_test_SOURCES = tests/queue-test.c
|
|
|
|
|
queue_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
queue_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-10-28 19:13:50 +00:00
|
|
|
queue_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
|
|
|
|
rtpoll_test_SOURCES = tests/rtpoll-test.c
|
|
|
|
|
rtpoll_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
rtpoll_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-10-28 19:13:50 +00:00
|
|
|
rtpoll_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
mcalign_test_SOURCES = tests/mcalign-test.c
|
2006-01-10 17:51:06 +00:00
|
|
|
mcalign_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
mcalign_test_LDADD = $(AM_LDADD) $(WINSOCK_LIBS) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-01-10 17:51:06 +00:00
|
|
|
mcalign_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
pacat_simple_SOURCES = tests/pacat-simple.c
|
2011-11-16 13:00:28 +01:00
|
|
|
pacat_simple_LDADD = $(AM_LDADD) libpulse.la libpulse-simple.la
|
2006-01-10 17:51:06 +00:00
|
|
|
pacat_simple_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
pacat_simple_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
parec_simple_SOURCES = tests/parec-simple.c
|
2011-11-16 13:00:28 +01:00
|
|
|
parec_simple_LDADD = $(AM_LDADD) libpulse.la libpulse-simple.la
|
2006-01-10 17:51:06 +00:00
|
|
|
parec_simple_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
parec_simple_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2011-03-02 10:51:56 +05:30
|
|
|
extended_test_SOURCES = tests/extended-test.c
|
2011-11-16 13:00:28 +01:00
|
|
|
extended_test_LDADD = $(AM_LDADD) libpulse.la
|
2011-03-02 10:51:56 +05:30
|
|
|
extended_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
extended_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
strlist_test_SOURCES = tests/strlist-test.c
|
2006-01-10 17:51:06 +00:00
|
|
|
strlist_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
strlist_test_LDADD = $(AM_LDADD) $(WINSOCK_LIBS) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-01-10 17:51:06 +00:00
|
|
|
strlist_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2008-05-18 19:12:59 +00:00
|
|
|
close_test_SOURCES = tests/close-test.c
|
|
|
|
|
close_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
close_test_LDADD = $(AM_LDADD) $(WINSOCK_LIBS) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2008-05-18 19:12:59 +00:00
|
|
|
close_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2011-10-04 14:08:05 +02:00
|
|
|
volume_test_SOURCES = tests/volume-test.c
|
|
|
|
|
volume_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
volume_test_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
|
|
|
|
volume_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-04-26 14:34:45 +00:00
|
|
|
channelmap_test_SOURCES = tests/channelmap-test.c
|
|
|
|
|
channelmap_test_CFLAGS = $(AM_CFLAGS)
|
2011-11-16 13:00:28 +01:00
|
|
|
channelmap_test_LDADD = $(AM_LDADD) libpulse.la
|
2006-04-26 14:34:45 +00:00
|
|
|
channelmap_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
cpulimit_test_SOURCES = tests/cpulimit-test.c daemon/cpulimit.c daemon/cpulimit.h
|
2006-01-10 17:51:06 +00:00
|
|
|
cpulimit_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
cpulimit_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-01-10 17:51:06 +00:00
|
|
|
cpulimit_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
cpulimit_test2_SOURCES = tests/cpulimit-test.c daemon/cpulimit.c daemon/cpulimit.h
|
2006-01-10 17:51:06 +00:00
|
|
|
cpulimit_test2_CFLAGS = $(AM_CFLAGS) -DTEST2
|
2010-11-26 18:38:26 +02:00
|
|
|
cpulimit_test2_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-01-10 17:51:06 +00:00
|
|
|
cpulimit_test2_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
|
|
|
|
mainloop_test_glib_SOURCES = $(mainloop_test_SOURCES)
|
|
|
|
|
mainloop_test_glib_CFLAGS = $(mainloop_test_CFLAGS) $(GLIB20_CFLAGS) -DGLIB_MAIN_LOOP
|
2006-06-19 21:53:48 +00:00
|
|
|
mainloop_test_glib_LDADD = $(mainloop_test_LDADD) $(GLIB20_LIBS) libpulse-mainloop-glib.la
|
2006-01-10 17:51:06 +00:00
|
|
|
mainloop_test_glib_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2004-06-11 00:33:43 +00:00
|
|
|
|
2006-05-17 20:09:57 +00:00
|
|
|
memblockq_test_SOURCES = tests/memblockq-test.c
|
2006-02-20 04:05:16 +00:00
|
|
|
memblockq_test_CFLAGS = $(AM_CFLAGS)
|
2010-11-26 18:38:26 +02:00
|
|
|
memblockq_test_LDADD = $(AM_LDADD) $(WINSOCK_LIBS) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2006-02-20 04:05:16 +00:00
|
|
|
memblockq_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
|
|
|
|
sync_playback_SOURCES = tests/sync-playback.c
|
2011-11-16 13:00:28 +01:00
|
|
|
sync_playback_LDADD = $(AM_LDADD) libpulse.la
|
2007-05-29 17:24:48 +00:00
|
|
|
sync_playback_CFLAGS = $(AM_CFLAGS)
|
2006-02-20 04:05:16 +00:00
|
|
|
sync_playback_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
interpol_test_SOURCES = tests/interpol-test.c
|
2011-11-16 13:00:28 +01:00
|
|
|
interpol_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-05-29 17:24:48 +00:00
|
|
|
interpol_test_CFLAGS = $(AM_CFLAGS)
|
2006-06-19 11:27:00 +00:00
|
|
|
interpol_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
sig2str_test_SOURCES = tests/sig2str-test.c
|
2010-11-26 18:38:26 +02:00
|
|
|
sig2str_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-10-28 19:13:50 +00:00
|
|
|
sig2str_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
sig2str_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
|
|
|
|
resampler_test_SOURCES = tests/resampler-test.c
|
2010-11-26 18:38:26 +02:00
|
|
|
resampler_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-09-02 03:17:34 +02:00
|
|
|
resampler_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
resampler_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2007-11-09 17:11:45 +00:00
|
|
|
mix_test_SOURCES = tests/mix-test.c
|
2010-11-26 18:38:26 +02:00
|
|
|
mix_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-09-02 03:17:34 +02:00
|
|
|
mix_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
mix_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2007-11-09 17:11:45 +00:00
|
|
|
|
2007-11-11 02:30:59 +00:00
|
|
|
remix_test_SOURCES = tests/remix-test.c
|
2010-11-26 18:38:26 +02:00
|
|
|
remix_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-09-02 03:17:34 +02:00
|
|
|
remix_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
remix_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2007-11-11 02:30:59 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
smoother_test_SOURCES = tests/smoother-test.c
|
2010-11-26 18:38:26 +02:00
|
|
|
smoother_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2007-10-28 19:13:50 +00:00
|
|
|
smoother_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
smoother_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2007-12-23 20:12:37 +00:00
|
|
|
proplist_test_SOURCES = tests/proplist-test.c
|
2010-11-26 18:38:26 +02:00
|
|
|
proplist_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-09-02 03:17:34 +02:00
|
|
|
proplist_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
proplist_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2007-12-23 20:12:37 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
rtstutter_SOURCES = tests/rtstutter.c
|
2010-11-26 18:38:26 +02:00
|
|
|
rtstutter_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-09-02 03:17:34 +02:00
|
|
|
rtstutter_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
rtstutter_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
stripnul_SOURCES = tests/stripnul.c
|
2010-11-26 18:38:26 +02:00
|
|
|
stripnul_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-09-02 03:17:34 +02:00
|
|
|
stripnul_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
stripnul_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2008-08-09 03:49:42 +02:00
|
|
|
lock_autospawn_test_SOURCES = tests/lock-autospawn-test.c
|
2010-11-26 18:38:26 +02:00
|
|
|
lock_autospawn_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-09-02 03:17:34 +02:00
|
|
|
lock_autospawn_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
lock_autospawn_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2008-08-09 03:49:42 +02:00
|
|
|
|
2009-04-21 21:33:32 +02:00
|
|
|
sigbus_test_SOURCES = tests/sigbus-test.c
|
2010-11-26 18:38:26 +02:00
|
|
|
sigbus_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-09-02 03:17:34 +02:00
|
|
|
sigbus_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
sigbus_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2009-04-21 21:33:32 +02:00
|
|
|
|
2009-02-13 18:19:10 +01:00
|
|
|
gtk_test_SOURCES = tests/gtk-test.c
|
2011-11-16 13:00:28 +01:00
|
|
|
gtk_test_LDADD = $(AM_LDADD) $(GTK20_LIBS) libpulse-mainloop-glib.la libpulse.la
|
2009-02-13 18:19:10 +01:00
|
|
|
gtk_test_CFLAGS = $(AM_CFLAGS) $(GTK20_CFLAGS)
|
2011-08-24 17:56:34 +05:30
|
|
|
gtk_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2009-02-13 18:19:10 +01:00
|
|
|
|
2009-02-20 03:19:33 +01:00
|
|
|
alsa_time_test_SOURCES = tests/alsa-time-test.c
|
2011-08-24 17:56:34 +05:30
|
|
|
alsa_time_test_LDADD = $(AM_LDADD) $(ASOUNDLIB_LIBS)
|
2009-02-20 03:19:33 +01:00
|
|
|
alsa_time_test_CFLAGS = $(AM_CFLAGS) $(ASOUNDLIB_CFLAGS)
|
2011-08-24 17:56:34 +05:30
|
|
|
alsa_time_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2009-02-20 03:19:33 +01:00
|
|
|
|
2009-08-21 16:02:57 -06:00
|
|
|
usergroup_test_SOURCES = tests/usergroup-test.c
|
2010-11-26 18:38:26 +02:00
|
|
|
usergroup_test_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-08-21 16:02:57 -06:00
|
|
|
usergroup_test_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
usergroup_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2011-03-31 14:37:40 +02:00
|
|
|
connect_stress_SOURCES = tests/connect-stress.c
|
2011-11-16 13:00:28 +01:00
|
|
|
connect_stress_LDADD = $(AM_LDADD) libpulse.la
|
2011-03-31 14:37:40 +02:00
|
|
|
connect_stress_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
connect_stress_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2011-09-26 21:30:49 +05:30
|
|
|
echo_cancel_test_SOURCES = $(module_echo_cancel_la_SOURCES)
|
|
|
|
|
nodist_echo_cancel_test_SOURCES = $(nodist_module_echo_cancel_la_SOURCES)
|
|
|
|
|
echo_cancel_test_LDADD = $(module_echo_cancel_la_LIBADD)
|
|
|
|
|
echo_cancel_test_CFLAGS = $(module_echo_cancel_la_CFLAGS) -DECHO_CANCEL_TEST=1
|
2011-10-17 17:09:24 +05:30
|
|
|
if HAVE_WEBRTC
|
2011-09-19 13:41:13 +05:30
|
|
|
echo_cancel_test_CXXFLAGS = $(module_echo_cancel_la_CXXFLAGS) -DECHO_CANCEL_TEST=1
|
2011-10-17 17:09:24 +05:30
|
|
|
endif
|
2011-09-26 21:30:49 +05:30
|
|
|
echo_cancel_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2011-03-31 14:37:40 +02:00
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
###################################
|
|
|
|
|
# Common library #
|
|
|
|
|
###################################
|
|
|
|
|
|
2012-02-15 21:54:28 +01:00
|
|
|
pkglib_LTLIBRARIES = \
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon-@PA_MAJORMINOR@.la
|
2008-10-21 23:55:33 +02:00
|
|
|
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_SOURCES = \
|
2008-10-22 20:36:21 +02:00
|
|
|
pulse/client-conf.c pulse/client-conf.h \
|
2009-03-05 04:33:40 +01:00
|
|
|
pulse/fork-detect.c pulse/fork-detect.h \
|
2012-03-12 09:05:52 +02:00
|
|
|
pulse/xmalloc.c pulse/xmalloc.h \
|
|
|
|
|
pulse/proplist.c pulse/proplist.h \
|
|
|
|
|
pulse/utf8.c pulse/utf8.h \
|
|
|
|
|
pulse/channelmap.c pulse/channelmap.h \
|
|
|
|
|
pulse/sample.c pulse/sample.h \
|
|
|
|
|
pulse/util.c pulse/util.h \
|
|
|
|
|
pulse/timeval.c pulse/timeval.h \
|
|
|
|
|
pulse/rtclock.c pulse/rtclock.h \
|
2009-01-08 12:45:56 +02:00
|
|
|
pulsecore/atomic.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/authkey.c pulsecore/authkey.h \
|
|
|
|
|
pulsecore/conf-parser.c pulsecore/conf-parser.h \
|
|
|
|
|
pulsecore/core-error.c pulsecore/core-error.h \
|
2009-04-04 23:19:53 +03:00
|
|
|
pulsecore/core-rtclock.c pulsecore/core-rtclock.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/core-util.c pulsecore/core-util.h \
|
2008-10-22 02:22:40 +02:00
|
|
|
pulsecore/creds.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/dynarray.c pulsecore/dynarray.h \
|
|
|
|
|
pulsecore/endianmacros.h \
|
|
|
|
|
pulsecore/flist.c pulsecore/flist.h \
|
|
|
|
|
pulsecore/hashmap.c pulsecore/hashmap.h \
|
2011-08-10 10:30:15 +02:00
|
|
|
pulsecore/i18n.c pulsecore/i18n.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/idxset.c pulsecore/idxset.h \
|
2011-03-01 16:06:19 +01:00
|
|
|
pulsecore/arpa-inet.c pulsecore/arpa-inet.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/iochannel.c pulsecore/iochannel.h \
|
|
|
|
|
pulsecore/ioline.c pulsecore/ioline.h \
|
2011-08-10 10:30:15 +02:00
|
|
|
pulsecore/ipacl.c pulsecore/ipacl.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/llist.h \
|
|
|
|
|
pulsecore/lock-autospawn.c pulsecore/lock-autospawn.h \
|
|
|
|
|
pulsecore/log.c pulsecore/log.h \
|
2009-01-23 23:58:36 +01:00
|
|
|
pulsecore/ratelimit.c pulsecore/ratelimit.h \
|
2011-11-02 21:54:12 +01:00
|
|
|
pulsecore/macro.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/mcalign.c pulsecore/mcalign.h \
|
|
|
|
|
pulsecore/memblock.c pulsecore/memblock.h \
|
|
|
|
|
pulsecore/memblockq.c pulsecore/memblockq.h \
|
|
|
|
|
pulsecore/memchunk.c pulsecore/memchunk.h \
|
|
|
|
|
pulsecore/native-common.h \
|
|
|
|
|
pulsecore/once.c pulsecore/once.h \
|
|
|
|
|
pulsecore/packet.c pulsecore/packet.h \
|
|
|
|
|
pulsecore/parseaddr.c pulsecore/parseaddr.h \
|
|
|
|
|
pulsecore/pdispatch.c pulsecore/pdispatch.h \
|
|
|
|
|
pulsecore/pid.c pulsecore/pid.h \
|
|
|
|
|
pulsecore/pipe.c pulsecore/pipe.h \
|
|
|
|
|
pulsecore/poll.c pulsecore/poll.h \
|
2009-04-21 22:56:08 +02:00
|
|
|
pulsecore/memtrap.c pulsecore/memtrap.h \
|
2009-04-22 19:10:09 +02:00
|
|
|
pulsecore/aupdate.c pulsecore/aupdate.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/proplist-util.c pulsecore/proplist-util.h \
|
|
|
|
|
pulsecore/pstream-util.c pulsecore/pstream-util.h \
|
|
|
|
|
pulsecore/pstream.c pulsecore/pstream.h \
|
|
|
|
|
pulsecore/queue.c pulsecore/queue.h \
|
|
|
|
|
pulsecore/random.c pulsecore/random.h \
|
2009-01-08 12:45:56 +02:00
|
|
|
pulsecore/refcnt.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/shm.c pulsecore/shm.h \
|
2009-01-27 00:44:45 +01:00
|
|
|
pulsecore/bitset.c pulsecore/bitset.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/socket-client.c pulsecore/socket-client.h \
|
|
|
|
|
pulsecore/socket-server.c pulsecore/socket-server.h \
|
|
|
|
|
pulsecore/socket-util.c pulsecore/socket-util.h \
|
|
|
|
|
pulsecore/strbuf.c pulsecore/strbuf.h \
|
|
|
|
|
pulsecore/strlist.c pulsecore/strlist.h \
|
|
|
|
|
pulsecore/tagstruct.c pulsecore/tagstruct.h \
|
|
|
|
|
pulsecore/time-smoother.c pulsecore/time-smoother.h \
|
|
|
|
|
pulsecore/tokenizer.c pulsecore/tokenizer.h \
|
2009-08-21 16:02:57 -06:00
|
|
|
pulsecore/usergroup.c pulsecore/usergroup.h \
|
2009-05-26 00:05:28 +02:00
|
|
|
pulsecore/sndfile-util.c pulsecore/sndfile-util.h \
|
2011-01-04 17:03:13 +01:00
|
|
|
pulsecore/socket.h
|
2008-10-21 23:55:33 +02:00
|
|
|
|
2011-10-17 09:42:25 +05:30
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_CFLAGS = $(AM_CFLAGS) $(LIBSNDFILE_CFLAGS)
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2011-10-17 09:42:25 +05:30
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_LIBADD = $(AM_LIBADD) $(LIBWRAP_LIBS) $(WINSOCK_LIBS) $(LTLIBICONV) $(LIBSNDFILE_LIBS)
|
2008-10-21 23:55:33 +02:00
|
|
|
|
2010-01-09 11:55:15 +02:00
|
|
|
if HAVE_X11
|
2011-06-23 22:21:01 +02:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_SOURCES += \
|
|
|
|
|
pulse/client-conf-x11.c pulse/client-conf-x11.h \
|
|
|
|
|
pulsecore/x11prop.c pulsecore/x11prop.h
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_CFLAGS += $(X11_CFLAGS)
|
|
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_LDFLAGS += $(X11_LIBS)
|
2010-01-09 11:55:15 +02:00
|
|
|
endif
|
|
|
|
|
|
2009-02-13 18:19:10 +01:00
|
|
|
# proplist-util.h uses these header files, but not the library itself!
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_CFLAGS += $(GLIB20_CFLAGS) $(GTK20_CFLAGS)
|
2009-02-13 18:19:10 +01:00
|
|
|
|
2008-10-22 02:22:40 +02:00
|
|
|
## Please note that libpulsecommon implicitly also depends on<
|
|
|
|
|
## libpulse! i.e. we have a cyclic dependancy here. Which is intended
|
|
|
|
|
## since libpulse only includes stable, official APIs, while
|
|
|
|
|
## libpulsecommon only includes unofficial APIs.
|
2008-10-21 23:55:33 +02:00
|
|
|
|
2008-10-22 20:36:21 +02:00
|
|
|
if OS_IS_WIN32
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_SOURCES += \
|
2008-10-22 20:36:21 +02:00
|
|
|
pulsecore/mutex-win32.c pulsecore/mutex.h \
|
|
|
|
|
pulsecore/thread-win32.c pulsecore/thread.h \
|
|
|
|
|
pulsecore/semaphore-win32.c pulsecore/semaphore.h
|
2009-09-16 09:24:27 +08:00
|
|
|
else !OS_IS_WIN32
|
|
|
|
|
if OS_IS_DARWIN
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_SOURCES += \
|
2009-09-16 09:24:27 +08:00
|
|
|
pulsecore/mutex-posix.c pulsecore/mutex.h \
|
|
|
|
|
pulsecore/thread-posix.c pulsecore/thread.h \
|
|
|
|
|
pulsecore/semaphore-osx.c pulsecore/semaphore.h
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_CFLAGS += "-I/Developer/Headers/FlatCarbon/"
|
|
|
|
|
#libpulsecommon_@PA_MAJORMINOR@_la_LDFLAGS += "-framework CoreServices"
|
2009-09-16 09:24:27 +08:00
|
|
|
else !OS_IS_DARWIN
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_SOURCES += \
|
2008-10-22 20:36:21 +02:00
|
|
|
pulsecore/mutex-posix.c pulsecore/mutex.h \
|
|
|
|
|
pulsecore/thread-posix.c pulsecore/thread.h \
|
|
|
|
|
pulsecore/semaphore-posix.c pulsecore/semaphore.h
|
2009-09-16 09:24:27 +08:00
|
|
|
endif !OS_IS_DARWIN
|
|
|
|
|
endif !OS_IS_WIN32
|
2008-10-22 20:36:21 +02:00
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
if HAVE_LIBASYNCNS
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_CFLAGS += $(LIBASYNCNS_CFLAGS)
|
|
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_LIBADD += $(LIBASYNCNS_LIBS)
|
2008-10-21 23:55:33 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if OS_IS_WIN32
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_SOURCES += pulsecore/dllmain.c
|
2008-10-21 23:55:33 +02:00
|
|
|
endif
|
|
|
|
|
|
2009-03-19 01:35:02 +02:00
|
|
|
if HAVE_DBUS
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_SOURCES += \
|
2009-06-24 21:49:45 +02:00
|
|
|
pulsecore/dbus-util.c pulsecore/dbus-util.h \
|
|
|
|
|
pulsecore/rtkit.c pulsecore/rtkit.h
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_CFLAGS += $(DBUS_CFLAGS)
|
|
|
|
|
libpulsecommon_@PA_MAJORMINOR@_la_LIBADD += $(DBUS_LIBS)
|
2009-03-19 01:35:02 +02:00
|
|
|
endif
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Client library #
|
|
|
|
|
###################################
|
2004-08-18 01:00:18 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
pulseinclude_HEADERS = \
|
|
|
|
|
pulse/cdecl.h \
|
|
|
|
|
pulse/channelmap.h \
|
|
|
|
|
pulse/context.h \
|
|
|
|
|
pulse/def.h \
|
|
|
|
|
pulse/error.h \
|
2009-06-27 22:08:07 +01:00
|
|
|
pulse/ext-device-manager.h \
|
2011-06-07 12:18:17 +02:00
|
|
|
pulse/ext-device-restore.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/ext-stream-restore.h \
|
2011-02-25 12:35:14 +05:30
|
|
|
pulse/format.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/gccmacro.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulse/introspect.h \
|
|
|
|
|
pulse/mainloop-api.h \
|
|
|
|
|
pulse/mainloop-signal.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/mainloop.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulse/operation.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/proplist.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulse/pulseaudio.h \
|
2009-04-05 02:13:43 +03:00
|
|
|
pulse/rtclock.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulse/sample.h \
|
|
|
|
|
pulse/scache.h \
|
|
|
|
|
pulse/simple.h \
|
|
|
|
|
pulse/stream.h \
|
|
|
|
|
pulse/subscribe.h \
|
|
|
|
|
pulse/thread-mainloop.h \
|
|
|
|
|
pulse/timeval.h \
|
|
|
|
|
pulse/utf8.h \
|
|
|
|
|
pulse/util.h \
|
|
|
|
|
pulse/version.h \
|
|
|
|
|
pulse/volume.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/xmalloc.h
|
2006-05-19 07:38:35 +00:00
|
|
|
|
2012-02-15 21:54:28 +01:00
|
|
|
lib_LTLIBRARIES = \
|
2006-06-19 21:53:48 +00:00
|
|
|
libpulse.la \
|
|
|
|
|
libpulse-simple.la
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
if HAVE_GLIB20
|
2008-10-21 23:55:33 +02:00
|
|
|
pulseinclude_HEADERS += \
|
|
|
|
|
pulse/glib-mainloop.h
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
lib_LTLIBRARIES += \
|
2006-06-19 21:53:48 +00:00
|
|
|
libpulse-mainloop-glib.la
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
# Public interface
|
2006-06-19 21:53:48 +00:00
|
|
|
libpulse_la_SOURCES = \
|
|
|
|
|
pulse/cdecl.h \
|
|
|
|
|
pulse/channelmap.c pulse/channelmap.h \
|
|
|
|
|
pulse/context.c pulse/context.h \
|
|
|
|
|
pulse/def.h \
|
|
|
|
|
pulse/error.c pulse/error.h \
|
2009-06-27 22:08:07 +01:00
|
|
|
pulse/ext-device-manager.c pulse/ext-device-manager.h \
|
2011-06-07 12:18:17 +02:00
|
|
|
pulse/ext-device-restore.c pulse/ext-device-restore.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/ext-stream-restore.c pulse/ext-stream-restore.h \
|
2011-09-04 20:40:21 +02:00
|
|
|
pulse/format.c pulse/format.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/gccmacro.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulse/internal.h \
|
|
|
|
|
pulse/introspect.c pulse/introspect.h \
|
|
|
|
|
pulse/mainloop-api.c pulse/mainloop-api.h \
|
|
|
|
|
pulse/mainloop-signal.c pulse/mainloop-signal.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/mainloop.c pulse/mainloop.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulse/operation.c pulse/operation.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/proplist.c pulse/proplist.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulse/pulseaudio.h \
|
2009-04-04 23:19:53 +03:00
|
|
|
pulse/rtclock.c pulse/rtclock.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulse/sample.c pulse/sample.h \
|
|
|
|
|
pulse/scache.c pulse/scache.h \
|
|
|
|
|
pulse/stream.c pulse/stream.h \
|
|
|
|
|
pulse/subscribe.c pulse/subscribe.h \
|
|
|
|
|
pulse/thread-mainloop.c pulse/thread-mainloop.h \
|
|
|
|
|
pulse/timeval.c pulse/timeval.h \
|
|
|
|
|
pulse/utf8.c pulse/utf8.h \
|
|
|
|
|
pulse/util.c pulse/util.h \
|
|
|
|
|
pulse/volume.c pulse/volume.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulse/xmalloc.c pulse/xmalloc.h
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2011-09-04 20:40:21 +02:00
|
|
|
libpulse_la_CFLAGS = $(AM_CFLAGS) $(LIBJSON_CFLAGS)
|
|
|
|
|
libpulse_la_LIBADD = $(AM_LIBADD) $(WINSOCK_LIBS) $(LTLIBICONV) $(LIBJSON_LIBS) libpulsecommon-@PA_MAJORMINOR@.la
|
2009-03-05 13:59:59 +01:00
|
|
|
libpulse_la_LDFLAGS = $(AM_LDFLAGS) $(VERSIONING_LDFLAGS) -version-info $(LIBPULSE_VERSION_INFO)
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2011-05-16 10:00:37 +00:00
|
|
|
if HAVE_DBUS
|
|
|
|
|
libpulse_la_CFLAGS += $(DBUS_CFLAGS)
|
|
|
|
|
libpulse_la_LIBADD += $(DBUS_LIBS)
|
|
|
|
|
endif
|
|
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
libpulse_simple_la_SOURCES = pulse/simple.c pulse/simple.h
|
2006-06-19 21:53:48 +00:00
|
|
|
libpulse_simple_la_CFLAGS = $(AM_CFLAGS)
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulse_simple_la_LIBADD = $(AM_LIBADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-03-05 13:59:59 +01:00
|
|
|
libpulse_simple_la_LDFLAGS = $(AM_LDFLAGS) $(VERSIONING_LDFLAGS) -version-info $(LIBPULSE_SIMPLE_VERSION_INFO)
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
libpulse_mainloop_glib_la_SOURCES = pulse/glib-mainloop.h pulse/glib-mainloop.c
|
2006-06-19 21:53:48 +00:00
|
|
|
libpulse_mainloop_glib_la_CFLAGS = $(AM_CFLAGS) $(GLIB20_CFLAGS)
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulse_mainloop_glib_la_LIBADD = $(AM_LIBADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la $(GLIB20_LIBS)
|
2009-03-05 13:59:59 +01:00
|
|
|
libpulse_mainloop_glib_la_LDFLAGS = $(AM_LDFLAGS) $(VERSIONING_LDFLAGS) -version-info $(LIBPULSE_MAINLOOP_GLIB_VERSION_INFO)
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-05-25 13:31:28 +00:00
|
|
|
###################################
|
|
|
|
|
# OSS emulation #
|
|
|
|
|
###################################
|
|
|
|
|
|
2009-08-08 01:53:15 +02:00
|
|
|
if HAVE_OSS_WRAPPER
|
2012-02-17 22:11:59 +01:00
|
|
|
padsplibdir = $(pkglibdir)
|
|
|
|
|
padsplib_LTLIBRARIES = libpulsedsp.la
|
2012-02-20 19:23:47 +05:30
|
|
|
bin_SCRIPTS += padsp
|
2012-02-15 21:59:17 +01:00
|
|
|
|
2012-02-20 19:23:47 +05:30
|
|
|
edit = @SED@ \
|
2012-02-15 21:59:17 +01:00
|
|
|
-e "s|@pkglibdir[@]|$(pkglibdir)|g"
|
|
|
|
|
|
2012-02-20 19:23:47 +05:30
|
|
|
padsp: utils/padsp.in
|
|
|
|
|
$(edit) $< > $@
|
2012-02-15 21:59:17 +01:00
|
|
|
|
2012-02-20 19:23:47 +05:30
|
|
|
CLEANFILES += padsp
|
2012-02-15 21:59:17 +01:00
|
|
|
|
2006-05-25 13:31:28 +00:00
|
|
|
endif
|
|
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
libpulsedsp_la_SOURCES = utils/padsp.c
|
2006-06-19 21:53:48 +00:00
|
|
|
libpulsedsp_la_CFLAGS = $(AM_CFLAGS)
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsedsp_la_LIBADD = $(AM_LIBADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
2009-01-08 14:55:33 +02:00
|
|
|
libpulsedsp_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version -disable-static
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Daemon core library #
|
|
|
|
|
###################################
|
|
|
|
|
|
2010-11-28 14:27:08 +00:00
|
|
|
lib_LTLIBRARIES += libpulsecore-@PA_MAJORMINOR@.la
|
2006-06-19 21:53:48 +00:00
|
|
|
|
2008-10-21 23:55:33 +02:00
|
|
|
# Pure core stuff
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_SOURCES = \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/asyncmsgq.c pulsecore/asyncmsgq.h \
|
|
|
|
|
pulsecore/asyncq.c pulsecore/asyncq.h \
|
2008-10-22 02:22:40 +02:00
|
|
|
pulsecore/auth-cookie.c pulsecore/auth-cookie.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/cli-command.c pulsecore/cli-command.h \
|
|
|
|
|
pulsecore/cli-text.c pulsecore/cli-text.h \
|
|
|
|
|
pulsecore/client.c pulsecore/client.h \
|
2009-01-15 18:29:16 +01:00
|
|
|
pulsecore/card.c pulsecore/card.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/core-scache.c pulsecore/core-scache.h \
|
|
|
|
|
pulsecore/core-subscribe.c pulsecore/core-subscribe.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/core.c pulsecore/core.h \
|
|
|
|
|
pulsecore/fdsem.c pulsecore/fdsem.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/g711.c pulsecore/g711.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/hook-list.c pulsecore/hook-list.h \
|
|
|
|
|
pulsecore/ltdl-helper.c pulsecore/ltdl-helper.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/modargs.c pulsecore/modargs.h \
|
|
|
|
|
pulsecore/modinfo.c pulsecore/modinfo.h \
|
|
|
|
|
pulsecore/module.c pulsecore/module.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/msgobject.c pulsecore/msgobject.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/namereg.c pulsecore/namereg.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/object.c pulsecore/object.h \
|
2006-07-28 22:52:28 +00:00
|
|
|
pulsecore/play-memblockq.c pulsecore/play-memblockq.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/play-memchunk.c pulsecore/play-memchunk.h \
|
2009-08-20 18:23:42 +02:00
|
|
|
pulsecore/remap.c pulsecore/remap.h \
|
2009-08-25 12:27:32 +02:00
|
|
|
pulsecore/remap_mmx.c pulsecore/remap_sse.c \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/resampler.c pulsecore/resampler.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/rtpoll.c pulsecore/rtpoll.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/sample-util.c pulsecore/sample-util.h \
|
2010-09-14 15:21:49 +05:30
|
|
|
pulsecore/cpu.h \
|
2009-08-24 04:02:08 +02:00
|
|
|
pulsecore/cpu-arm.c pulsecore/cpu-arm.h \
|
|
|
|
|
pulsecore/cpu-x86.c pulsecore/cpu-x86.h \
|
2010-10-25 17:59:08 +01:00
|
|
|
pulsecore/cpu-orc.c pulsecore/cpu-orc.h \
|
2009-08-24 04:02:08 +02:00
|
|
|
pulsecore/svolume_c.c pulsecore/svolume_arm.c \
|
2009-08-12 20:44:12 +02:00
|
|
|
pulsecore/svolume_mmx.c pulsecore/svolume_sse.c \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/sconv-s16be.c pulsecore/sconv-s16be.h \
|
|
|
|
|
pulsecore/sconv-s16le.c pulsecore/sconv-s16le.h \
|
2009-08-26 19:30:37 +02:00
|
|
|
pulsecore/sconv_sse.c \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/sconv.c pulsecore/sconv.h \
|
|
|
|
|
pulsecore/shared.c pulsecore/shared.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/sink-input.c pulsecore/sink-input.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/sink.c pulsecore/sink.h \
|
2011-11-25 15:17:12 +01:00
|
|
|
pulsecore/device-port.c pulsecore/device-port.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/sioman.c pulsecore/sioman.h \
|
|
|
|
|
pulsecore/sound-file-stream.c pulsecore/sound-file-stream.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/sound-file.c pulsecore/sound-file.h \
|
2006-06-19 21:53:48 +00:00
|
|
|
pulsecore/source-output.c pulsecore/source-output.h \
|
2008-10-21 23:55:33 +02:00
|
|
|
pulsecore/source.c pulsecore/source.h \
|
2007-11-11 23:18:19 +00:00
|
|
|
pulsecore/start-child.c pulsecore/start-child.h \
|
2007-10-28 19:13:50 +00:00
|
|
|
pulsecore/thread-mq.c pulsecore/thread-mq.h \
|
2009-05-14 01:24:26 +02:00
|
|
|
pulsecore/database.h
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2011-09-14 07:24:19 +05:30
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_CFLAGS = $(AM_CFLAGS) $(SERVER_CFLAGS) $(LIBSAMPLERATE_CFLAGS) $(LIBSPEEX_CFLAGS) $(LIBSNDFILE_CFLAGS) $(WINSOCK_CFLAGS)
|
2011-01-06 01:39:29 +01:00
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2011-01-25 11:57:30 +01:00
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_LIBADD = $(AM_LIBADD) $(LIBLTDL) $(LIBSAMPLERATE_LIBS) $(LIBSPEEX_LIBS) $(LIBSNDFILE_LIBS) $(WINSOCK_LIBS) $(LTLIBICONV) libpulsecommon-@PA_MAJORMINOR@.la libpulse.la libpulsecore-foreign.la
|
2006-02-20 23:40:49 +00:00
|
|
|
|
2010-10-25 17:59:08 +01:00
|
|
|
if HAVE_ORC
|
|
|
|
|
ORC_SOURCE += pulsecore/svolume
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_SOURCES += pulsecore/svolume_orc.c
|
|
|
|
|
nodist_libpulsecore_@PA_MAJORMINOR@_la_SOURCES = pulsecore/svolume-orc-gen.c pulsecore/svolume-orc-gen.h
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_CFLAGS += $(ORC_CFLAGS)
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_LIBADD += $(ORC_LIBS)
|
|
|
|
|
endif
|
|
|
|
|
|
2008-10-22 02:22:40 +02:00
|
|
|
if HAVE_X11
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_SOURCES += pulsecore/x11wrap.c pulsecore/x11wrap.h
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_CFLAGS += $(X11_CFLAGS)
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_LDFLAGS += $(X11_LIBS)
|
2008-10-22 02:22:40 +02:00
|
|
|
endif
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2009-03-19 01:35:02 +02:00
|
|
|
if HAVE_DBUS
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_SOURCES += \
|
2009-06-19 10:28:08 +03:00
|
|
|
pulsecore/dbus-shared.c pulsecore/dbus-shared.h \
|
2009-07-21 00:02:27 +03:00
|
|
|
pulsecore/protocol-dbus.c pulsecore/protocol-dbus.h
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_CFLAGS += $(DBUS_CFLAGS)
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_LIBADD += $(DBUS_LIBS)
|
2009-03-19 01:35:02 +02:00
|
|
|
endif
|
|
|
|
|
|
2009-05-14 01:24:26 +02:00
|
|
|
if HAVE_GDBM
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_SOURCES += pulsecore/database-gdbm.c
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_CFLAGS += $(GDBM_CFLAGS)
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_LIBADD += $(GDBM_LIBS)
|
2009-05-14 01:24:26 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if HAVE_TDB
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_SOURCES += pulsecore/database-tdb.c
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_CFLAGS += $(TDB_CFLAGS)
|
|
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_LIBADD += $(TDB_LIBS)
|
2009-05-14 01:24:26 +02:00
|
|
|
endif
|
|
|
|
|
|
2009-08-12 18:30:14 +03:00
|
|
|
if HAVE_SIMPLEDB
|
2010-11-28 14:27:08 +00:00
|
|
|
libpulsecore_@PA_MAJORMINOR@_la_SOURCES += pulsecore/database-simple.c
|
2009-08-12 18:30:14 +03:00
|
|
|
endif
|
2009-05-14 01:24:26 +02:00
|
|
|
|
2009-02-21 04:13:41 +01:00
|
|
|
# We split the foreign code off to not be annoyed by warnings we don't care about
|
|
|
|
|
noinst_LTLIBRARIES = libpulsecore-foreign.la
|
|
|
|
|
|
|
|
|
|
libpulsecore_foreign_la_SOURCES = \
|
|
|
|
|
pulsecore/ffmpeg/resample2.c pulsecore/ffmpeg/avcodec.h pulsecore/ffmpeg/dsputil.h
|
|
|
|
|
|
2009-03-04 22:07:41 +01:00
|
|
|
libpulsecore_foreign_la_CFLAGS = $(AM_CFLAGS) $(FOREIGN_CFLAGS)
|
2009-02-21 04:13:41 +01:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Plug-in support libraries #
|
|
|
|
|
###################################
|
|
|
|
|
|
2004-09-13 00:28:16 +00:00
|
|
|
### Warning! Due to an obscure bug in libtool/automake it is required
|
2006-05-16 15:29:58 +00:00
|
|
|
### that the libraries in modlibexec_LTLIBRARIES are specified in-order,
|
2004-09-13 00:28:16 +00:00
|
|
|
### i.e. libraries near the end of the list depend on libraries near
|
|
|
|
|
### the head, and not the other way!
|
|
|
|
|
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES = \
|
2004-07-03 23:35:12 +00:00
|
|
|
libcli.la \
|
|
|
|
|
libprotocol-cli.la \
|
|
|
|
|
libprotocol-simple.la \
|
2007-10-28 19:13:50 +00:00
|
|
|
libprotocol-http.la \
|
2011-12-08 16:06:50 +05:30
|
|
|
libprotocol-native.la
|
|
|
|
|
|
|
|
|
|
if HAVE_ESOUND
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
2007-10-28 19:13:50 +00:00
|
|
|
libprotocol-esound.la
|
2011-12-08 16:06:50 +05:30
|
|
|
endif
|
2006-04-18 13:36:59 +00:00
|
|
|
|
|
|
|
|
# We need to emulate sendmsg/recvmsg to support this on Win32
|
|
|
|
|
if !OS_IS_WIN32
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-04-14 23:49:12 +00:00
|
|
|
librtp.la
|
2006-04-18 13:36:59 +00:00
|
|
|
endif
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-07-13 15:54:13 +00:00
|
|
|
if HAVE_AVAHI
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
libavahi-wrap.la
|
|
|
|
|
endif
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
libprotocol_simple_la_SOURCES = pulsecore/protocol-simple.c pulsecore/protocol-simple.h
|
2011-01-06 01:39:29 +01:00
|
|
|
libprotocol_simple_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2010-11-28 14:27:08 +00:00
|
|
|
libprotocol_simple_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
libcli_la_SOURCES = pulsecore/cli.c pulsecore/cli.h
|
2011-01-06 01:39:29 +01:00
|
|
|
libcli_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2010-11-28 14:27:08 +00:00
|
|
|
libcli_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2004-11-11 21:18:33 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
libprotocol_cli_la_SOURCES = pulsecore/protocol-cli.c pulsecore/protocol-cli.h
|
2011-01-06 01:39:29 +01:00
|
|
|
libprotocol_cli_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2010-11-28 14:27:08 +00:00
|
|
|
libprotocol_cli_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la libcli.la
|
2004-06-19 18:51:30 +00:00
|
|
|
|
2009-04-29 23:22:08 +02:00
|
|
|
libprotocol_http_la_SOURCES = pulsecore/protocol-http.c pulsecore/protocol-http.h pulsecore/mime-type.c pulsecore/mime-type.h
|
2011-01-06 01:39:29 +01:00
|
|
|
libprotocol_http_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2010-11-28 14:27:08 +00:00
|
|
|
libprotocol_http_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2005-01-12 17:37:31 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
libprotocol_native_la_SOURCES = pulsecore/protocol-native.c pulsecore/protocol-native.h pulsecore/native-common.h
|
2011-09-14 07:24:19 +05:30
|
|
|
libprotocol_native_la_CFLAGS = $(AM_CFLAGS) $(SERVER_CFLAGS)
|
2011-01-06 01:39:29 +01:00
|
|
|
libprotocol_native_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2010-11-28 14:27:08 +00:00
|
|
|
libprotocol_native_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2011-06-08 17:24:16 +02:00
|
|
|
if HAVE_DBUS
|
|
|
|
|
libprotocol_native_la_CFLAGS += $(DBUS_CFLAGS)
|
|
|
|
|
libprotocol_native_la_LIBADD += $(DBUS_LIBS)
|
|
|
|
|
endif
|
2004-06-20 01:12:13 +00:00
|
|
|
|
2011-12-08 16:06:50 +05:30
|
|
|
if HAVE_ESOUND
|
2006-06-19 21:53:48 +00:00
|
|
|
libprotocol_esound_la_SOURCES = pulsecore/protocol-esound.c pulsecore/protocol-esound.h pulsecore/esound.h
|
2011-01-06 01:39:29 +01:00
|
|
|
libprotocol_esound_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2010-11-28 14:27:08 +00:00
|
|
|
libprotocol_esound_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2011-12-08 16:06:50 +05:30
|
|
|
endif
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2008-05-01 23:51:45 +00:00
|
|
|
librtp_la_SOURCES = \
|
|
|
|
|
modules/rtp/rtp.c modules/rtp/rtp.h \
|
|
|
|
|
modules/rtp/sdp.c modules/rtp/sdp.h \
|
|
|
|
|
modules/rtp/sap.c modules/rtp/sap.h \
|
2008-05-07 01:23:16 +00:00
|
|
|
modules/rtp/rtsp_client.c modules/rtp/rtsp_client.h \
|
2008-08-03 22:46:21 +01:00
|
|
|
modules/rtp/headerlist.c modules/rtp/headerlist.h
|
2011-01-06 01:39:29 +01:00
|
|
|
librtp_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2010-11-28 14:27:08 +00:00
|
|
|
librtp_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2008-08-03 22:46:21 +01:00
|
|
|
|
|
|
|
|
libraop_la_SOURCES = \
|
|
|
|
|
modules/raop/raop_client.c modules/raop/raop_client.h \
|
|
|
|
|
modules/raop/base64.c modules/raop/base64.h
|
2011-01-25 11:01:46 +01:00
|
|
|
libraop_la_CFLAGS = $(AM_CFLAGS) $(OPENSSL_CFLAGS) -I$(top_srcdir)/src/modules/rtp
|
2011-01-06 01:39:29 +01:00
|
|
|
libraop_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2010-11-28 14:27:08 +00:00
|
|
|
libraop_la_LIBADD = $(AM_LIBADD) $(OPENSSL_LIBS) libpulsecore-@PA_MAJORMINOR@.la librtp.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-07-13 15:54:13 +00:00
|
|
|
# Avahi
|
|
|
|
|
libavahi_wrap_la_SOURCES = pulsecore/avahi-wrap.c pulsecore/avahi-wrap.h
|
2011-01-06 01:39:29 +01:00
|
|
|
libavahi_wrap_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
|
2006-07-13 15:54:13 +00:00
|
|
|
libavahi_wrap_la_CFLAGS = $(AM_CFLAGS) $(AVAHI_CFLAGS)
|
2010-11-28 14:27:08 +00:00
|
|
|
libavahi_wrap_la_LIBADD = $(AM_LIBADD) $(AVAHI_CFLAGS) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2006-07-13 15:54:13 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Plug-in libraries #
|
|
|
|
|
###################################
|
|
|
|
|
|
2009-02-03 23:49:43 +00:00
|
|
|
if HAVE_DBUS
|
|
|
|
|
# Serveral module (e.g. libalsa-util.la)
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-console-kit.la
|
|
|
|
|
endif
|
|
|
|
|
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-01-10 17:51:06 +00:00
|
|
|
module-cli.la \
|
|
|
|
|
module-cli-protocol-tcp.la \
|
|
|
|
|
module-simple-protocol-tcp.la \
|
|
|
|
|
module-null-sink.la \
|
2011-04-27 14:50:00 +03:00
|
|
|
module-null-source.la \
|
2009-01-08 21:17:58 +01:00
|
|
|
module-sine-source.la \
|
2006-05-15 12:45:55 +00:00
|
|
|
module-detect.la \
|
2006-08-13 17:34:36 +00:00
|
|
|
module-volume-restore.la \
|
2009-06-27 22:09:00 +01:00
|
|
|
module-device-manager.la \
|
2008-05-15 23:34:41 +00:00
|
|
|
module-device-restore.la \
|
2008-08-03 23:23:13 +02:00
|
|
|
module-stream-restore.la \
|
2009-01-21 02:49:42 +01:00
|
|
|
module-card-restore.la \
|
2007-10-28 19:13:50 +00:00
|
|
|
module-default-device-restore.la \
|
2008-06-11 19:45:57 +00:00
|
|
|
module-always-sink.la \
|
2007-10-28 19:13:50 +00:00
|
|
|
module-rescue-streams.la \
|
2009-06-22 22:34:57 +02:00
|
|
|
module-intended-roles.la \
|
2007-10-28 19:13:50 +00:00
|
|
|
module-suspend-on-idle.la \
|
2010-08-23 16:38:47 +02:00
|
|
|
module-echo-cancel.la \
|
2007-10-28 19:13:50 +00:00
|
|
|
module-http-protocol-tcp.la \
|
|
|
|
|
module-sine.la \
|
|
|
|
|
module-native-protocol-tcp.la \
|
|
|
|
|
module-native-protocol-fd.la \
|
|
|
|
|
module-combine.la \
|
2011-04-29 16:40:50 +01:00
|
|
|
module-combine-sink.la \
|
2007-10-28 19:13:50 +00:00
|
|
|
module-remap-sink.la \
|
|
|
|
|
module-ladspa-sink.la \
|
2007-10-29 16:54:16 +00:00
|
|
|
module-tunnel-sink.la \
|
2008-06-11 00:38:19 +00:00
|
|
|
module-tunnel-source.la \
|
2009-02-05 04:14:30 +01:00
|
|
|
module-position-event-sounds.la \
|
2009-02-12 03:19:40 +01:00
|
|
|
module-augment-properties.la \
|
2011-10-24 22:55:45 +02:00
|
|
|
module-role-cork.la \
|
2010-02-11 15:46:41 -06:00
|
|
|
module-loopback.la \
|
|
|
|
|
module-virtual-sink.la \
|
2011-04-03 13:42:44 +01:00
|
|
|
module-virtual-source.la \
|
2012-01-08 21:22:35 +01:00
|
|
|
module-virtual-surround-sink.la \
|
2011-04-14 13:04:03 +02:00
|
|
|
module-switch-on-connect.la \
|
2012-02-23 07:17:04 +01:00
|
|
|
module-switch-on-port-available.la \
|
2011-04-14 13:05:45 +02:00
|
|
|
module-filter-apply.la \
|
|
|
|
|
module-filter-heuristics.la
|
2006-04-18 13:36:59 +00:00
|
|
|
|
2011-12-08 16:06:50 +05:30
|
|
|
if HAVE_ESOUND
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-esound-protocol-tcp.la \
|
|
|
|
|
module-esound-sink.la
|
|
|
|
|
endif
|
|
|
|
|
|
2006-04-18 13:36:59 +00:00
|
|
|
# See comment at librtp.la above
|
|
|
|
|
if !OS_IS_WIN32
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-04-16 10:56:45 +00:00
|
|
|
module-rtp-send.la \
|
2006-04-16 00:16:53 +00:00
|
|
|
module-rtp-recv.la
|
2006-04-18 13:36:59 +00:00
|
|
|
endif
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
if HAVE_AF_UNIX
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-01-10 17:51:06 +00:00
|
|
|
module-cli-protocol-unix.la \
|
|
|
|
|
module-simple-protocol-unix.la \
|
2007-10-28 19:13:50 +00:00
|
|
|
module-http-protocol-unix.la \
|
2011-12-08 16:06:50 +05:30
|
|
|
module-native-protocol-unix.la
|
|
|
|
|
if HAVE_ESOUND
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
2007-10-28 19:13:50 +00:00
|
|
|
module-esound-protocol-unix.la
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
2011-12-08 16:06:50 +05:30
|
|
|
endif
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
if HAVE_MKFIFO
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-01-10 17:51:06 +00:00
|
|
|
module-pipe-sink.la \
|
|
|
|
|
module-pipe-source.la
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if !OS_IS_WIN32
|
2011-12-08 16:06:50 +05:30
|
|
|
if HAVE_ESOUND
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-01-10 17:51:06 +00:00
|
|
|
module-esound-compat-spawnfd.la \
|
|
|
|
|
module-esound-compat-spawnpid.la
|
|
|
|
|
endif
|
2011-12-08 16:06:50 +05:30
|
|
|
endif
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
if HAVE_REGEX
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-05-15 12:45:55 +00:00
|
|
|
module-match.la
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if HAVE_X11
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-01-10 17:51:06 +00:00
|
|
|
module-x11-bell.la \
|
2007-10-28 19:13:50 +00:00
|
|
|
module-x11-publish.la \
|
2009-02-13 02:39:07 +01:00
|
|
|
module-x11-xsmp.la \
|
|
|
|
|
module-x11-cork-request.la
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
|
|
|
|
|
2009-08-08 01:53:15 +02:00
|
|
|
if HAVE_OSS_OUTPUT
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-02-17 09:12:06 +00:00
|
|
|
liboss-util.la \
|
2007-10-28 19:13:50 +00:00
|
|
|
module-oss.la
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
|
|
|
|
|
2009-09-22 11:10:26 +08:00
|
|
|
if HAVE_COREAUDIO
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
2009-09-22 11:27:57 +08:00
|
|
|
module-coreaudio-detect.la \
|
|
|
|
|
module-coreaudio-device.la
|
2009-09-22 11:10:26 +08:00
|
|
|
endif
|
|
|
|
|
|
2009-02-20 03:19:33 +01:00
|
|
|
pulselibexec_PROGRAMS =
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
if HAVE_ALSA
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-02-17 09:12:06 +00:00
|
|
|
libalsa-util.la \
|
2006-01-10 17:51:06 +00:00
|
|
|
module-alsa-sink.la \
|
2009-01-16 23:33:15 +01:00
|
|
|
module-alsa-source.la \
|
|
|
|
|
module-alsa-card.la
|
2009-06-17 03:45:14 +02:00
|
|
|
|
2009-11-21 00:53:00 +01:00
|
|
|
dist_alsaprofilesets_DATA = \
|
|
|
|
|
modules/alsa/mixer/profile-sets/default.conf \
|
2012-02-23 07:17:03 +01:00
|
|
|
modules/alsa/mixer/profile-sets/extra-hdmi.conf \
|
2012-05-03 15:39:18 +02:00
|
|
|
modules/alsa/mixer/profile-sets/force-speaker.conf \
|
|
|
|
|
modules/alsa/mixer/profile-sets/force-speaker-and-int-mic.conf \
|
2010-02-19 00:23:17 -05:00
|
|
|
modules/alsa/mixer/profile-sets/maudio-fasttrack-pro.conf \
|
2009-11-21 00:53:00 +01:00
|
|
|
modules/alsa/mixer/profile-sets/native-instruments-audio4dj.conf \
|
2010-09-11 10:06:00 +08:00
|
|
|
modules/alsa/mixer/profile-sets/native-instruments-audio8dj.conf \
|
2011-03-14 15:59:25 +01:00
|
|
|
modules/alsa/mixer/profile-sets/native-instruments-traktor-audio6.conf \
|
|
|
|
|
modules/alsa/mixer/profile-sets/native-instruments-traktor-audio10.conf \
|
2010-10-15 18:18:43 +02:00
|
|
|
modules/alsa/mixer/profile-sets/native-instruments-traktorkontrol-s4.conf \
|
2011-09-09 19:55:09 +01:00
|
|
|
modules/alsa/mixer/profile-sets/native-instruments-korecontroller.conf \
|
|
|
|
|
modules/alsa/mixer/profile-sets/kinect-audio.conf
|
2009-06-18 03:58:05 +02:00
|
|
|
|
2009-06-27 12:29:40 +01:00
|
|
|
if HAVE_UDEV
|
2009-11-21 00:53:00 +01:00
|
|
|
dist_udevrules_DATA = \
|
2009-06-18 23:03:28 +02:00
|
|
|
modules/alsa/mixer/profile-sets/90-pulseaudio.rules
|
2009-06-27 12:29:40 +01:00
|
|
|
endif
|
2009-06-17 03:45:14 +02:00
|
|
|
|
2009-11-21 00:53:00 +01:00
|
|
|
dist_alsapaths_DATA = \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input-aux.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input.conf.common \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input-fm.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input-linein.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input-mic.conf \
|
2011-01-05 13:27:53 +01:00
|
|
|
modules/alsa/mixer/paths/analog-input-dock-mic.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input-front-mic.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input-internal-mic.conf \
|
2012-05-03 15:39:18 +02:00
|
|
|
modules/alsa/mixer/paths/analog-input-internal-mic-always.conf \
|
2011-01-05 13:27:53 +01:00
|
|
|
modules/alsa/mixer/paths/analog-input-rear-mic.conf \
|
2009-11-21 00:53:00 +01:00
|
|
|
modules/alsa/mixer/paths/analog-input-mic.conf.common \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input-mic-line.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input-tvtuner.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-input-video.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-output.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-output-speaker.conf \
|
2012-05-03 15:39:18 +02:00
|
|
|
modules/alsa/mixer/paths/analog-output-speaker-always.conf \
|
2009-11-21 00:53:00 +01:00
|
|
|
modules/alsa/mixer/paths/analog-output.conf.common \
|
2010-02-19 00:23:17 -05:00
|
|
|
modules/alsa/mixer/paths/analog-output-desktop-speaker.conf \
|
2009-11-21 00:53:00 +01:00
|
|
|
modules/alsa/mixer/paths/analog-output-headphones.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-output-headphones-2.conf \
|
|
|
|
|
modules/alsa/mixer/paths/analog-output-lfe-on-mono.conf \
|
2010-07-12 12:24:22 -05:00
|
|
|
modules/alsa/mixer/paths/analog-output-mono.conf \
|
2012-02-23 07:17:03 +01:00
|
|
|
modules/alsa/mixer/paths/iec958-stereo-output.conf \
|
|
|
|
|
modules/alsa/mixer/paths/hdmi-output-0.conf \
|
|
|
|
|
modules/alsa/mixer/paths/hdmi-output-1.conf \
|
|
|
|
|
modules/alsa/mixer/paths/hdmi-output-2.conf \
|
|
|
|
|
modules/alsa/mixer/paths/hdmi-output-3.conf
|
2009-06-17 03:45:14 +02:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if HAVE_SOLARIS
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-01-10 17:51:06 +00:00
|
|
|
module-solaris.la
|
|
|
|
|
endif
|
|
|
|
|
|
2006-07-13 17:33:44 +00:00
|
|
|
if HAVE_AVAHI
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2007-10-29 20:03:49 +00:00
|
|
|
module-zeroconf-publish.la \
|
|
|
|
|
module-zeroconf-discover.la
|
2006-01-10 17:51:06 +00:00
|
|
|
endif
|
|
|
|
|
|
2009-12-10 10:32:57 +08:00
|
|
|
if HAVE_BONJOUR
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-bonjour-publish.la
|
|
|
|
|
endif
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
if HAVE_LIRC
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-01-10 17:51:06 +00:00
|
|
|
module-lirc.la
|
|
|
|
|
endif
|
|
|
|
|
|
2012-02-26 15:34:09 -08:00
|
|
|
if HAVE_XEN
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-xenpv-sink.la
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
if HAVE_EVDEV
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-01-10 17:51:06 +00:00
|
|
|
module-mmkbd-evdev.la
|
|
|
|
|
endif
|
|
|
|
|
|
2006-04-17 00:11:04 +00:00
|
|
|
if HAVE_JACK
|
2006-05-16 15:29:58 +00:00
|
|
|
modlibexec_LTLIBRARIES += \
|
2006-04-18 17:19:41 +00:00
|
|
|
module-jack-sink.la \
|
|
|
|
|
module-jack-source.la
|
2010-11-30 04:59:27 +01:00
|
|
|
|
|
|
|
|
if HAVE_DBUS
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-jackdbus-detect.la
|
|
|
|
|
endif
|
|
|
|
|
|
2006-04-17 00:11:04 +00:00
|
|
|
endif
|
|
|
|
|
|
2006-07-26 17:36:14 +00:00
|
|
|
if HAVE_GCONF
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-gconf.la
|
|
|
|
|
|
2007-11-11 23:18:19 +00:00
|
|
|
pulselibexec_PROGRAMS += \
|
2006-07-26 17:36:14 +00:00
|
|
|
gconf-helper
|
|
|
|
|
endif
|
|
|
|
|
|
2011-02-17 11:28:54 +01:00
|
|
|
if HAVE_WAVEOUT
|
2011-01-12 15:02:18 +01:00
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-waveout.la
|
|
|
|
|
endif
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2009-08-11 23:04:35 +02:00
|
|
|
if HAVE_HAL_COMPAT
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-hal-detect.la
|
|
|
|
|
endif
|
|
|
|
|
|
2009-06-06 03:26:07 +02:00
|
|
|
if HAVE_UDEV
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-udev-detect.la
|
|
|
|
|
endif
|
|
|
|
|
|
2012-03-17 01:52:41 +01:00
|
|
|
if HAVE_SYSTEMD
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-systemd-login.la
|
|
|
|
|
endif
|
|
|
|
|
|
2009-04-29 23:23:25 +02:00
|
|
|
if HAVE_DBUS
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
2009-06-03 15:21:50 +03:00
|
|
|
module-rygel-media-server.la \
|
|
|
|
|
module-dbus-protocol.la
|
2009-04-29 23:23:25 +02:00
|
|
|
endif
|
|
|
|
|
|
2007-11-11 23:18:19 +00:00
|
|
|
if HAVE_BLUEZ
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
2009-02-03 23:49:43 +00:00
|
|
|
libbluetooth-util.la \
|
2008-08-31 09:22:36 -03:00
|
|
|
module-bluetooth-proximity.la \
|
2008-08-29 20:22:14 -03:00
|
|
|
module-bluetooth-discover.la \
|
|
|
|
|
libbluetooth-ipc.la \
|
2009-02-02 01:58:48 +01:00
|
|
|
libbluetooth-sbc.la \
|
|
|
|
|
module-bluetooth-device.la
|
2007-11-11 23:18:19 +00:00
|
|
|
|
|
|
|
|
pulselibexec_PROGRAMS += \
|
2008-08-31 09:22:36 -03:00
|
|
|
proximity-helper
|
2007-11-11 23:18:19 +00:00
|
|
|
endif
|
|
|
|
|
|
2008-08-03 22:46:21 +01:00
|
|
|
if HAVE_OPENSSL
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
libraop.la \
|
|
|
|
|
module-raop-sink.la
|
|
|
|
|
if HAVE_AVAHI
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-raop-discover.la
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2011-06-30 11:58:30 +01:00
|
|
|
if HAVE_DBUS
|
2009-10-07 19:30:11 +02:00
|
|
|
if HAVE_FFTW
|
|
|
|
|
modlibexec_LTLIBRARIES += \
|
|
|
|
|
module-equalizer-sink.la
|
2009-11-20 15:34:02 -08:00
|
|
|
bin_SCRIPTS += utils/qpaeq
|
2009-10-07 19:30:11 +02:00
|
|
|
endif
|
2011-06-30 11:58:30 +01:00
|
|
|
endif
|
2009-10-07 19:30:11 +02:00
|
|
|
|
2009-02-02 00:23:21 +01:00
|
|
|
# These are generated by an M4 script
|
2006-01-10 17:51:06 +00:00
|
|
|
SYMDEF_FILES = \
|
2011-01-25 11:01:46 +01:00
|
|
|
module-cli-symdef.h \
|
|
|
|
|
module-cli-protocol-tcp-symdef.h \
|
|
|
|
|
module-cli-protocol-unix-symdef.h \
|
|
|
|
|
module-pipe-sink-symdef.h \
|
|
|
|
|
module-pipe-source-symdef.h \
|
|
|
|
|
module-simple-protocol-tcp-symdef.h \
|
|
|
|
|
module-simple-protocol-unix-symdef.h \
|
|
|
|
|
module-native-protocol-tcp-symdef.h \
|
|
|
|
|
module-native-protocol-unix-symdef.h \
|
|
|
|
|
module-native-protocol-fd-symdef.h \
|
|
|
|
|
module-sine-symdef.h \
|
|
|
|
|
module-combine-symdef.h \
|
2011-04-29 16:40:50 +01:00
|
|
|
module-combine-sink-symdef.h \
|
2011-01-25 11:01:46 +01:00
|
|
|
module-remap-sink-symdef.h \
|
|
|
|
|
module-ladspa-sink-symdef.h \
|
|
|
|
|
module-equalizer-sink-symdef.h \
|
|
|
|
|
module-match-symdef.h \
|
|
|
|
|
module-tunnel-sink-symdef.h \
|
|
|
|
|
module-tunnel-source-symdef.h \
|
|
|
|
|
module-null-sink-symdef.h \
|
2011-04-27 14:50:00 +03:00
|
|
|
module-null-source-symdef.h \
|
2011-01-25 11:01:46 +01:00
|
|
|
module-sine-source-symdef.h \
|
|
|
|
|
module-zeroconf-publish-symdef.h \
|
|
|
|
|
module-zeroconf-discover-symdef.h \
|
|
|
|
|
module-bonjour-publish-symdef.h \
|
|
|
|
|
module-lirc-symdef.h \
|
2012-02-26 15:34:09 -08:00
|
|
|
module-xenpv-sink-symdef.h \
|
2011-01-25 11:01:46 +01:00
|
|
|
module-mmkbd-evdev-symdef.h \
|
|
|
|
|
module-http-protocol-tcp-symdef.h \
|
|
|
|
|
module-http-protocol-unix-symdef.h \
|
|
|
|
|
module-rygel-media-server-symdef.h \
|
|
|
|
|
module-x11-bell-symdef.h \
|
|
|
|
|
module-x11-publish-symdef.h \
|
|
|
|
|
module-x11-xsmp-symdef.h \
|
|
|
|
|
module-x11-cork-request-symdef.h \
|
|
|
|
|
module-oss-symdef.h \
|
|
|
|
|
module-alsa-sink-symdef.h \
|
|
|
|
|
module-alsa-source-symdef.h \
|
|
|
|
|
module-alsa-card-symdef.h \
|
|
|
|
|
module-coreaudio-detect-symdef.h \
|
|
|
|
|
module-coreaudio-device-symdef.h \
|
|
|
|
|
module-solaris-symdef.h \
|
|
|
|
|
module-waveout-symdef.h \
|
|
|
|
|
module-detect-symdef.h \
|
|
|
|
|
module-rtp-send-symdef.h \
|
|
|
|
|
module-rtp-recv-symdef.h \
|
|
|
|
|
module-jackdbus-detect-symdef.h \
|
|
|
|
|
module-jack-sink-symdef.h \
|
|
|
|
|
module-jack-source-symdef.h \
|
|
|
|
|
module-volume-restore-symdef.h \
|
|
|
|
|
module-device-manager-symdef.h \
|
|
|
|
|
module-device-restore-symdef.h \
|
|
|
|
|
module-stream-restore-symdef.h \
|
|
|
|
|
module-card-restore-symdef.h \
|
|
|
|
|
module-default-device-restore-symdef.h \
|
|
|
|
|
module-always-sink-symdef.h \
|
|
|
|
|
module-rescue-streams-symdef.h \
|
|
|
|
|
module-intended-roles-symdef.h \
|
|
|
|
|
module-suspend-on-idle-symdef.h \
|
|
|
|
|
module-echo-cancel-symdef.h \
|
|
|
|
|
module-hal-detect-symdef.h \
|
|
|
|
|
module-udev-detect-symdef.h \
|
2012-03-17 01:52:41 +01:00
|
|
|
module-systemd-login-symdef.h \
|
2011-01-25 11:01:46 +01:00
|
|
|
module-bluetooth-proximity-symdef.h \
|
|
|
|
|
module-bluetooth-discover-symdef.h \
|
|
|
|
|
module-bluetooth-device-symdef.h \
|
|
|
|
|
module-raop-sink-symdef.h \
|
|
|
|
|
module-raop-discover-symdef.h \
|
|
|
|
|
module-gconf-symdef.h \
|
|
|
|
|
module-position-event-sounds-symdef.h \
|
|
|
|
|
module-augment-properties-symdef.h \
|
2011-10-24 22:55:45 +02:00
|
|
|
module-role-cork-symdef.h \
|
2011-01-25 11:01:46 +01:00
|
|
|
module-console-kit-symdef.h \
|
|
|
|
|
module-dbus-protocol-symdef.h \
|
|
|
|
|
module-loopback-symdef.h \
|
|
|
|
|
module-virtual-sink-symdef.h \
|
2011-04-03 13:42:44 +01:00
|
|
|
module-virtual-source-symdef.h \
|
2012-01-08 21:22:35 +01:00
|
|
|
module-virtual-surround-sink-symdef.h \
|
2011-04-14 13:04:03 +02:00
|
|
|
module-switch-on-connect-symdef.h \
|
2012-02-23 07:17:04 +01:00
|
|
|
module-switch-on-port-available-symdef.h \
|
2011-04-14 13:05:45 +02:00
|
|
|
module-filter-apply-symdef.h \
|
|
|
|
|
module-filter-heuristics-symdef.h
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2011-12-08 16:06:50 +05:30
|
|
|
if HAVE_ESOUND
|
|
|
|
|
SYMDEF_FILES += \
|
|
|
|
|
module-esound-protocol-tcp-symdef.h \
|
|
|
|
|
module-esound-protocol-unix-symdef.h \
|
|
|
|
|
module-esound-compat-spawnfd-symdef.h \
|
|
|
|
|
module-esound-compat-spawnpid-symdef.h \
|
|
|
|
|
module-esound-sink-symdef.h
|
|
|
|
|
endif
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
EXTRA_DIST += $(SYMDEF_FILES)
|
2010-10-19 09:59:45 +05:30
|
|
|
BUILT_SOURCES += $(SYMDEF_FILES) builddirs
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-09-02 14:59:12 +00:00
|
|
|
$(SYMDEF_FILES): modules/module-defs.h.m4
|
2011-01-25 11:01:46 +01:00
|
|
|
$(AM_V_at)$(MKDIR_P) modules
|
|
|
|
|
$(AM_V_GEN)$(M4) -Dfname="$@" $< > $@
|
|
|
|
|
|
|
|
|
|
.PHONY: builddirs
|
|
|
|
|
builddirs:
|
2011-03-14 16:31:00 +00:00
|
|
|
$(AM_V_at)$(MKDIR_P) daemon modules
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
# Simple protocol
|
2004-07-11 01:09:46 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_simple_protocol_tcp_la_SOURCES = modules/module-protocol-stub.c
|
2004-06-19 18:51:30 +00:00
|
|
|
module_simple_protocol_tcp_la_CFLAGS = -DUSE_TCP_SOCKETS -DUSE_PROTOCOL_SIMPLE $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_simple_protocol_tcp_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_simple_protocol_tcp_la_LIBADD = $(MODULE_LIBADD) libprotocol-simple.la
|
2004-06-11 00:33:43 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_simple_protocol_unix_la_SOURCES = modules/module-protocol-stub.c
|
2004-06-19 18:51:30 +00:00
|
|
|
module_simple_protocol_unix_la_CFLAGS = -DUSE_UNIX_SOCKETS -DUSE_PROTOCOL_SIMPLE $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_simple_protocol_unix_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_simple_protocol_unix_la_LIBADD = $(MODULE_LIBADD) libprotocol-simple.la
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
# CLI protocol
|
|
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_cli_la_SOURCES = modules/module-cli.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_cli_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_cli_la_LIBADD = $(MODULE_LIBADD) libcli.la
|
2004-06-19 18:41:24 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_cli_protocol_tcp_la_SOURCES = modules/module-protocol-stub.c
|
2004-06-19 18:51:30 +00:00
|
|
|
module_cli_protocol_tcp_la_CFLAGS = -DUSE_TCP_SOCKETS -DUSE_PROTOCOL_CLI $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_cli_protocol_tcp_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_cli_protocol_tcp_la_LIBADD = $(MODULE_LIBADD) libprotocol-cli.la
|
2004-06-19 18:51:30 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_cli_protocol_unix_la_SOURCES = modules/module-protocol-stub.c
|
2004-06-20 01:12:13 +00:00
|
|
|
module_cli_protocol_unix_la_CFLAGS = -DUSE_UNIX_SOCKETS -DUSE_PROTOCOL_CLI $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_cli_protocol_unix_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_cli_protocol_unix_la_LIBADD = $(MODULE_LIBADD) libprotocol-cli.la
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
# HTTP protocol
|
2004-06-20 01:12:13 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_http_protocol_tcp_la_SOURCES = modules/module-protocol-stub.c
|
2005-01-12 17:37:31 +00:00
|
|
|
module_http_protocol_tcp_la_CFLAGS = -DUSE_TCP_SOCKETS -DUSE_PROTOCOL_HTTP $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_http_protocol_tcp_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_http_protocol_tcp_la_LIBADD = $(MODULE_LIBADD) libprotocol-http.la
|
2005-01-12 17:37:31 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_http_protocol_unix_la_SOURCES = modules/module-protocol-stub.c
|
2005-01-12 17:37:31 +00:00
|
|
|
module_http_protocol_unix_la_CFLAGS = -DUSE_UNIX_SOCKETS -DUSE_PROTOCOL_HTTP $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_http_protocol_unix_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_http_protocol_unix_la_LIBADD = $(MODULE_LIBADD) libprotocol-http.la
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2009-06-03 15:21:50 +03:00
|
|
|
# D-Bus protocol
|
|
|
|
|
|
2009-06-19 10:28:08 +03:00
|
|
|
module_dbus_protocol_la_SOURCES = \
|
2009-07-21 00:02:27 +03:00
|
|
|
modules/dbus/iface-card.c modules/dbus/iface-card.h \
|
2009-08-09 09:20:22 +03:00
|
|
|
modules/dbus/iface-card-profile.c modules/dbus/iface-card-profile.h \
|
2009-07-21 00:02:27 +03:00
|
|
|
modules/dbus/iface-client.c modules/dbus/iface-client.h \
|
|
|
|
|
modules/dbus/iface-core.c modules/dbus/iface-core.h \
|
|
|
|
|
modules/dbus/iface-device.c modules/dbus/iface-device.h \
|
2009-08-15 06:18:41 +03:00
|
|
|
modules/dbus/iface-device-port.c modules/dbus/iface-device-port.h \
|
2009-08-04 18:01:26 +03:00
|
|
|
modules/dbus/iface-memstats.c modules/dbus/iface-memstats.h \
|
2009-07-21 00:02:27 +03:00
|
|
|
modules/dbus/iface-module.c modules/dbus/iface-module.h \
|
|
|
|
|
modules/dbus/iface-sample.c modules/dbus/iface-sample.h \
|
|
|
|
|
modules/dbus/iface-stream.c modules/dbus/iface-stream.h \
|
|
|
|
|
modules/dbus/module-dbus-protocol.c
|
2009-06-03 15:21:50 +03:00
|
|
|
module_dbus_protocol_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS)
|
|
|
|
|
module_dbus_protocol_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_dbus_protocol_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS)
|
2009-06-03 15:21:50 +03:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# Native protocol
|
2005-01-12 17:37:31 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_native_protocol_tcp_la_SOURCES = modules/module-protocol-stub.c
|
2004-06-20 01:12:13 +00:00
|
|
|
module_native_protocol_tcp_la_CFLAGS = -DUSE_TCP_SOCKETS -DUSE_PROTOCOL_NATIVE $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_native_protocol_tcp_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_native_protocol_tcp_la_LIBADD = $(MODULE_LIBADD) libprotocol-native.la
|
2004-06-20 01:12:13 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_native_protocol_unix_la_SOURCES = modules/module-protocol-stub.c
|
2004-06-20 01:12:13 +00:00
|
|
|
module_native_protocol_unix_la_CFLAGS = -DUSE_UNIX_SOCKETS -DUSE_PROTOCOL_NATIVE $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_native_protocol_unix_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_native_protocol_unix_la_LIBADD = $(MODULE_LIBADD) libprotocol-native.la
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_native_protocol_fd_la_SOURCES = modules/module-native-protocol-fd.c
|
2004-09-01 21:12:27 +00:00
|
|
|
module_native_protocol_fd_la_CFLAGS = $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_native_protocol_fd_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_native_protocol_fd_la_LIBADD = $(MODULE_LIBADD) libprotocol-native.la
|
2004-09-11 00:03:00 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# EsounD protocol
|
2004-09-11 00:03:00 +00:00
|
|
|
|
2011-12-08 16:06:50 +05:30
|
|
|
if HAVE_ESOUND
|
2006-02-16 19:19:58 +00:00
|
|
|
module_esound_protocol_tcp_la_SOURCES = modules/module-protocol-stub.c
|
2006-01-10 17:51:06 +00:00
|
|
|
module_esound_protocol_tcp_la_CFLAGS = -DUSE_TCP_SOCKETS -DUSE_PROTOCOL_ESOUND $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_esound_protocol_tcp_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_esound_protocol_tcp_la_LIBADD = $(MODULE_LIBADD) libprotocol-esound.la
|
2004-07-06 00:08:44 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_esound_protocol_unix_la_SOURCES = modules/module-protocol-stub.c
|
2006-01-10 17:51:06 +00:00
|
|
|
module_esound_protocol_unix_la_CFLAGS = -DUSE_UNIX_SOCKETS -DUSE_PROTOCOL_ESOUND $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_esound_protocol_unix_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_esound_protocol_unix_la_LIBADD = $(MODULE_LIBADD) libprotocol-esound.la
|
2004-09-26 22:27:04 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_esound_compat_spawnfd_la_SOURCES = modules/module-esound-compat-spawnfd.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_esound_compat_spawnfd_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_esound_compat_spawnfd_la_LIBADD = $(MODULE_LIBADD)
|
2004-07-15 20:51:55 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_esound_compat_spawnpid_la_SOURCES = modules/module-esound-compat-spawnpid.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_esound_compat_spawnpid_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_esound_compat_spawnpid_la_LIBADD = $(MODULE_LIBADD)
|
2004-07-10 19:04:21 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_esound_sink_la_SOURCES = modules/module-esound-sink.c
|
2011-01-06 01:39:29 +01:00
|
|
|
module_esound_sink_la_LDFLAGS = $(MODULE_LDFLAGS) $(WINSOCK_LIBS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_esound_sink_la_LIBADD = $(MODULE_LIBADD)
|
2011-12-08 16:06:50 +05:30
|
|
|
endif
|
2004-07-16 20:58:18 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# Pipes
|
2004-08-07 10:52:43 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_pipe_sink_la_SOURCES = modules/module-pipe-sink.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_pipe_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_pipe_sink_la_LIBADD = $(MODULE_LIBADD)
|
2004-10-24 00:48:02 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_pipe_source_la_SOURCES = modules/module-pipe-source.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_pipe_source_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_pipe_source_la_LIBADD = $(MODULE_LIBADD)
|
2004-11-11 21:18:33 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# Fake sources/sinks
|
2004-11-17 00:05:25 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_sine_la_SOURCES = modules/module-sine.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_sine_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_sine_la_LIBADD = $(MODULE_LIBADD)
|
2004-11-21 18:15:33 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_null_sink_la_SOURCES = modules/module-null-sink.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_null_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_null_sink_la_LIBADD = $(MODULE_LIBADD)
|
2004-09-12 23:29:54 +00:00
|
|
|
|
2011-04-27 14:50:00 +03:00
|
|
|
module_null_source_la_SOURCES = modules/module-null-source.c
|
|
|
|
|
module_null_source_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_null_source_la_LIBADD = $(MODULE_LIBADD)
|
|
|
|
|
|
2009-01-08 21:17:58 +01:00
|
|
|
module_sine_source_la_SOURCES = modules/module-sine-source.c
|
2011-01-06 01:39:29 +01:00
|
|
|
module_sine_source_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_sine_source_la_LIBADD = $(MODULE_LIBADD)
|
2009-01-08 21:17:58 +01:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# Couplings
|
2004-09-12 23:29:54 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_combine_la_SOURCES = modules/module-combine.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_combine_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_combine_la_LIBADD = $(MODULE_LIBADD)
|
2004-09-12 23:29:54 +00:00
|
|
|
|
2011-04-29 16:40:50 +01:00
|
|
|
module_combine_sink_la_SOURCES = modules/module-combine-sink.c
|
|
|
|
|
module_combine_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_combine_sink_la_LIBADD = $(MODULE_LIBADD)
|
|
|
|
|
|
2011-04-03 13:42:44 +01:00
|
|
|
module_switch_on_connect_la_SOURCES = modules/module-switch-on-connect.c
|
|
|
|
|
module_switch_on_connect_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_switch_on_connect_la_LIBADD = $(MODULE_LIBADD)
|
|
|
|
|
|
2012-02-23 07:17:04 +01:00
|
|
|
module_switch_on_port_available_la_SOURCES = modules/module-switch-on-port-available.c
|
|
|
|
|
module_switch_on_port_available_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_switch_on_port_available_la_LIBADD = $(MODULE_LIBADD)
|
|
|
|
|
|
2011-04-14 13:04:03 +02:00
|
|
|
module_filter_apply_la_SOURCES = modules/module-filter-apply.c
|
|
|
|
|
module_filter_apply_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_filter_apply_la_LIBADD = $(MODULE_LIBADD)
|
|
|
|
|
|
2011-04-14 13:05:45 +02:00
|
|
|
module_filter_heuristics_la_SOURCES = modules/module-filter-heuristics.c
|
|
|
|
|
module_filter_heuristics_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_filter_heuristics_la_LIBADD = $(MODULE_LIBADD)
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
module_remap_sink_la_SOURCES = modules/module-remap-sink.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_remap_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_remap_sink_la_LIBADD = $(MODULE_LIBADD)
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
module_ladspa_sink_la_SOURCES = modules/module-ladspa-sink.c modules/ladspa.h
|
2008-05-15 23:34:41 +00:00
|
|
|
module_ladspa_sink_la_CFLAGS = -DLADSPA_PATH=\"$(libdir)/ladspa:/usr/local/lib/ladspa:/usr/lib/ladspa:/usr/local/lib64/ladspa:/usr/lib64/ladspa\" $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_ladspa_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_ladspa_sink_la_LIBADD = $(MODULE_LIBADD) $(LIBLTDL)
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2012-06-15 17:35:58 +03:00
|
|
|
if HAVE_DBUS
|
|
|
|
|
module_ladspa_sink_la_CFLAGS += $(DBUS_CFLAGS)
|
|
|
|
|
module_ladspa_sink_la_LIBADD += $(DBUS_LIBS)
|
|
|
|
|
endif
|
|
|
|
|
|
2009-06-22 00:36:14 -07:00
|
|
|
module_equalizer_sink_la_SOURCES = modules/module-equalizer-sink.c
|
2011-09-14 13:20:59 +05:30
|
|
|
module_equalizer_sink_la_CFLAGS = $(AM_CFLAGS) $(SERVER_CFLAGS) $(DBUS_CFLAGS) $(FFTW_CFLAGS)
|
2009-06-22 00:36:14 -07:00
|
|
|
module_equalizer_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_equalizer_sink_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS) $(FFTW_LIBS)
|
2009-06-22 00:36:14 -07:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_match_la_SOURCES = modules/module-match.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_match_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_match_la_LIBADD = $(MODULE_LIBADD)
|
2004-10-30 01:55:16 +00:00
|
|
|
|
2007-10-29 16:54:16 +00:00
|
|
|
module_tunnel_sink_la_SOURCES = modules/module-tunnel.c
|
|
|
|
|
module_tunnel_sink_la_CFLAGS = -DTUNNEL_SINK=1 $(AM_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_tunnel_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_tunnel_sink_la_LIBADD = $(MODULE_LIBADD)
|
2004-11-09 23:19:42 +00:00
|
|
|
|
2007-10-29 16:54:16 +00:00
|
|
|
module_tunnel_source_la_SOURCES = modules/module-tunnel.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_tunnel_source_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_tunnel_source_la_LIBADD = $(MODULE_LIBADD)
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2009-08-26 01:42:17 +02:00
|
|
|
module_loopback_la_SOURCES = modules/module-loopback.c
|
|
|
|
|
module_loopback_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_loopback_la_LIBADD = $(MODULE_LIBADD)
|
2009-08-26 01:42:17 +02:00
|
|
|
|
2010-02-11 15:46:41 -06:00
|
|
|
module_virtual_sink_la_SOURCES = modules/module-virtual-sink.c
|
2011-09-14 07:24:19 +05:30
|
|
|
module_virtual_sink_la_CFLAGS = $(AM_CFLAGS) $(SERVER_CFLAGS)
|
2010-02-11 15:46:41 -06:00
|
|
|
module_virtual_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_virtual_sink_la_LIBADD = $(MODULE_LIBADD)
|
2010-02-11 15:46:41 -06:00
|
|
|
|
|
|
|
|
module_virtual_source_la_SOURCES = modules/module-virtual-source.c
|
2011-09-14 07:24:19 +05:30
|
|
|
module_virtual_source_la_CFLAGS = $(AM_CFLAGS) $(SERVER_CFLAGS)
|
2010-02-11 15:46:41 -06:00
|
|
|
module_virtual_source_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_virtual_source_la_LIBADD = $(MODULE_LIBADD)
|
2010-02-11 15:46:41 -06:00
|
|
|
|
2012-01-08 21:22:35 +01:00
|
|
|
module_virtual_surround_sink_la_SOURCES = modules/module-virtual-surround-sink.c
|
|
|
|
|
module_virtual_surround_sink_la_CFLAGS = $(AM_CFLAGS) $(SERVER_CFLAGS)
|
|
|
|
|
module_virtual_surround_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_virtual_surround_sink_la_LIBADD = $(MODULE_LIBADD)
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# X11
|
2004-09-12 23:29:54 +00:00
|
|
|
|
2009-04-28 02:29:01 +02:00
|
|
|
module_x11_bell_la_SOURCES = modules/x11/module-x11-bell.c
|
2009-01-07 16:33:43 +02:00
|
|
|
module_x11_bell_la_CFLAGS = $(AM_CFLAGS) $(X11_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_x11_bell_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_x11_bell_la_LIBADD = $(MODULE_LIBADD) $(X11_LIBS)
|
2004-10-30 01:55:16 +00:00
|
|
|
|
2009-04-28 02:29:01 +02:00
|
|
|
module_x11_publish_la_SOURCES = modules/x11/module-x11-publish.c
|
2009-01-07 16:33:43 +02:00
|
|
|
module_x11_publish_la_CFLAGS = $(AM_CFLAGS) $(X11_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_x11_publish_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_x11_publish_la_LIBADD = $(MODULE_LIBADD) libprotocol-native.la $(X11_LIBS)
|
2004-10-30 01:55:16 +00:00
|
|
|
|
2009-04-28 02:29:01 +02:00
|
|
|
module_x11_xsmp_la_SOURCES = modules/x11/module-x11-xsmp.c
|
2009-01-07 16:33:43 +02:00
|
|
|
module_x11_xsmp_la_CFLAGS = $(AM_CFLAGS) $(X11_CFLAGS)
|
2009-01-08 14:55:33 +02:00
|
|
|
module_x11_xsmp_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_x11_xsmp_la_LIBADD = $(MODULE_LIBADD) $(X11_LIBS)
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2009-04-28 02:29:01 +02:00
|
|
|
module_x11_cork_request_la_SOURCES = modules/x11/module-x11-cork-request.c
|
2009-02-13 02:39:07 +01:00
|
|
|
module_x11_cork_request_la_CFLAGS = $(AM_CFLAGS) $(X11_CFLAGS)
|
|
|
|
|
module_x11_cork_request_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_x11_cork_request_la_LIBADD = $(MODULE_LIBADD) $(X11_LIBS)
|
2009-02-13 02:39:07 +01:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# OSS
|
2005-01-08 01:15:11 +00:00
|
|
|
|
2009-01-15 21:02:01 +01:00
|
|
|
liboss_util_la_SOURCES = modules/oss/oss-util.c modules/oss/oss-util.h
|
2006-02-17 09:12:06 +00:00
|
|
|
liboss_util_la_LDFLAGS = -avoid-version
|
2011-01-20 12:53:38 +01:00
|
|
|
liboss_util_la_LIBADD = $(MODULE_LIBADD)
|
2006-02-17 09:12:06 +00:00
|
|
|
|
2009-01-15 21:02:01 +01:00
|
|
|
module_oss_la_SOURCES = modules/oss/module-oss.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_oss_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_oss_la_LIBADD = $(MODULE_LIBADD) liboss-util.la
|
2004-09-12 23:29:54 +00:00
|
|
|
|
2009-09-22 11:10:26 +08:00
|
|
|
# COREAUDIO
|
|
|
|
|
|
2011-03-14 14:05:04 +01:00
|
|
|
module_coreaudio_detect_la_SOURCES = modules/macosx/module-coreaudio-detect.c
|
2009-09-22 11:10:26 +08:00
|
|
|
module_coreaudio_detect_la_LDFLAGS = $(MODULE_LDFLAGS) \
|
2011-03-18 11:47:06 +00:00
|
|
|
-Wl,-framework -Wl,Cocoa -framework CoreAudio \
|
|
|
|
|
-Wl,-framework -Wl,AudioUnit -framework AudioUnit
|
2011-01-20 12:53:38 +01:00
|
|
|
module_coreaudio_detect_la_LIBADD = $(MODULE_LIBADD)
|
2009-09-22 11:10:26 +08:00
|
|
|
|
2011-03-14 14:05:04 +01:00
|
|
|
module_coreaudio_device_la_SOURCES = modules/macosx/module-coreaudio-device.c
|
2009-09-22 11:27:57 +08:00
|
|
|
module_coreaudio_device_la_LDFLAGS = $(MODULE_LDFLAGS) \
|
2011-03-18 11:47:06 +00:00
|
|
|
-Wl,-framework -Wl,Cocoa -framework CoreAudio \
|
|
|
|
|
-Wl,-framework -Wl,AudioUnit -framework AudioUnit
|
2011-01-20 12:53:38 +01:00
|
|
|
module_coreaudio_device_la_LIBADD = $(MODULE_LIBADD)
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# ALSA
|
2004-09-12 23:29:54 +00:00
|
|
|
|
2011-03-18 11:47:06 +00:00
|
|
|
libalsa_util_la_SOURCES = \
|
|
|
|
|
modules/alsa/alsa-util.c modules/alsa/alsa-util.h \
|
|
|
|
|
modules/alsa/alsa-mixer.c modules/alsa/alsa-mixer.h \
|
|
|
|
|
modules/alsa/alsa-sink.c modules/alsa/alsa-sink.h \
|
|
|
|
|
modules/alsa/alsa-source.c modules/alsa/alsa-source.h \
|
|
|
|
|
modules/reserve-wrap.c modules/reserve-wrap.h
|
2006-02-17 09:12:06 +00:00
|
|
|
libalsa_util_la_LDFLAGS = -avoid-version
|
2011-01-20 12:53:38 +01:00
|
|
|
libalsa_util_la_LIBADD = $(MODULE_LIBADD) $(ASOUNDLIB_LIBS)
|
2011-09-14 07:24:19 +05:30
|
|
|
libalsa_util_la_CFLAGS = $(AM_CFLAGS) $(SERVER_CFLAGS) $(ASOUNDLIB_CFLAGS)
|
2006-02-17 09:12:06 +00:00
|
|
|
|
2009-03-01 20:34:07 +01:00
|
|
|
if HAVE_UDEV
|
|
|
|
|
libalsa_util_la_SOURCES += modules/udev-util.h modules/udev-util.c
|
|
|
|
|
libalsa_util_la_LIBADD += $(UDEV_LIBS)
|
|
|
|
|
libalsa_util_la_CFLAGS += $(UDEV_CFLAGS)
|
2009-01-24 01:25:11 +01:00
|
|
|
endif
|
|
|
|
|
|
2009-02-24 06:13:39 +01:00
|
|
|
if HAVE_DBUS
|
2009-06-05 19:03:16 +02:00
|
|
|
libalsa_util_la_SOURCES += modules/reserve.h modules/reserve.c modules/reserve-monitor.h modules/reserve-monitor.c
|
2009-03-19 01:35:02 +02:00
|
|
|
libalsa_util_la_LIBADD += $(DBUS_LIBS)
|
2009-02-24 06:13:39 +01:00
|
|
|
libalsa_util_la_CFLAGS += $(DBUS_CFLAGS)
|
|
|
|
|
endif
|
|
|
|
|
|
2009-01-15 21:02:01 +01:00
|
|
|
module_alsa_sink_la_SOURCES = modules/alsa/module-alsa-sink.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_alsa_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_alsa_sink_la_LIBADD = $(MODULE_LIBADD) $(ASOUNDLIB_LIBS) libalsa-util.la
|
2004-09-12 23:29:54 +00:00
|
|
|
module_alsa_sink_la_CFLAGS = $(AM_CFLAGS) $(ASOUNDLIB_CFLAGS)
|
|
|
|
|
|
2009-01-15 21:02:01 +01:00
|
|
|
module_alsa_source_la_SOURCES = modules/alsa/module-alsa-source.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_alsa_source_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_alsa_source_la_LIBADD = $(MODULE_LIBADD) $(ASOUNDLIB_LIBS) libalsa-util.la
|
2004-09-12 23:29:54 +00:00
|
|
|
module_alsa_source_la_CFLAGS = $(AM_CFLAGS) $(ASOUNDLIB_CFLAGS)
|
|
|
|
|
|
2009-01-16 23:33:15 +01:00
|
|
|
module_alsa_card_la_SOURCES = modules/alsa/module-alsa-card.c
|
|
|
|
|
module_alsa_card_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_alsa_card_la_LIBADD = $(MODULE_LIBADD) $(ASOUNDLIB_LIBS) libalsa-util.la
|
2009-01-16 23:33:15 +01:00
|
|
|
module_alsa_card_la_CFLAGS = $(AM_CFLAGS) $(ASOUNDLIB_CFLAGS)
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# Solaris
|
2004-12-11 00:10:41 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_solaris_la_SOURCES = modules/module-solaris.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_solaris_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_solaris_la_LIBADD = $(MODULE_LIBADD)
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-07-13 17:33:44 +00:00
|
|
|
# Avahi
|
2006-02-17 09:12:06 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_zeroconf_publish_la_SOURCES = modules/module-zeroconf-publish.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_zeroconf_publish_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_zeroconf_publish_la_LIBADD = $(MODULE_LIBADD) $(AVAHI_LIBS) libavahi-wrap.la libprotocol-native.la
|
2006-07-13 15:54:13 +00:00
|
|
|
module_zeroconf_publish_la_CFLAGS = $(AM_CFLAGS) $(AVAHI_CFLAGS)
|
2004-12-11 00:10:41 +00:00
|
|
|
|
2007-10-29 20:03:49 +00:00
|
|
|
module_zeroconf_discover_la_SOURCES = modules/module-zeroconf-discover.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_zeroconf_discover_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_zeroconf_discover_la_LIBADD = $(MODULE_LIBADD) $(AVAHI_LIBS) libavahi-wrap.la
|
2007-10-29 20:03:49 +00:00
|
|
|
module_zeroconf_discover_la_CFLAGS = $(AM_CFLAGS) $(AVAHI_CFLAGS)
|
|
|
|
|
|
2009-12-10 10:32:57 +08:00
|
|
|
# Bonjour
|
|
|
|
|
|
2011-03-14 14:05:04 +01:00
|
|
|
module_bonjour_publish_la_SOURCES = modules/macosx/module-bonjour-publish.c
|
2009-12-10 10:32:57 +08:00
|
|
|
module_bonjour_publish_la_LDFLAGS = $(MODULE_LDFLAGS) \
|
|
|
|
|
-Wl,-framework -Wl,CoreFoundation -framework CoreFoundation
|
2011-10-17 11:33:27 +02:00
|
|
|
module_bonjour_publish_la_LIBADD = $(MODULE_LIBADD) libprotocol-native.la
|
2009-12-10 10:32:57 +08:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# LIRC
|
2005-01-08 21:36:53 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_lirc_la_SOURCES = modules/module-lirc.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_lirc_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_lirc_la_LIBADD = $(MODULE_LIBADD) $(LIRC_LIBS)
|
2005-01-08 21:36:53 +00:00
|
|
|
module_lirc_la_CFLAGS = $(AM_CFLAGS) $(LIRC_CFLAGS)
|
|
|
|
|
|
2012-02-26 15:34:09 -08:00
|
|
|
|
|
|
|
|
# Xen PV driver
|
|
|
|
|
|
|
|
|
|
module_xenpv_sink_la_SOURCES = modules/xen/module-xenpv-sink.c modules/xen/gntalloc.h modules/xen/gntdev.h
|
|
|
|
|
module_xenpv_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_xenpv_sink_la_LIBADD = $(MODULE_LIBADD) $(XEN_LIBS)
|
|
|
|
|
module_xenpv_sink_la_CFLAGS = $(AM_CFLAGS) $(XEN_CFLAGS) -I$(top_srcdir)/src/modules/xen
|
|
|
|
|
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# Linux evdev
|
2005-01-09 01:11:53 +00:00
|
|
|
|
2006-02-16 19:19:58 +00:00
|
|
|
module_mmkbd_evdev_la_SOURCES = modules/module-mmkbd-evdev.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_mmkbd_evdev_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_mmkbd_evdev_la_LIBADD = $(MODULE_LIBADD)
|
2005-01-09 01:11:53 +00:00
|
|
|
module_mmkbd_evdev_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
# Windows waveout
|
2011-01-12 15:02:18 +01:00
|
|
|
module_waveout_la_SOURCES = modules/module-waveout.c
|
|
|
|
|
module_waveout_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_waveout_la_LIBADD = $(MODULE_LIBADD) -lwinmm
|
|
|
|
|
module_waveout_la_CFLAGS = $(AM_CFLAGS)
|
2004-08-06 23:07:48 +00:00
|
|
|
|
2006-02-16 01:17:30 +00:00
|
|
|
# Hardware autodetection module
|
2006-02-16 19:19:58 +00:00
|
|
|
module_detect_la_SOURCES = modules/module-detect.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_detect_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_detect_la_LIBADD = $(MODULE_LIBADD)
|
2006-02-16 01:17:30 +00:00
|
|
|
module_detect_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2006-05-14 00:41:56 +00:00
|
|
|
# Volume restore module
|
|
|
|
|
module_volume_restore_la_SOURCES = modules/module-volume-restore.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_volume_restore_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_volume_restore_la_LIBADD = $(MODULE_LIBADD)
|
2006-05-14 00:41:56 +00:00
|
|
|
module_volume_restore_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2008-06-11 00:38:19 +00:00
|
|
|
# Position event sounds in space
|
|
|
|
|
module_position_event_sounds_la_SOURCES = modules/module-position-event-sounds.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_position_event_sounds_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_position_event_sounds_la_LIBADD = $(MODULE_LIBADD)
|
2009-02-05 04:14:30 +01:00
|
|
|
module_position_event_sounds_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
|
|
|
|
# Augment properties from XDG .desktop files
|
|
|
|
|
module_augment_properties_la_SOURCES = modules/module-augment-properties.c
|
|
|
|
|
module_augment_properties_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_augment_properties_la_LIBADD = $(MODULE_LIBADD)
|
2009-02-05 04:14:30 +01:00
|
|
|
#module_augment_properties_la_CFLAGS = $(AM_CFLAGS) -DDESKTOPFILEDIR=\"$(datadir)/applications\"
|
|
|
|
|
module_augment_properties_la_CFLAGS = $(AM_CFLAGS) -DDESKTOPFILEDIR=\"/usr/share/applications\"
|
2008-06-11 00:38:19 +00:00
|
|
|
|
2011-10-24 22:55:45 +02:00
|
|
|
# Cork certain streams while others are active (e.g. cork music when phone streams appear)
|
|
|
|
|
module_role_cork_la_SOURCES = modules/module-role-cork.c
|
|
|
|
|
module_role_cork_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_role_cork_la_LIBADD = $(MODULE_LIBADD)
|
|
|
|
|
module_role_cork_la_CFLAGS = $(AM_CFLAGS)
|
2009-02-12 03:19:40 +01:00
|
|
|
|
2009-06-27 21:03:37 +01:00
|
|
|
# Device description restore module
|
|
|
|
|
module_device_manager_la_SOURCES = modules/module-device-manager.c
|
|
|
|
|
module_device_manager_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_device_manager_la_LIBADD = $(MODULE_LIBADD) libprotocol-native.la
|
2009-06-27 21:03:37 +01:00
|
|
|
module_device_manager_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2008-08-03 23:23:13 +02:00
|
|
|
# Device volume/muted restore module
|
2008-05-15 23:34:41 +00:00
|
|
|
module_device_restore_la_SOURCES = modules/module-device-restore.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_device_restore_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-06-07 12:18:17 +02:00
|
|
|
module_device_restore_la_LIBADD = $(MODULE_LIBADD) libprotocol-native.la
|
2008-05-15 23:34:41 +00:00
|
|
|
module_device_restore_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2011-06-07 12:18:17 +02:00
|
|
|
if HAVE_DBUS
|
|
|
|
|
module_device_restore_la_LIBADD += $(DBUS_LIBS)
|
|
|
|
|
module_device_restore_la_CFLAGS += $(DBUS_CFLAGS)
|
|
|
|
|
endif
|
|
|
|
|
|
2008-08-03 23:23:13 +02:00
|
|
|
# Stream volume/muted/device restore module
|
|
|
|
|
module_stream_restore_la_SOURCES = modules/module-stream-restore.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_stream_restore_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_stream_restore_la_LIBADD = $(MODULE_LIBADD) libprotocol-native.la
|
2008-08-03 23:23:13 +02:00
|
|
|
module_stream_restore_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2009-08-03 19:38:02 +03:00
|
|
|
if HAVE_DBUS
|
|
|
|
|
module_stream_restore_la_LIBADD += $(DBUS_LIBS)
|
|
|
|
|
module_stream_restore_la_CFLAGS += $(DBUS_CFLAGS)
|
|
|
|
|
endif
|
|
|
|
|
|
2009-01-21 02:49:42 +01:00
|
|
|
# Card profile restore module
|
|
|
|
|
module_card_restore_la_SOURCES = modules/module-card-restore.c
|
|
|
|
|
module_card_restore_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_card_restore_la_LIBADD = $(MODULE_LIBADD)
|
2009-01-21 02:49:42 +01:00
|
|
|
module_card_restore_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
# Default sink/source restore module
|
|
|
|
|
module_default_device_restore_la_SOURCES = modules/module-default-device-restore.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_default_device_restore_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_default_device_restore_la_LIBADD = $(MODULE_LIBADD)
|
2007-10-28 19:13:50 +00:00
|
|
|
module_default_device_restore_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2008-06-11 19:45:57 +00:00
|
|
|
# Always Sink module
|
|
|
|
|
module_always_sink_la_SOURCES = modules/module-always-sink.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_always_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_always_sink_la_LIBADD = $(MODULE_LIBADD)
|
2008-06-11 19:45:57 +00:00
|
|
|
module_always_sink_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2006-08-13 17:34:36 +00:00
|
|
|
# Rescue streams module
|
|
|
|
|
module_rescue_streams_la_SOURCES = modules/module-rescue-streams.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_rescue_streams_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_rescue_streams_la_LIBADD = $(MODULE_LIBADD)
|
2006-08-13 17:34:36 +00:00
|
|
|
module_rescue_streams_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2009-06-22 22:34:57 +02:00
|
|
|
# Automatically move streams to devices that are intended for their roles
|
|
|
|
|
module_intended_roles_la_SOURCES = modules/module-intended-roles.c
|
|
|
|
|
module_intended_roles_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_intended_roles_la_LIBADD = $(MODULE_LIBADD)
|
2009-06-22 22:34:57 +02:00
|
|
|
module_intended_roles_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
# Suspend-on-idle module
|
|
|
|
|
module_suspend_on_idle_la_SOURCES = modules/module-suspend-on-idle.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_suspend_on_idle_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_suspend_on_idle_la_LIBADD = $(MODULE_LIBADD)
|
2007-10-28 19:13:50 +00:00
|
|
|
module_suspend_on_idle_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2010-08-23 16:38:47 +02:00
|
|
|
# echo-cancel module
|
2011-03-18 11:47:06 +00:00
|
|
|
module_echo_cancel_la_SOURCES = \
|
2011-12-11 16:07:42 +01:00
|
|
|
modules/echo-cancel/module-echo-cancel.c modules/echo-cancel/echo-cancel.h
|
2010-08-23 16:38:47 +02:00
|
|
|
module_echo_cancel_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2010-10-19 09:59:45 +05:30
|
|
|
module_echo_cancel_la_LIBADD = $(MODULE_LIBADD) $(LIBSPEEX_LIBS)
|
2011-09-14 13:22:15 +05:30
|
|
|
module_echo_cancel_la_CFLAGS = $(AM_CFLAGS) $(SERVER_CFLAGS) $(LIBSPEEX_CFLAGS)
|
2011-12-11 16:07:42 +01:00
|
|
|
if HAVE_ADRIAN_EC
|
|
|
|
|
module_echo_cancel_la_SOURCES += \
|
|
|
|
|
modules/echo-cancel/adrian-aec.c modules/echo-cancel/adrian-aec.h \
|
|
|
|
|
modules/echo-cancel/adrian.c modules/echo-cancel/adrian.h
|
|
|
|
|
module_echo_cancel_la_CFLAGS += -DHAVE_ADRIAN_EC=1
|
2010-10-19 09:59:45 +05:30
|
|
|
if HAVE_ORC
|
2010-10-25 09:00:06 +01:00
|
|
|
ORC_SOURCE += modules/echo-cancel/adrian-aec
|
2010-10-19 09:59:45 +05:30
|
|
|
nodist_module_echo_cancel_la_SOURCES = \
|
2011-03-18 11:47:06 +00:00
|
|
|
modules/echo-cancel/adrian-aec-orc-gen.c \
|
|
|
|
|
modules/echo-cancel/adrian-aec-orc-gen.h
|
2010-10-19 09:59:45 +05:30
|
|
|
module_echo_cancel_la_LIBADD += $(ORC_LIBS)
|
|
|
|
|
module_echo_cancel_la_CFLAGS += $(ORC_CFLAGS) -I$(top_builddir)/src/modules/echo-cancel
|
|
|
|
|
endif
|
2011-12-11 16:07:42 +01:00
|
|
|
endif
|
2011-12-11 16:07:41 +01:00
|
|
|
if HAVE_SPEEX
|
|
|
|
|
module_echo_cancel_la_SOURCES += modules/echo-cancel/speex.c
|
|
|
|
|
endif
|
2011-09-19 13:41:13 +05:30
|
|
|
if HAVE_WEBRTC
|
|
|
|
|
module_echo_cancel_la_SOURCES += modules/echo-cancel/webrtc.cc
|
|
|
|
|
module_echo_cancel_la_CFLAGS += -DHAVE_WEBRTC=1
|
|
|
|
|
module_echo_cancel_la_CXXFLAGS = $(AM_CXXFLAGS) $(SERVER_CFLAGS) $(WEBRTC_CFLAGS) -DHAVE_WEBRTC=1
|
|
|
|
|
module_echo_cancel_la_LIBADD += $(WEBRTC_LIBS)
|
|
|
|
|
endif
|
2010-08-23 16:38:47 +02:00
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
# RTP modules
|
2006-04-16 10:56:45 +00:00
|
|
|
module_rtp_send_la_SOURCES = modules/rtp/module-rtp-send.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_rtp_send_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_rtp_send_la_LIBADD = $(MODULE_LIBADD) librtp.la
|
2006-04-16 10:56:45 +00:00
|
|
|
module_rtp_send_la_CFLAGS = $(AM_CFLAGS)
|
2006-04-14 23:49:12 +00:00
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
module_rtp_recv_la_SOURCES = modules/rtp/module-rtp-recv.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_rtp_recv_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_rtp_recv_la_LIBADD = $(MODULE_LIBADD) librtp.la
|
2006-04-16 00:16:53 +00:00
|
|
|
module_rtp_recv_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
2006-04-17 00:11:04 +00:00
|
|
|
# JACK
|
|
|
|
|
|
2010-11-30 04:59:27 +01:00
|
|
|
module_jackdbus_detect_la_SOURCES = modules/jack/module-jackdbus-detect.c
|
|
|
|
|
module_jackdbus_detect_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_jackdbus_detect_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS) $(JACK_LIBS)
|
2010-11-30 04:59:27 +01:00
|
|
|
module_jackdbus_detect_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS) $(JACK_CFLAGS)
|
|
|
|
|
|
2009-04-28 02:29:01 +02:00
|
|
|
module_jack_sink_la_SOURCES = modules/jack/module-jack-sink.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_jack_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_jack_sink_la_LIBADD = $(MODULE_LIBADD) $(JACK_LIBS)
|
2007-08-04 19:53:37 +00:00
|
|
|
module_jack_sink_la_CFLAGS = $(AM_CFLAGS) $(JACK_CFLAGS)
|
2006-04-18 17:19:41 +00:00
|
|
|
|
2009-04-28 02:29:01 +02:00
|
|
|
module_jack_source_la_SOURCES = modules/jack/module-jack-source.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_jack_source_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_jack_source_la_LIBADD = $(MODULE_LIBADD) $(JACK_LIBS)
|
2007-08-04 19:53:37 +00:00
|
|
|
module_jack_source_la_CFLAGS = $(AM_CFLAGS) $(JACK_CFLAGS)
|
2006-04-17 00:11:04 +00:00
|
|
|
|
2009-08-11 23:04:35 +02:00
|
|
|
module_hal_detect_la_SOURCES = modules/module-hal-detect-compat.c
|
2011-01-20 12:53:38 +01:00
|
|
|
module_hal_detect_la_LIBADD = $(MODULE_LIBADD)
|
2009-08-11 23:04:35 +02:00
|
|
|
module_hal_detect_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
module_hal_detect_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2006-08-06 16:16:50 +00:00
|
|
|
|
2009-06-06 03:26:07 +02:00
|
|
|
module_udev_detect_la_SOURCES = modules/module-udev-detect.c
|
|
|
|
|
module_udev_detect_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_udev_detect_la_LIBADD = $(MODULE_LIBADD) $(UDEV_LIBS)
|
2009-06-06 03:26:07 +02:00
|
|
|
module_udev_detect_la_CFLAGS = $(AM_CFLAGS) $(UDEV_CFLAGS)
|
|
|
|
|
|
2008-06-11 14:28:35 +00:00
|
|
|
module_console_kit_la_SOURCES = modules/module-console-kit.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_console_kit_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2012-03-17 01:52:41 +01:00
|
|
|
module_console_kit_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS) $(SYSTEMD_LIBS)
|
|
|
|
|
module_console_kit_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS) $(SYSTEMD_CFLAGS)
|
|
|
|
|
|
|
|
|
|
module_systemd_login_la_SOURCES = modules/module-systemd-login.c
|
|
|
|
|
module_systemd_login_la_LDFLAGS = $(MODULE_LDFLAGS)
|
|
|
|
|
module_systemd_login_la_LIBADD = $(MODULE_LIBADD) $(SYSTEMD_LIBS)
|
|
|
|
|
module_systemd_login_la_CFLAGS = $(AM_CFLAGS) $(SYSTEMD_CFLAGS)
|
2008-06-11 14:28:35 +00:00
|
|
|
|
2006-07-26 17:36:14 +00:00
|
|
|
# GConf support
|
|
|
|
|
module_gconf_la_SOURCES = modules/gconf/module-gconf.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_gconf_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_gconf_la_LIBADD = $(MODULE_LIBADD)
|
2006-07-26 17:36:14 +00:00
|
|
|
module_gconf_la_CFLAGS = $(AM_CFLAGS) -DPA_GCONF_HELPER=\"$(pulselibexecdir)/gconf-helper\"
|
|
|
|
|
|
|
|
|
|
gconf_helper_SOURCES = modules/gconf/gconf-helper.c
|
2011-01-20 12:53:38 +01:00
|
|
|
gconf_helper_LDADD = $(AM_LDADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la $(GCONF_LIBS)
|
2006-07-26 17:36:14 +00:00
|
|
|
gconf_helper_CFLAGS = $(AM_CFLAGS) $(GCONF_CFLAGS)
|
|
|
|
|
gconf_helper_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|
|
|
|
|
2007-11-11 23:18:19 +00:00
|
|
|
# Bluetooth proximity
|
2008-08-31 09:22:36 -03:00
|
|
|
module_bluetooth_proximity_la_SOURCES = modules/bluetooth/module-bluetooth-proximity.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_bluetooth_proximity_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_bluetooth_proximity_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS)
|
2008-08-31 09:22:36 -03:00
|
|
|
module_bluetooth_proximity_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS) -DPA_BT_PROXIMITY_HELPER=\"$(pulselibexecdir)/proximity-helper\"
|
2007-11-11 23:18:19 +00:00
|
|
|
|
2008-08-31 09:22:36 -03:00
|
|
|
proximity_helper_SOURCES = modules/bluetooth/proximity-helper.c
|
|
|
|
|
proximity_helper_LDADD = $(AM_LDADD) $(BLUEZ_LIBS)
|
|
|
|
|
proximity_helper_CFLAGS = $(AM_CFLAGS) $(BLUEZ_CFLAGS)
|
|
|
|
|
proximity_helper_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
2007-11-11 23:18:19 +00:00
|
|
|
|
2008-08-29 20:22:14 -03:00
|
|
|
# Bluetooth sink / source
|
|
|
|
|
module_bluetooth_discover_la_SOURCES = modules/bluetooth/module-bluetooth-discover.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_bluetooth_discover_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_bluetooth_discover_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS) libbluetooth-util.la
|
2008-08-29 20:22:14 -03:00
|
|
|
module_bluetooth_discover_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS)
|
|
|
|
|
|
2011-03-18 11:47:06 +00:00
|
|
|
libbluetooth_sbc_la_SOURCES = \
|
|
|
|
|
modules/bluetooth/sbc/sbc.c modules/bluetooth/sbc/sbc.h \
|
|
|
|
|
modules/bluetooth/sbc/sbc_primitives.c modules/bluetooth/sbc/sbc_primitives.h \
|
|
|
|
|
modules/bluetooth/sbc/sbc_primitives_armv6.h modules/bluetooth/sbc/sbc_primitives_armv6.c \
|
|
|
|
|
modules/bluetooth/sbc/sbc_primitives_iwmmxt.h modules/bluetooth/sbc/sbc_primitives_iwmmxt.c \
|
|
|
|
|
modules/bluetooth/sbc/sbc_primitives_mmx.c modules/bluetooth/sbc/sbc_primitives_mmx.h \
|
|
|
|
|
modules/bluetooth/sbc/sbc_primitives_neon.c modules/bluetooth/sbc/sbc_primitives_neon.h \
|
|
|
|
|
modules/bluetooth/sbc/sbc_math.h \
|
|
|
|
|
modules/bluetooth/sbc/sbc_tables.h
|
2008-08-29 20:22:14 -03:00
|
|
|
libbluetooth_sbc_la_LDFLAGS = -avoid-version
|
2011-01-20 12:53:38 +01:00
|
|
|
libbluetooth_sbc_la_LIBADD = $(MODULE_LIBADD)
|
2011-03-18 10:01:12 +00:00
|
|
|
libbluetooth_sbc_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/modules/bluetooth/sbc
|
2009-02-03 01:34:38 +01:00
|
|
|
BLUETOOTH_SBC_FILES = $(subst modules/bluetooth/,,$(libbluetooth_sbc_la_SOURCES))
|
2008-08-29 20:22:14 -03:00
|
|
|
|
2011-03-31 00:56:20 +05:30
|
|
|
libbluetooth_ipc_la_SOURCES = \
|
|
|
|
|
modules/bluetooth/a2dp-codecs.h \
|
|
|
|
|
modules/bluetooth/ipc.c modules/bluetooth/ipc.h
|
2008-08-29 20:22:14 -03:00
|
|
|
libbluetooth_ipc_la_LDFLAGS = -avoid-version
|
2009-07-10 12:33:30 +02:00
|
|
|
libbluetooth_ipc_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la
|
2009-02-02 01:44:37 +01:00
|
|
|
libbluetooth_ipc_la_CFLAGS = $(AM_CFLAGS)
|
2009-02-03 01:34:38 +01:00
|
|
|
BLUETOOTH_IPC_FILES = $(subst modules/bluetooth/,,$(libbluetooth_ipc_la_SOURCES)) rtp.h
|
2008-08-29 20:22:14 -03:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
libbluetooth_util_la_SOURCES = modules/bluetooth/bluetooth-util.c modules/bluetooth/bluetooth-util.h
|
|
|
|
|
libbluetooth_util_la_LDFLAGS = -avoid-version
|
2011-01-20 12:53:38 +01:00
|
|
|
libbluetooth_util_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS)
|
2009-01-29 16:27:27 +01:00
|
|
|
libbluetooth_util_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS)
|
|
|
|
|
|
2009-02-02 01:58:48 +01:00
|
|
|
module_bluetooth_device_la_SOURCES = modules/bluetooth/module-bluetooth-device.c modules/bluetooth/rtp.h
|
|
|
|
|
module_bluetooth_device_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_bluetooth_device_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS) libbluetooth-util.la libbluetooth-ipc.la libbluetooth-sbc.la
|
2011-03-18 10:01:12 +00:00
|
|
|
module_bluetooth_device_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS) -I$(top_srcdir)/src/modules/bluetooth/sbc
|
2008-07-31 20:17:17 -03:00
|
|
|
|
2008-06-11 22:44:09 +00:00
|
|
|
# Apple Airtunes/RAOP
|
2009-06-17 15:09:28 +02:00
|
|
|
module_raop_sink_la_SOURCES = modules/raop/module-raop-sink.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_raop_sink_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_raop_sink_la_LIBADD = $(MODULE_LIBADD) librtp.la libraop.la
|
2011-01-25 11:01:46 +01:00
|
|
|
module_raop_sink_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/src/modules/rtp
|
2008-06-11 22:44:09 +00:00
|
|
|
|
2009-06-17 15:09:28 +02:00
|
|
|
module_raop_discover_la_SOURCES = modules/raop/module-raop-discover.c
|
2009-01-08 14:55:33 +02:00
|
|
|
module_raop_discover_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_raop_discover_la_LIBADD = $(MODULE_LIBADD) $(AVAHI_LIBS) libavahi-wrap.la
|
2008-06-11 22:44:09 +00:00
|
|
|
module_raop_discover_la_CFLAGS = $(AM_CFLAGS) $(AVAHI_CFLAGS)
|
|
|
|
|
|
2009-04-29 23:23:25 +02:00
|
|
|
# Rygel
|
|
|
|
|
module_rygel_media_server_la_SOURCES = modules/module-rygel-media-server.c
|
|
|
|
|
module_rygel_media_server_la_LDFLAGS = $(MODULE_LDFLAGS)
|
2011-01-20 12:53:38 +01:00
|
|
|
module_rygel_media_server_la_LIBADD = $(MODULE_LIBADD) $(DBUS_LIBS) libprotocol-http.la
|
2009-04-29 23:23:25 +02:00
|
|
|
module_rygel_media_server_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS)
|
2008-06-11 22:44:09 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
###################################
|
|
|
|
|
# Some minor stuff #
|
|
|
|
|
###################################
|
2004-09-01 00:23:51 +00:00
|
|
|
|
2011-06-29 15:16:09 +02:00
|
|
|
CLEANFILES += daemon/pulseaudio.desktop daemon/pulseaudio-kde.desktop
|
|
|
|
|
DISTCLEANFILES = esdcompat client.conf default.pa system.pa daemon.conf start-pulseaudio-x11 start-pulseaudio-kde
|
2004-09-13 23:28:30 +00:00
|
|
|
|
2011-02-27 23:43:54 +01:00
|
|
|
if OS_IS_WIN32
|
|
|
|
|
SYMLINK_PROGRAM=cd $(DESTDIR)$(bindir) && cp
|
|
|
|
|
else
|
|
|
|
|
SYMLINK_PROGRAM=ln -sf
|
|
|
|
|
endif
|
2004-09-13 23:28:30 +00:00
|
|
|
install-exec-hook:
|
2011-03-15 12:30:42 +01:00
|
|
|
if HAVE_BLUEZ
|
2009-08-28 17:10:17 +02:00
|
|
|
-chown root $(DESTDIR)$(pulselibexecdir)/proximity-helper
|
2008-08-31 09:22:36 -03:00
|
|
|
-chmod u+s $(DESTDIR)$(pulselibexecdir)/proximity-helper
|
2011-03-15 12:30:42 +01:00
|
|
|
endif
|
2011-02-27 23:43:54 +01:00
|
|
|
$(SYMLINK_PROGRAM) pacat$(EXEEXT) $(DESTDIR)$(bindir)/parec$(EXEEXT)
|
|
|
|
|
$(SYMLINK_PROGRAM) pacat$(EXEEXT) $(DESTDIR)$(bindir)/pamon$(EXEEXT)
|
|
|
|
|
$(SYMLINK_PROGRAM) pacat$(EXEEXT) $(DESTDIR)$(bindir)/paplay$(EXEEXT)
|
|
|
|
|
$(SYMLINK_PROGRAM) pacat$(EXEEXT) $(DESTDIR)$(bindir)/parecord$(EXEEXT)
|
2006-06-19 21:53:48 +00:00
|
|
|
rm -f $(DESTDIR)$(libdir)/libpulsedsp.la
|
2007-11-09 14:14:29 +00:00
|
|
|
rm -f $(DESTDIR)$(modlibexecdir)/*.la
|
2006-05-25 17:16:55 +00:00
|
|
|
|
2009-01-08 14:55:33 +02:00
|
|
|
uninstall-hook:
|
2011-02-27 23:43:54 +01:00
|
|
|
rm -f $(DESTDIR)$(bindir)/parec$(EXEEXT)
|
|
|
|
|
rm -f $(DESTDIR)$(bindir)/pamon$(EXEEXT)
|
|
|
|
|
rm -f $(DESTDIR)$(bindir)/paplay$(EXEEXT)
|
|
|
|
|
rm -f $(DESTDIR)$(bindir)/parecord$(EXEEXT)
|
2009-01-08 14:55:33 +02:00
|
|
|
rm -f $(DESTDIR)$(libdir)/libpulsedsp.*
|
|
|
|
|
rm -f $(DESTDIR)$(modlibexecdir)/*.so
|
|
|
|
|
|
2006-07-23 22:36:08 +00:00
|
|
|
massif: pulseaudio
|
|
|
|
|
libtool --mode=execute valgrind --tool=massif --depth=6 --alloc-fn=pa_xmalloc --alloc-fn=pa_xmalloc0 --alloc-fn=pa_xrealloc --alloc-fn=dbus_realloc --alloc-fn=pa_xnew0_internal --alloc-fn=pa_xnew_internal ./pulseaudio
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
update-ffmpeg:
|
|
|
|
|
wget -O pulsecore/ffmpeg/resample2.c http://svn.mplayerhq.hu/ffmpeg/trunk/libavcodec/resample2.c?view=co
|
|
|
|
|
|
2009-02-02 00:23:21 +01:00
|
|
|
# We get things twice here, because sometimes gitweb will us just give a "Generating..." otherwise.
|
2009-01-08 18:25:12 +02:00
|
|
|
update-sbc:
|
2009-02-03 01:34:38 +01:00
|
|
|
for i in $(BLUETOOTH_SBC_FILES) ; do \
|
2011-03-18 12:02:10 +00:00
|
|
|
wget -O /dev/null http://git.kernel.org/\?p=bluetooth/bluez.git\;a=blob_plain\;f=$$i ; \
|
2011-03-20 12:05:25 +00:00
|
|
|
wget -O $(top_srcdir)/src/modules/bluetooth/$$i http://git.kernel.org/\?p=bluetooth/bluez.git\;a=blob_plain\;f=$$i ; \
|
2009-01-08 18:25:12 +02:00
|
|
|
done
|
2009-02-03 01:34:38 +01:00
|
|
|
for i in $(BLUETOOTH_IPC_FILES); do \
|
|
|
|
|
wget -O /dev/null http://git.kernel.org/\?p=bluetooth/bluez.git\;a=blob_plain\;f=audio/$$i ; \
|
2011-03-20 12:05:25 +00:00
|
|
|
wget -O $(top_srcdir)/src/modules/bluetooth/$$i http://git.kernel.org/\?p=bluetooth/bluez.git\;a=blob_plain\;f=audio/$$i ; \
|
2009-02-03 01:34:38 +01:00
|
|
|
done
|
2009-01-08 18:25:12 +02:00
|
|
|
|
2009-02-24 06:13:39 +01:00
|
|
|
update-reserve:
|
2009-06-05 19:03:16 +02:00
|
|
|
for i in reserve.c reserve.h reserve-monitor.c reserve-monitor.h ; do \
|
2011-03-20 12:05:25 +00:00
|
|
|
wget -O $(top_srcdir)/src/modules/$$i http://git.0pointer.de/\?p=reserve.git\;a=blob_plain\;f=$$i\;hb=master ; \
|
2009-02-24 06:13:39 +01:00
|
|
|
done
|
|
|
|
|
|
2009-06-19 04:19:08 +02:00
|
|
|
update-rtkit:
|
|
|
|
|
for i in rtkit.c rtkit.h ; do \
|
2011-03-20 12:05:25 +00:00
|
|
|
wget -O $(top_srcdir)/src/pulsecore/$$i http://git.0pointer.de/\?p=rtkit.git\;a=blob_plain\;f=$$i\;hb=master ; \
|
2009-06-19 04:19:08 +02:00
|
|
|
done
|
|
|
|
|
|
2007-11-04 13:51:18 +00:00
|
|
|
# Automatically generate linker version script. We use the same one for all public .sos
|
|
|
|
|
update-map-file:
|
|
|
|
|
( echo "PULSE_0 {" ; \
|
|
|
|
|
echo "global:" ; \
|
2008-09-05 01:28:08 +02:00
|
|
|
ctags -I PA_GCC_MALLOC,PA_GCC_ALLOC_SIZE2,PA_GCC_ALLOC_SIZE,PA_GCC_PURE,PA_GCC_CONST,PA_GCC_DEPRECATED,PA_GCC_PRINTF_ATTR -f - --c-kinds=p $(pulseinclude_HEADERS) | awk '/^pa_/ { print $$1 ";" }' | sort ; \
|
2007-11-04 13:51:18 +00:00
|
|
|
echo "local:" ; \
|
|
|
|
|
echo "*;" ; \
|
|
|
|
|
echo "};" ) > $(srcdir)/map-file
|
|
|
|
|
|
2009-01-08 18:25:12 +02:00
|
|
|
update-all: update-ffmpeg update-sbc update-map-file
|
|
|
|
|
|
2012-02-17 22:11:59 +01:00
|
|
|
# Force installation order of libraries. libtool relinks on install time, in
|
2012-04-06 15:06:25 +02:00
|
|
|
# which case libpulsecommon has to be installed before others, but the padsp
|
2012-02-17 22:11:59 +01:00
|
|
|
# preload library has to be done after the normal libraries (e.g. libpulse)
|
|
|
|
|
# ...
|
|
|
|
|
# Unfortunately automake behaviour means that rules without commands also
|
|
|
|
|
# override build-in rules, so it's not trivial to add dependencies.
|
|
|
|
|
# See http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 for the workaround
|
|
|
|
|
# ...
|
|
|
|
|
# Isn't libtool/autotools fun!
|
|
|
|
|
|
|
|
|
|
installlibLTLIBRARIES = install-libLTLIBRARIES
|
|
|
|
|
$(installlibLTLIBRARIES): install-pkglibLTLIBRARIES
|
|
|
|
|
|
|
|
|
|
installmodlibexecLTLIBRARIES = install-modlibexecLTLIBRARIES
|
|
|
|
|
$(installmodlibexecLTLIBRARIES): install-pkglibLTLIBRARIES
|
|
|
|
|
|
|
|
|
|
installpadsplibLTLIBRARIES = install-padsplibLTLIBRARIES
|
|
|
|
|
$(installpadsplibLTLIBRARIES): install-libLTLIBRARIES
|
|
|
|
|
|
2012-03-21 11:24:42 +01:00
|
|
|
.PHONY: massif update-all update-ffmpeg update-sbc update-map-file
|