annotate src/daap/xmms2-daap/Makefile @ 2611:e99d3e8653df

Remove the strange timeout function from ALSA plugin's mixer handling, this fixes problems with volume and balance setting in some cases where timeout caused pcm_element to become NULL prematurely. Not sure if there could be any adverse side-effects to this, though...
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 May 2008 16:43:48 +0300
parents 03a2bb1c521e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2007
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
1 STATIC_LIB_NOINST = xmms2-daap.a
1407
776dd8fc2b38 DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
2
2007
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
3 SRCS = cc_handlers.c \
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
4 daap_conn.c \
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
5 daap_cmd.c \
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
6 daap_md5.c \
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
7 daap_util.c \
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
8 daap_mdns_dnssd.c \
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
9 daap_mdns_avahi.c \
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
10 daap_mdns_dummy.c
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
11 # daap_xform.c
1407
776dd8fc2b38 DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
12
2007
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
13 include ../../../buildsys.mk
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
14 include ../../../extra.mk
1407
776dd8fc2b38 DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
15
1450
69bff388b0f8 now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents: 1407
diff changeset
16 #For the moment i'm hardcoding it but it will be configurable
69bff388b0f8 now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents: 1407
diff changeset
17 #MDNS_IMPL=DAAP_MDNS_DNSSD
69bff388b0f8 now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents: 1407
diff changeset
18 MDNS_IMPL=DAAP_MDNS_AVAHI
69bff388b0f8 now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents: 1407
diff changeset
19 #MDNS_IMPL=DAAP_MDNS_DUMMY
1407
776dd8fc2b38 DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
20
2007
57ee341c180f Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 1450
diff changeset
21 WARN = -Wall -std=c99
2018
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2007
diff changeset
22 DEFINES = -D${MDNS_IMPL} -D_POSIX_SOURCE
1450
69bff388b0f8 now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents: 1407
diff changeset
23
2018
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2007
diff changeset
24 CFLAGS += ${PLUGIN_CFLAGS}
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2007
diff changeset
25 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${GLIB_CFLAGS} ${PICFLAGS} ${WARN} ${DEFINES}
03a2bb1c521e Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2007
diff changeset
26 LIBS += ${GLIB_LIBS}