Mercurial > audlegacy-plugins
annotate src/sid/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 | 2541c1ba98a5 |
children | eda1d6e7ea27 |
rev | line source |
---|---|
1801 | 1 PLUGIN = sid${PLUGIN_SUFFIX} |
2014
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
2 |
1801 | 3 SRCS = xs_init.c \ |
4 xs_about.c \ | |
5 xs_support.c \ | |
6 xs_config.c \ | |
7 xs_length.c \ | |
8 xs_genui.c \ | |
9 xs_glade.c \ | |
10 xs_interface.c \ | |
11 xs_stil.c \ | |
12 xs_fileinfo.c \ | |
13 xs_filter.c \ | |
14 xs_sidplay1.cc \ | |
15 xs_sidplay2.cc \ | |
16 xs_curve.c \ | |
17 xs_slsup.c \ | |
18 xmms-sid.c | |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
19 |
1801 | 20 include ../../buildsys.mk |
21 include ../../extra.mk | |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
22 |
2017
6d33dffd1382
Curly vs round braces (part 1)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2014
diff
changeset
|
23 plugindir := ${plugindir}/${INPUT_PLUGIN_DIR} |
2006
a56a26a5f233
Revised the plugindir logic.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1869
diff
changeset
|
24 |
1801 | 25 CFLAGS += ${PLUGIN_CFLAGS} |
26 CXXFLAGS += ${PLUGIN_CFLAGS} | |
2557
f0c34c3b61c0
Synchronized Autoconf/m4 cleanups from XMMS-SID.
Matti Hamalainen <ccr@tnsp.org>
parents:
2524
diff
changeset
|
27 CPPFLAGS += ${PLUGIN_CPPFLAGS} -D_REENTRANT -I../.. -DAUDACIOUS_PLUGIN ${MOWGLI_CFLAGS} ${SIDPLAY1_CFLAGS} ${SIDPLAY2_CFLAGS} ${BUILDERS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} |
2600
2541c1ba98a5
Use the md5 routines in libaudutil.
Matti Hamalainen <ccr@tnsp.org>
parents:
2557
diff
changeset
|
28 LIBS += ${BUILDERS_LDFLAGS} ${SIDPLAY1_LIBS} ${SIDPLAY2_LIBS} ${BUILDERS_LIBS} ${GTK_LIBS} ${GLIB_LIBS} -lstdc++ -laudutil |