Mercurial > audlegacy-plugins
annotate configure.ac @ 3155:4af16959f9d3
adapt to audlegacy
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Fri, 22 May 2009 19:11:38 +0900 |
parents | 7cb2239f78ea |
children | 6dd886b5c72b |
rev | line source |
---|---|
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1 dnl Process this file with autoconf to produce a configure script. |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
2 |
2967
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
3 AC_INIT([audlegacy-plugins], [1.9.0], [bugs+audacious-plugins@atheme.org]) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
4 AC_PREREQ([2.59]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
5 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
6 AC_CANONICAL_HOST |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
7 AC_CANONICAL_TARGET |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
8 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
9 AC_CONFIG_HEADERS([config.h]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
10 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
11 dnl libbeep |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
12 LIBBEEP_MAJOR_VERSION=2 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
13 LIBBEEP_MINOR_VERSION=0 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
14 LIBBEEP_MICRO_VERSION=0 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
15 LIBBEEP_VERSION=$LIBBEEP_MAJOR_VERSION.$LIBBEEP_MINOR_VERSION.$LIBBEEP_MICRO_VERSION |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
16 AC_SUBST(LIBBEEP_MAJOR_VERSION) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
17 AC_SUBST(LIBBEEP_MINOR_VERSION) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
18 AC_SUBST(LIBBEEP_MICRO_VERSION) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
19 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
20 dnl XXX kludge for FreeBSD |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
21 if test -d "/usr/X11R6/include"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
22 CPPFLAGS="$CPPFLAGS -I/usr/X11R6/include" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
23 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
24 |
1912
613e4c8bd14f
append audacious header path to CPPFLAGS when --prefix is specified. (since js hates CFLAGS in making deps. hehe.)
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
1910
diff
changeset
|
25 dnl append audacious header path to CPPFLAGS when --prefix is specified. |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
26 if test "x$prefix" != "xNONE" ; then |
1912
613e4c8bd14f
append audacious header path to CPPFLAGS when --prefix is specified. (since js hates CFLAGS in making deps. hehe.)
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
1910
diff
changeset
|
27 CPPFLAGS="$CPPFLAGS -I${includedir}" |
613e4c8bd14f
append audacious header path to CPPFLAGS when --prefix is specified. (since js hates CFLAGS in making deps. hehe.)
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
1910
diff
changeset
|
28 fi |
613e4c8bd14f
append audacious header path to CPPFLAGS when --prefix is specified. (since js hates CFLAGS in making deps. hehe.)
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
1910
diff
changeset
|
29 |
419 | 30 dnl OMK bootstrap |
31 AC_SUBST([PACKAGE], [AC_PACKAGE_TARNAME]) | |
32 AC_SUBST([VERSION], [AC_PACKAGE_VERSION]) | |
33 | |
34 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) | |
35 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]) | |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
36 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
37 dnl Check for C compiler |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
38 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
39 AC_PROG_CC |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
40 AC_PROG_CXX |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
41 AC_ISC_POSIX |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
42 AC_C_BIGENDIAN |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
43 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
44 if test "x$GCC" = "xyes"; then |
1973
f86cb7fc1d4f
Add -pipe -Wall if gcc and fix a few warnings.
Jonathan Schleifer <js@h3c.de>
parents:
1919
diff
changeset
|
45 CFLAGS="$CFLAGS -pipe -Wall" |
f86cb7fc1d4f
Add -pipe -Wall if gcc and fix a few warnings.
Jonathan Schleifer <js@h3c.de>
parents:
1919
diff
changeset
|
46 CXXFLAGS="$CXXFLAGS -pipe -Wall" |
f86cb7fc1d4f
Add -pipe -Wall if gcc and fix a few warnings.
Jonathan Schleifer <js@h3c.de>
parents:
1919
diff
changeset
|
47 fi |
1046
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
48 |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
49 dnl Locate a program and check that its version is acceptable. |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
50 dnl AC_PROG_CHECK_VER(var, namelist, version-switch, |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
51 dnl [version-extract-regexp], version-glob [, do-if-fail]) |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
52 AC_DEFUN([AC_CHECK_PROG_VER], |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
53 [AC_CHECK_PROGS([$1], [$2]) |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
54 if test -z "[$]$1"; then |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
55 ac_verc_fail=yes |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
56 else |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
57 # Found it, now check the version. |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
58 AC_MSG_CHECKING([version of [$]$1]) |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
59 changequote(<<,>>)dnl |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
60 ac_prog_version=`<<$>>$1 $3 2>&1 ifelse(<<$4>>,,, |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
61 <<| sed -n 's/^.*patsubst(<<$4>>,/,\/).*$/\1/p'>>)` |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
62 case $ac_prog_version in |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
63 '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
64 <<$5>>) |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
65 changequote([,])dnl |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
66 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
67 *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
68 |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
69 esac |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
70 AC_MSG_RESULT([$ac_prog_version]) |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
71 fi |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
72 ifelse([$6],,, |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
73 [if test $ac_verc_fail = yes; then |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
74 $6 |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
75 fi]) |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
76 ]) |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
77 |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
78 GCC42_CFLAGS="-fgnu89-inline" |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
79 AC_CHECK_PROG_VER(CC, ${ac_tool_prefix}gcc ${ac_tool_prefix}cc, -v, |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
80 [version \([egcygnustpi-]*[0-9.]*\)], [4.[2-9]* ], |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
81 GCC42_CFLAGS="") |
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
82 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
83 dnl Check for assembler |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
84 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
85 AM_PROG_AS |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
86 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
87 dnl Checks for various programs |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
88 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
89 AC_PROG_LN_S |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
90 AC_PROG_MAKE_SET |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
91 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
92 AC_PATH_PROG(RM, rm) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
93 AC_PATH_PROG(MV, mv) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
94 AC_PATH_PROG(CP, cp) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
95 AC_PATH_PROG(AR, ar) |
2800
ea4e97a98914
a fix for automatic plugin _CFGIDs to be generated
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2781
diff
changeset
|
96 AC_PATH_PROG(TR, tr) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
97 AC_PATH_PROG(RANLIB, ranlib) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
98 |
390 | 99 dnl Gettext -nenolod |
100 AM_GNU_GETTEXT([external]) | |
101 | |
2948
b4046e5c478e
Please don't use GNU-only stuff without providing an alternative?
Jonathan Schleifer <js-audacious@webkeks.org>
parents:
2938
diff
changeset
|
102 AC_CHECK_FUNC(strnlen, [AC_DEFINE(HAVE_STRNLEN, 1, [Whether we have strnlen])],) |
b4046e5c478e
Please don't use GNU-only stuff without providing an alternative?
Jonathan Schleifer <js-audacious@webkeks.org>
parents:
2938
diff
changeset
|
103 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
104 dnl Path settings |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
105 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
106 AC_ARG_WITH(dev-dsp, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
107 [ --with-dev-dsp=path Path to OSS DSP data pipe, default is /dev/dsp.], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
108 [dev_dsp=$withval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
109 [dev_dsp=/dev/dsp] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
110 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
111 AC_DEFINE_UNQUOTED(DEV_DSP, "$dev_dsp", |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
112 [Path to OSS DSP, really just a data pipe, default is /dev/dsp.] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
113 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
114 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
115 AC_ARG_WITH(dev-mixer, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
116 [ --with-dev-mixer=path Path to OSS sound mixer, default is /dev/mixer.], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
117 [dev_mixer=$withval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
118 [dev_mixer=/dev/mixer] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
119 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
120 AC_DEFINE_UNQUOTED(DEV_MIXER, "$dev_mixer", |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
121 [Path to OSS mixer, default is /dev/mixer.] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
122 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
123 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
124 dnl These plugins are always built. |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
125 |
2961 | 126 INPUT_PLUGINS="tonegen console sexypsf psf2 xsf cue alac metronom vtx" |
3060
ff7130782918
Connect crossfade-ng to buildsystem.
William Pitcock <nenolod@atheme.org>
parents:
3043
diff
changeset
|
127 OUTPUT_PLUGINS="crossfade null" |
2518
eef3a506a2b8
Add crystalizer plugin.
William Pitcock <nenolod@atheme.org>
parents:
2494
diff
changeset
|
128 EFFECT_PLUGINS="audiocompress crystalizer ladspa voice_removal sndstretch stereo_plugin echo_plugin" |
3100
62adf7fe5a6f
vfstrace: add to build
William Pitcock <nenolod@atheme.org>
parents:
3085
diff
changeset
|
129 GENERAL_PLUGINS="song_change alarm skins vfstrace" |
146
03cfb311eafd
[svn] - spectrum analyzer plugin based on blurscope and a little of xmms-finespectrum
nenolod
parents:
144
diff
changeset
|
130 VISUALIZATION_PLUGINS="blur_scope spectrum" |
1173
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
131 CONTAINER_PLUGINS="m3u pls" |
3085
ac0af6b39272
Introduce new GIO plugin to buildsystem. stdio is now deprecated.
William Pitcock <nenolod@atheme.org>
parents:
3060
diff
changeset
|
132 TRANSPORT_PLUGINS="gio" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
133 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
134 dnl Check for Audacious |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
135 |
2967
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
136 PKG_CHECK_MODULES(AUDLEGACY, [audlegacy >= 1.9.0], |
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
137 [ADD_PC_REQUIRES([audlegacy >= 1.9.0])], |
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
138 [AC_MSG_ERROR([Cannot find Audlegacy 1.9.0 or later, have you installed audlegacy yet?])] |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
139 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
140 |
1005
2346d918470d
[svn] Fixed rootvis' config to only declare stuff once; modified alarm.c to use dbus and made appropriate changes to the build system.
magma
parents:
1001
diff
changeset
|
141 dnl Check for GTK/GLib/GThread/Pango/DBus |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
142 |
3085
ac0af6b39272
Introduce new GIO plugin to buildsystem. stdio is now deprecated.
William Pitcock <nenolod@atheme.org>
parents:
3060
diff
changeset
|
143 PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.16.0 gthread-2.0], |
ac0af6b39272
Introduce new GIO plugin to buildsystem. stdio is now deprecated.
William Pitcock <nenolod@atheme.org>
parents:
3060
diff
changeset
|
144 [ADD_PC_REQUIRES([glib-2.0 >= 2.16.0])], |
ac0af6b39272
Introduce new GIO plugin to buildsystem. stdio is now deprecated.
William Pitcock <nenolod@atheme.org>
parents:
3060
diff
changeset
|
145 [AC_MSG_ERROR([Cannot find Glib2 >= 2.16.0])] |
578
550c9e382cf8
[svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents:
560
diff
changeset
|
146 ) |
550c9e382cf8
[svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents:
560
diff
changeset
|
147 |
2447
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
148 PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.10.0], |
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
149 [ADD_PC_REQUIRES([gtk+-2.0 >= 2.10.0])], |
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
150 [AC_MSG_ERROR([Cannot find Gtk+2 >= 2.10.0])] |
578
550c9e382cf8
[svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents:
560
diff
changeset
|
151 ) |
550c9e382cf8
[svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents:
560
diff
changeset
|
152 |
3107
2a8eb3450ea4
Link GIO plugin against libgio.
John Lindgren <john.lindgren@tds.net>
parents:
3100
diff
changeset
|
153 PKG_CHECK_MODULES(GIO, [gio-2.0 >= 2.0], |
2a8eb3450ea4
Link GIO plugin against libgio.
John Lindgren <john.lindgren@tds.net>
parents:
3100
diff
changeset
|
154 [ADD_PC_REQUIRES([gio-2.0 >= 2.0])], |
2a8eb3450ea4
Link GIO plugin against libgio.
John Lindgren <john.lindgren@tds.net>
parents:
3100
diff
changeset
|
155 [AC_MSG_ERROR([Cannot find GIO >= 2.0])] |
2a8eb3450ea4
Link GIO plugin against libgio.
John Lindgren <john.lindgren@tds.net>
parents:
3100
diff
changeset
|
156 ) |
2a8eb3450ea4
Link GIO plugin against libgio.
John Lindgren <john.lindgren@tds.net>
parents:
3100
diff
changeset
|
157 |
578
550c9e382cf8
[svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents:
560
diff
changeset
|
158 PKG_CHECK_MODULES(PANGO, [pango >= 1.8.0], |
550c9e382cf8
[svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents:
560
diff
changeset
|
159 [ADD_PC_REQUIRES([pango >= 1.8.0])], |
2447
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
160 [AC_MSG_ERROR([Cannot find Pango >= 1.8.0])] |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
161 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
162 |
1233 | 163 AC_ARG_ENABLE(dbus, |
164 [ --enable-dbus enable DBus support (default=yes)], | |
165 enable_dbus=$enableval, enable_dbus=yes) | |
2178
852fb48fcc67
Fix bashism in the configure script.
William Pitcock <nenolod@atheme.org>
parents:
2176
diff
changeset
|
166 if test "x$enable_dbus" = "xyes"; then |
1233 | 167 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60 dbus-glib-1 >= 0.60], |
168 [ADD_PC_REQUIRES([dbus-1 >= 0.60 dbus-glib-1 >= 0.60]) | |
169 AC_DEFINE(USE_DBUS, 1, [Define if D-Bus support enabled])], | |
170 [AC_MSG_ERROR([Cannot find dbus-glib >= 0.60])] | |
171 ]) | |
1234 | 172 fi |
1005
2346d918470d
[svn] Fixed rootvis' config to only declare stuff once; modified alarm.c to use dbus and made appropriate changes to the build system.
magma
parents:
1001
diff
changeset
|
173 |
2447
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
174 |
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
175 dnl Check for libmowgli. |
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
176 |
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
177 PKG_CHECK_MODULES(MOWGLI, [libmowgli >= 0.4.0], |
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
178 [ADD_PC_REQUIRES([libmowgli >= 0.4.0])], |
bfa3d9faa4f0
Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents:
2445
diff
changeset
|
179 [AC_MSG_ERROR([Cannot find libmowgli >= 0.4.0, try http://www.atheme.org/projects/mowgli.shtml])] |
1173
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
180 ) |
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
181 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
182 dnl IPv6 support |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
183 dnl ======================== |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
184 AC_ARG_ENABLE(ipv6, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
185 [ --enable-ipv6 enable IPv6 support (default=no)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
186 enable_ipv6=$enableval, enable_ipv6=no) |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
187 if test "x$enable_ipv6" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
188 AC_DEFINE(USE_IPV6,, [Define if building with IPv6 support] ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
189 fi |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
190 AM_CONDITIONAL(USE_IPV6,test "x$enable_ipv6" = "xyes") |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
191 AC_SUBST(USE_IPV6) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
192 |
44 | 193 dnl chardet support |
194 dnl ======================== | |
195 AC_ARG_ENABLE(chardet, | |
196 [ --enable-chardet enable character set detection support (default=no)], | |
197 enable_chardet=$enableval, enable_chardet=no) | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
198 if test "x$enable_chardet" = "xyes"; then |
44 | 199 AC_DEFINE(USE_CHARDET, 1, [Define if character set detection enabled] ) |
200 fi | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
201 AM_CONDITIONAL(USE_CHARDET,test "x$enable_chardet" = "xyes") |
44 | 202 AC_SUBST(USE_CHARDET) |
203 | |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
204 dnl plugin stuff |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
205 dnl ======================== |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
206 |
1879
81cdc01db60e
Update buildsys (adds ${PROG_SUFFIX}).
Jonathan Schleifer <js@h3c.de>
parents:
1863
diff
changeset
|
207 BUILDSYS_SHARED_LIB |
1909 | 208 BUILDSYS_PROG_IMPLIB |
2967
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
209 test "x$PROG_IMPLIB_NEEDED" = "xyes" && LIBS="$LIBS -L\${libdir} -laudlegacy.exe" |
1764
0b6e61f2f22b
Connect Mk2 to autoconf.
William Pitcock <nenolod@atheme.org>
parents:
1724
diff
changeset
|
210 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
211 dnl Ok, first we find out what flags we need to use. |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
212 AC_MSG_CHECKING([for what extension and flags to use for plugin compilation]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
213 case "$target" in |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
214 *-apple-*) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
215 AC_MSG_RESULT([Mac OS X: -fPIC -bundle -fno-common -flat_namespace -undefined suppress, .dylib]) |
1260
e1df1bad7837
MacOS target: Build modules with -fno-common.
William Pitcock <nenolod@atheme-project.org>
parents:
1237
diff
changeset
|
216 PICFLAGS="-DPIC -fno-common" |
1540
8efa68ee4d5a
audacious-plugins: -single-module on OSX.
William Pitcock <nenolod@atheme.org>
parents:
1523
diff
changeset
|
217 PICLDFLAGS="-DPIC -bundle -fno-common -flat_namespace -undefined suppress -single_module" |
8efa68ee4d5a
audacious-plugins: -single-module on OSX.
William Pitcock <nenolod@atheme.org>
parents:
1523
diff
changeset
|
218 LIBLDFLAGS="-dynamiclib -single_module" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
219 AUDLDFLAGS="" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
220 SHARED_SUFFIX=".dylib" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
221 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
222 *) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
223 AC_MSG_RESULT([libdl-compatible: -fPIC -DPIC -shared, .so]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
224 PICFLAGS="-fPIC -DPIC" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
225 PICLDFLAGS="-fPIC -DPIC -shared" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
226 LIBLDFLAGS="-fPIC -DPIC -shared" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
227 SHARED_SUFFIX=".so" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
228 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
229 esac |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
230 AC_SUBST(PICFLAGS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
231 AC_SUBST(PICLDFLAGS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
232 AC_SUBST(LIBLDFLAGS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
233 AC_SUBST(SHARED_SUFFIX) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
234 AC_DEFINE_UNQUOTED(SHARED_SUFFIX, "${SHARED_SUFFIX}", |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
235 [Define the shared module suffix extension on your platform.]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
236 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
237 AC_MSG_CHECKING([if you are running Apple-GCC]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
238 case "$target" in |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
239 *-apple-*) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
240 AC_MSG_RESULT([yes, sorry you poor bastard]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
241 LDFLAGS="$LDFLAGS -Wl,-framework -Wl,CoreFoundation -Wl,-framework -Wl,CoreServices" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
242 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
243 *) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
244 AC_MSG_RESULT([no]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
245 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
246 esac |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
247 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
248 dnl Check for esound |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
249 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
250 AC_ARG_ENABLE( esd, |
2769
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
251 [ --disable-esd disable esound output plugin (default=enabled)], |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
252 [enable_esd=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
253 [enable_esd="yes"] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
254 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
255 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
256 if test "x$enable_esd" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
257 PKG_CHECK_MODULES(ESD, [esound >= 0.2], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
258 [have_esd=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
259 OUTPUT_PLUGINS="$OUTPUT_PLUGINS esd"], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
260 [have_esd=no] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
261 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
262 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
263 AC_MSG_RESULT([*** esound plugin disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
264 have_esd=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
265 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
266 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
267 dnl Check for PulseAudio |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
268 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
269 AC_ARG_ENABLE( pulse, |
2769
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
270 [ --disable-pulse disable PulseAudio output plugin (default=enabled)], |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
271 [enable_pulse=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
272 [enable_pulse="yes"] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
273 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
274 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
275 if test "x$enable_pulse" = "xyes"; then |
2399
dd2c14a4c9f1
Change required pulseaudio version to 0.9.9 because some PA_SAMPLE_S32 formats are not defined in older versions.
Christian Birchinger <joker@netswarm.net>
parents:
2359
diff
changeset
|
276 PKG_CHECK_MODULES(PULSE, [libpulse >= 0.9.9], |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
277 [have_pulse=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
278 OUTPUT_PLUGINS="$OUTPUT_PLUGINS pulse_audio"], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
279 [have_pulse=no] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
280 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
281 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
282 AC_MSG_RESULT([*** pulseaudio output plugin disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
283 have_pulse=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
284 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
285 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
286 dnl *** CoreAudio |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
287 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
288 AC_ARG_ENABLE(coreaudio, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
289 [ --disable-coreaudio disable CoreAudio output plugin (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
290 [enable_coreaudio=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
291 [enable_coreaudio="yes"] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
292 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
293 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
294 if test "x$enable_coreaudio" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
295 AC_CHECK_HEADERS([CoreServices/CoreServices.h], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
296 [have_coreaudio=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
297 OUTPUT_PLUGINS="$OUTPUT_PLUGINS CoreAudio"], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
298 [have_coreaudio=no]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
299 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
300 AC_MSG_RESULT([*** CoreAudio output plugin disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
301 have_coreaudio=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
302 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
303 |
2770
9bc47b31404a
added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2769
diff
changeset
|
304 dnl *** Icecast |
9bc47b31404a
added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2769
diff
changeset
|
305 |
2769
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
306 AC_ARG_ENABLE( icecast, |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
307 [ --disable-icecast disable Icecast output plugin (default=enabled)], |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
308 [enable_icecast=$enableval], |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
309 [enable_icecast="yes"] |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
310 ) |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
311 |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
312 if test "x$enable_icecast" = "xyes"; then |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
313 PKG_CHECK_MODULES(SHOUT, [shout >= 2.0], |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
314 [have_shout=yes |
2778
28d9a2148cad
fixed plugins build order: filewriter needs to be built before icecast
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2777
diff
changeset
|
315 enable_filewriter=yes], |
2769
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
316 [have_shout=no] |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
317 ) |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
318 else |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
319 AC_MSG_RESULT([*** icecast output plugin disabled per user request ***]) |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
320 have_shout=no |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
321 fi |
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
322 |
2770
9bc47b31404a
added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2769
diff
changeset
|
323 AC_SUBST(SHOUT_CFLAGS) |
9bc47b31404a
added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2769
diff
changeset
|
324 AC_SUBST(SHOUT_LIBS) |
9bc47b31404a
added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2769
diff
changeset
|
325 |
1710
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
326 dnl *** Dock Album Art (MacOS) |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
327 |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
328 AC_ARG_ENABLE(dockalbumart, |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
329 [ --disable-dockalbumart disable MacOS dock albumart plugin (default=guess)], |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
330 [enable_dockalbumart=$enableval], |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
331 [enable_dockalbumart="yes"] |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
332 ) |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
333 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
334 if test "x$enable_dockalbumart" = "xyes"; then |
1710
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
335 AC_CHECK_HEADERS([Carbon/Carbon.h], |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
336 [have_dockalbumart=yes |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
337 GENERAL_PLUGINS="$GENERAL_PLUGINS dockalbumart"], |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
338 [have_dockalbumart=no]) |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
339 else |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
340 AC_MSG_RESULT([*** DockAlbumArt plugin disabled per user request ***]) |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
341 have_dockalbumart=no |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
342 fi |
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
343 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
344 dnl *** AltiVec |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
345 |
1138
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
346 AC_ARG_ENABLE(altivec, |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
347 [ --disable-altivec disable AltiVec support. (default=enabled) ], |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
348 [enable_altivec=$enableval], |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
349 [enable_altivec=yes] |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
350 ) |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
351 if test "x$enable_altivec" = "xyes"; then |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
352 AC_CHECK_HEADERS(altivec.h, |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
353 [AC_DEFINE(HAVE_ALTIVEC, 1, [Define to 1 if your system has AltiVec.]) |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
354 AC_DEFINE(HAVE_ALTIVEC_H, 1, [Define to 1 if your system has an altivec.h file.]) |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
355 AC_DEFINE(ARCH_POWERPC, 1, [Define to 1 if your system is a PowerPC.]) |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
356 DCT64=dct64_altivec.c |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
357 SIMD_CFLAGS=-maltivec |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
358 AC_SUBST(SIMD_CFLAGS)], |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
359 [DCT64=dct64.c] |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
360 ) |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
361 fi |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
362 AC_SUBST(DCT64) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
363 |
922
7e14701aef54
[svn] - replace random number generator in dithering code with SIMD-oriented Fast Mersenne Twister (SFMT). it reduces CPU load on SSE2 or AltiVec capable platform.
yaz
parents:
908
diff
changeset
|
364 dnl *** SSE2 |
7e14701aef54
[svn] - replace random number generator in dithering code with SIMD-oriented Fast Mersenne Twister (SFMT). it reduces CPU load on SSE2 or AltiVec capable platform.
yaz
parents:
908
diff
changeset
|
365 |
1138
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
366 AC_ARG_ENABLE(sse2, |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
367 [ --disable-sse2 disable SSE2 support. (default=enabled) ], |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
368 [enable_sse2=$enableval], |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
369 [enable_sse2=yes] |
923 | 370 ) |
1138
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
371 if test "x$enable_sse2" = "xyes"; then |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
372 AC_MSG_CHECKING(SSE2) |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
373 ac_save_CFLAGS="$CFLAGS" |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
374 CFLAGS="-msse2" |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
375 AC_TRY_RUN([ |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
376 #include <emmintrin.h> |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
377 int main() |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
378 { |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
379 _mm_setzero_pd(); |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
380 return 0; |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
381 } |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
382 ], |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
383 [AC_MSG_RESULT(SSE2 yes) |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
384 AC_DEFINE(HAVE_SSE2, 1, [Define to 1 if your system has SSE2]) |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
385 SIMD_CFLAGS=-msse2], |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
386 [AC_MSG_RESULT(SSE2 no)], |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
387 ) |
402ee2120cb1
[svn] - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
giacomo
parents:
1083
diff
changeset
|
388 fi |
923 | 389 AC_SUBST(SIMD_CFLAGS) |
390 CFLAGS="$ac_save_CFLAGS" | |
922
7e14701aef54
[svn] - replace random number generator in dithering code with SIMD-oriented Fast Mersenne Twister (SFMT). it reduces CPU load on SSE2 or AltiVec capable platform.
yaz
parents:
908
diff
changeset
|
391 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
392 dnl *** MP3 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
393 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
394 AC_ARG_ENABLE(mp3, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
395 [ --disable-mp3 disable mp3 plugin. (default=enabled) ], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
396 [enable_mp3=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
397 [enable_mp3=yes] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
398 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
399 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
400 if test "x$enable_mp3" = "xyes"; then |
2125
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
401 AM_PATH_LIBMAD([enable_mp3=yes], |
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
402 [AC_MSG_WARN([*** Cannot find libmad, mp3 plugin will not be built ***]) |
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
403 enable_mp3=no] |
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
404 ) |
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
405 else |
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
406 AC_MSG_RESULT([*** mp3 plugin disabled per user request ***]) |
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
407 enable_mp3=no |
634 | 408 fi |
2125
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
409 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
410 if test "x$enable_mp3" = "xyes"; then |
2359
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
411 AC_MSG_CHECKING(mad.h suitability) |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
412 ac_save_CFLAGS="$CFLAGS" |
2967
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
413 CFLAGS="$CFLAGS $MAD_CFLAGS $AUDLEGACY_CFLAGS" |
2359
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
414 AC_TRY_RUN( |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
415 [ |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
416 #include <mad.h> |
2972 | 417 #include <audlegacy/plugin.h> |
2359
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
418 int main() |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
419 { |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
420 return (MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__) ? 0 : 1; |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
421 } |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
422 ], |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
423 [AC_MSG_RESULT(yes)], |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
424 [ |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
425 AC_MSG_RESULT(no) |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
426 enable_mp3=no |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
427 ], |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
428 ) |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
429 CFLAGS="$ac_save_CFLAGS" |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
430 fi |
b3475063c000
little help to yaz: build-time check for MAD_F_FRACBITS == __AUDACIOUS_ASSUMED_MAD_F_FRACBITS__
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2343
diff
changeset
|
431 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
432 if test "x$enable_mp3" = "xyes"; then |
2125
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
433 INPUT_PLUGINS="$INPUT_PLUGINS madplug" |
5c33e8e1a479
- add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2102
diff
changeset
|
434 fi |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
435 |
2102
42a16b5e5151
try to fill in MAD_CFLAGS/MAD_LIBS with sensible defaults. enforce AC_SUBST().
William Pitcock <nenolod@atheme.org>
parents:
2097
diff
changeset
|
436 AC_SUBST(MAD_CFLAGS) |
42a16b5e5151
try to fill in MAD_CFLAGS/MAD_LIBS with sensible defaults. enforce AC_SUBST().
William Pitcock <nenolod@atheme.org>
parents:
2097
diff
changeset
|
437 AC_SUBST(MAD_LIBS) |
42a16b5e5151
try to fill in MAD_CFLAGS/MAD_LIBS with sensible defaults. enforce AC_SUBST().
William Pitcock <nenolod@atheme.org>
parents:
2097
diff
changeset
|
438 |
327
f3f77cbd58f3
[svn] Add support for Apple PMU front LED to Rocklight. Tested on PowerBook 5,9; works but is rather slow to update.
chainsaw
parents:
315
diff
changeset
|
439 dnl *** Rocklight |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
440 |
411 | 441 AC_ARG_ENABLE(rocklight, |
442 AS_HELP_STRING([--disable-rocklight], [disable Rocklight vis plugin (default=enabled)]), | |
443 [enable_rocklight="$enableval"], | |
444 [enable_rocklight="yes"] | |
445 ) | |
446 | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
447 if test "x$enable_rocklight" = "xyes"; then |
411 | 448 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS rocklight" |
449 fi | |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
450 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
451 dnl *** LIRC client libraries |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
452 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
453 AC_ARG_ENABLE(lirc, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
454 [ --disable-lirc disable LIRC plugin (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
455 [enable_lirc=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
456 [enable_lirc="yes"] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
457 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
458 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
459 if test "x$enable_lirc" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
460 AC_CHECK_LIB([lirc_client],[lirc_init],[have_lirc=yes],[have_lirc=no]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
461 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
462 AC_MSG_RESULT([*** LIRC plugin disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
463 have_lirc="no" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
464 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
465 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
466 if test "x$have_lirc" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
467 GENERAL_PLUGINS="$GENERAL_PLUGINS lirc" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
468 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
469 |
422
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
470 dnl *** EvDev-Plug general plugin (only built on Linux) |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
471 |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
472 AC_ARG_ENABLE(evdevplug, |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
473 [ --disable-evdevplug disable Linux evdev plugin (default=enabled)], |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
474 [enable_evdevplug=$enableval], |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
475 [enable_evdevplug="yes"] |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
476 ) |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
477 |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
478 if test "x$enable_evdevplug" = "xyes"; then |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
479 case "$target" in |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
480 *-*-linux*) |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
481 have_evdevplug="yes" |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
482 ;; |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
483 *) |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
484 AC_MSG_RESULT([*** Linux evdev plugin disabled (host does not run linux) ***]) |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
485 have_evdevplug="no" |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
486 ;; |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
487 esac |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
488 else |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
489 AC_MSG_RESULT([*** Linux evdev plugin disabled per user request ***]) |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
490 have_evdevplug="no" |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
491 fi |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
492 |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
493 if test "x$have_evdevplug" = "xyes"; then |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
494 GENERAL_PLUGINS="$GENERAL_PLUGINS evdev-plug" |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
495 fi |
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
496 |
1543
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
497 dnl *** Global Hotkey general plugin (only built on X11) |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
498 |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
499 AC_ARG_ENABLE(hotkey, |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
500 [ --disable-hotkey disable global hotkey plugin (default=enabled)], |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
501 [enable_hotkey=$enableval], |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
502 [enable_hotkey="yes"] |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
503 ) |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
504 |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
505 if test "x$enable_hotkey" = "xyes"; then |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
506 have_hotkey="yes" |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
507 PKG_CHECK_MODULES(GDKX11,[gdk-x11-2.0 >= 2.6.0],,[have_hotkey="no"]) |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
508 else |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
509 AC_MSG_RESULT([*** X11 Global Hotkey plugin disabled per user request ***]) |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
510 have_hotkey="no" |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
511 fi |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
512 |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
513 if test "x$have_hotkey" = "xyes"; then |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
514 GENERAL_PLUGINS="$GENERAL_PLUGINS hotkey" |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
515 fi |
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
516 |
1724
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
517 dnl *** Gnome Shortcuts Plugin |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
518 |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
519 AC_ARG_ENABLE(gnomeshortcuts, |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
520 [ --disable-gnomeshortcuts disable gnome shortcuts (default=enabled)], |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
521 [enable_gnomeshortcuts=$enableval], |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
522 [enable_gnomeshortcuts="yes"] |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
523 ) |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
524 |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
525 if test "x$enable_gnomeshortcuts" = "xyes"; then |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
526 have_gnomeshortcuts="yes" |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
527 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60 dbus-glib-1 >= 0.60],, |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
528 [AC_MSG_ERROR([Cannot find dbus-glib >= 0.60 for gnomeshortcuts plugin])]) |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
529 else |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
530 AC_MSG_RESULT([*** Gnome Shortcuts Plugin disabled per user request ***]) |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
531 have_gnomeshortcuts="no" |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
532 fi |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
533 |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
534 if test "x$have_gnomeshortcuts" = "xyes"; then |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
535 GENERAL_PLUGINS="$GENERAL_PLUGINS gnomeshortcuts" |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
536 fi |
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
537 |
433
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
538 dnl *** Status Icon plugin (for X11 only) |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
539 |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
540 AC_ARG_ENABLE(statusicon, |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
541 [ --disable-statusicon disable X11 Status Icon plugin (default=enabled)], |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
542 [enable_statusicon=$enableval], |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
543 [enable_statusicon="yes"] |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
544 ) |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
545 |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
546 if test "x$enable_statusicon" = "xyes"; then |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
547 have_statusicon="yes" |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
548 PKG_CHECK_MODULES(GDKX11,[gdk-x11-2.0 >= 2.6.0],,[have_statusicon="no"]) |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
549 else |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
550 AC_MSG_RESULT([*** X11 Status Icon plugin disabled per user request ***]) |
856 | 551 have_statusicon="no" |
433
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
552 fi |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
553 |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
554 if test "x$have_statusicon" = "xyes"; then |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
555 GENERAL_PLUGINS="$GENERAL_PLUGINS statusicon" |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
556 fi |
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
557 |
579 | 558 dnl *** Audacious OSD plugin (pangocairo-based) |
559 | |
560 AC_ARG_ENABLE(aosd, | |
908
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
561 [ --disable-aosd disable Audacious OSD plugin (default=enabled)], |
579 | 562 [enable_aosd=$enableval], |
933 | 563 [enable_aosd="guess"] |
579 | 564 ) |
565 | |
908
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
566 AC_ARG_ENABLE(aosd_xcomp, |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
567 [ --disable-aosd-xcomp disable Audacious OSD X Composite Support (default=enabled)], |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
568 [enable_aosd_xcomp=$enableval], |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
569 [enable_aosd_xcomp="yes"] |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
570 ) |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
571 |
933 | 572 if test "x$enable_aosd" = "xguess"; then |
579 | 573 have_aosd="yes" |
574 PKG_CHECK_MODULES(PANGO,[pango >= 1.14.7],, | |
575 [have_aosd="no" | |
576 AC_MSG_RESULT([*** pango >= 1.14.7 is required for Audacious OSD plugin ***])] | |
577 ) | |
578 PKG_CHECK_MODULES(CAIRO,[cairo >= 1.2.6],, | |
579 [have_aosd="no" | |
580 AC_MSG_RESULT([*** cairo >= 1.2.6 is required for Audacious OSD plugin ***])] | |
581 ) | |
582 PKG_CHECK_MODULES(PANGOCAIRO,[pangocairo >= 1.14.7],, | |
583 [have_aosd="no" | |
584 AC_MSG_RESULT([*** pangocairo >= 1.14.7 is required for Audacious OSD plugin ***])] | |
585 ) | |
908
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
586 PKG_CHECK_MODULES(XRENDER, xrender,, |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
587 [have_aosd="no" |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
588 AC_MSG_RESULT([*** X Render extension is required for Audacious OSD plugin ***])] |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
589 ) |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
590 if test "x$enable_aosd_xcomp" = "xyes"; then |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
591 have_aosd_xcomp="yes" |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
592 PKG_CHECK_MODULES(XCOMPOSITE, xcomposite, |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
593 [AC_DEFINE([HAVE_XCOMPOSITE],[],[X Composite extension available])], |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
594 [have_aosd_xcomp="no" |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
595 AC_MSG_RESULT([*** X Composite extension not found, composite support for Audacious OSD will not be compiled ***])] |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
596 ) |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
597 else |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
598 AC_MSG_RESULT([*** X Composite support for Audacious OSD plugin disabled per user request ***]) |
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
599 have_aosd_xcomp="no" |
933 | 600 fi |
579 | 601 else |
933 | 602 if test "x$enable_aosd" = "xyes"; then |
603 AC_MSG_RESULT([*** Audacious OSD plugin has been forcefully enabled ***]) | |
604 have_aosd="yes" | |
605 if test "x$enable_aosd_xcomp" = "xyes"; then | |
606 have_aosd_xcomp="yes" | |
607 PKG_CHECK_MODULES(XCOMPOSITE, xcomposite, | |
608 [AC_DEFINE([HAVE_XCOMPOSITE],[],[X Composite extension available])], | |
609 [have_aosd_xcomp="no" | |
610 AC_MSG_RESULT([*** X Composite extension not found, composite support for Audacious OSD will not be compiled ***])] | |
611 ) | |
612 else | |
613 AC_MSG_RESULT([*** X Composite support for Audacious OSD plugin disabled per user request ***]) | |
614 have_aosd_xcomp="no" | |
615 fi | |
616 else | |
617 AC_MSG_RESULT([*** Audacious OSD plugin disabled per user request ***]) | |
618 have_aosd="no" | |
619 fi | |
579 | 620 fi |
621 | |
622 if test "x$have_aosd" = "xyes"; then | |
623 GENERAL_PLUGINS="$GENERAL_PLUGINS aosd" | |
624 fi | |
625 | |
900
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
626 dnl *** Rootwindow vis plugin (imlib2 based) |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
627 |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
628 AC_ARG_ENABLE(rootvis, |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
629 [ --disable-rootvis disable X11 RootWindow vis plugin (default=enabled)], |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
630 [enable_rootvis=$enableval], |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
631 [enable_rootvis="yes"] |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
632 ) |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
633 |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
634 if test "x$enable_rootvis" = "xyes"; then |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
635 have_rootvis="yes" |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
636 PKG_CHECK_MODULES(IMLIB2, [imlib2 >= 1.1.0],, |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
637 [have_rootvis="no" |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
638 AC_MSG_RESULT([*** imlib2 >= 1.1.0 is required for Audacious RootVis plugin ***])] |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
639 ) |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
640 else |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
641 AC_MSG_RESULT([*** RootVis plugin disabled per user request ***]) |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
642 have_rootvis="no" |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
643 fi |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
644 |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
645 if test "x$have_rootvis" = "xyes"; then |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
646 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS rootvis" |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
647 fi |
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
648 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
649 dnl *** AdPlug requirement (libbinio) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
650 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
651 AC_ARG_ENABLE(adplug, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
652 [ --disable-adplug disable AdPlug plugin (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
653 [enable_adplug=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
654 [enable_adplug="yes"] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
655 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
656 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
657 if test "x$enable_adplug" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
658 have_adplug="yes" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
659 PKG_CHECK_MODULES(BINIO,[libbinio >= 1.4],,[have_adplug=no]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
660 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
661 AC_MSG_RESULT([*** AdPlug plugin disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
662 have_adplug="no" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
663 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
664 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
665 if test "x$have_adplug" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
666 INPUT_PLUGINS="$INPUT_PLUGINS adplug" |
2002
d7642cf63ae5
make adplug compile again.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2000
diff
changeset
|
667 AC_SUBST(BINIO_CFLAGS) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
668 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
669 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
670 dnl *** Ogg Vorbis |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
671 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
672 AC_ARG_ENABLE(vorbis, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
673 [ --disable-vorbis disable Ogg Vorbis input plugin (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
674 [enable_vorbis=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
675 [enable_vorbis="yes"] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
676 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
677 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
678 if test "x$enable_vorbis" = "xyes"; then |
2141
c266c29a36c5
require libvorbis 1.2 due to undefined behaviour in 1.1.x.
William Pitcock <nenolod@atheme.org>
parents:
2139
diff
changeset
|
679 PKG_CHECK_MODULES(OGG_VORBIS, [ogg >= 1.0 vorbis >= 1.2 vorbisfile >= 1.2], |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
680 [have_oggvorbis=yes], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
681 [AC_MSG_WARN([*** Cannot find libogg/libvorbis, Ogg Vorbis support will not be built ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
682 have_oggvorbis=no] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
683 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
684 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
685 AC_MSG_RESULT([*** Ogg Vorbis plugin disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
686 have_oggvorbis=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
687 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
688 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
689 if test "x$have_oggvorbis" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
690 INPUT_PLUGINS="$INPUT_PLUGINS vorbis" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
691 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
692 |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
693 dnl *** FLACng (in progress replacement to XMMS-flac port) |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
694 |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
695 AC_ARG_ENABLE(flacng, |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
696 [ --disable-flacng disable flac input plugin (default=enabled)], |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
697 [enable_flacng=$enableval], |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
698 [enable_flacng="yes"] |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
699 ) |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
700 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
701 if test "x$enable_flacng" = "xyes"; then |
1309
e25e32e7d44e
Autoconf flac-config wrangling magic for FLAC 1.1.2.
William Pitcock <nenolod@atheme-project.org>
parents:
1294
diff
changeset
|
702 AM_PATH_LIBFLAC([have_flacng=yes], |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
703 [AC_MSG_WARN([*** Cannot find libFLAC, FLACng will not be built ***]) |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
704 have_flacng=no] |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
705 ) |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
706 else |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
707 AC_MSG_RESULT([*** FLACng plugin disabled per user request ***]) |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
708 have_flacng=no |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
709 fi |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
710 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
711 if test "x$have_flacng" = "xyes"; then |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
712 INPUT_PLUGINS="$INPUT_PLUGINS flacng" |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
713 fi |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
714 |
110 | 715 dnl *** WavPack 4.31 support |
716 | |
717 AC_ARG_ENABLE(wavpack, | |
718 [ --disable-wavpack disable WavPack input plugin (default=enabled)], | |
719 [enable_wavpack=$enableval], | |
720 [enable_wavpack="yes"] | |
721 ) | |
722 | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
723 if test "x$enable_wavpack" = "xyes"; then |
110 | 724 PKG_CHECK_MODULES(WAVPACK, [wavpack >= 4.31], |
725 [have_wavpack=yes], | |
726 [AC_MSG_WARN([*** Cannot find WavPack 4.31+, WavPack support will not be built ***]) | |
727 have_wavpack=no] | |
728 ) | |
729 else | |
730 AC_MSG_RESULT([*** WavPack plugin disabled per user request ***]) | |
731 have_wavpack=no | |
732 fi | |
733 | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
734 if test "x$have_wavpack" = "xyes"; then |
110 | 735 INPUT_PLUGINS="$INPUT_PLUGINS wavpack" |
736 fi | |
737 | |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
738 dnl *** AAC |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
739 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
740 AC_ARG_ENABLE(aac, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
741 [ --disable-aac disable aac plugin (default=enabled) ], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
742 [enable_aac=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
743 [enable_aac=yes] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
744 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
745 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
746 if test "x$enable_aac" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
747 INPUT_PLUGINS="$INPUT_PLUGINS aac" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
748 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
749 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
750 dnl *** sndfile |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
751 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
752 AC_ARG_ENABLE(sndfile, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
753 [ --disable-sndfile disable sndfile extensions. [default=enabled] ], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
754 [enable_sndfile=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
755 [enable_sndfile=yes] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
756 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
757 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
758 if test "x$enable_sndfile" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
759 PKG_CHECK_MODULES(SNDFILE, [sndfile >= 0.19], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
760 [enable_sndfile=yes], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
761 [enable_sndfile=no] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
762 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
763 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
764 AC_MSG_RESULT([*** libsndfile extensions disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
765 enable_sndfile=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
766 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
767 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
768 if test "x$enable_sndfile" = "xyes"; then |
2303
5561e63e9133
threw out the WAV plugin in favour of the sndfile plugin
mf0102 <0102@gmx.at>
parents:
2182
diff
changeset
|
769 INPUT_PLUGINS="$INPUT_PLUGINS sndfile" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
770 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
771 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
772 dnl *** modplug |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
773 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
774 AC_ARG_ENABLE(modplug, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
775 [ --disable-modplug disable ModPlug plugin (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
776 [enable_modplug=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
777 [enable_modplug="yes"] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
778 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
779 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
780 if test "x$enable_modplug" = "xyes"; then |
136
6b5a52635b3b
[svn] - like with so many other things, modplug is now maintained by us.
nenolod
parents:
135
diff
changeset
|
781 INPUT_PLUGINS="$INPUT_PLUGINS modplug" |
6b5a52635b3b
[svn] - like with so many other things, modplug is now maintained by us.
nenolod
parents:
135
diff
changeset
|
782 have_modplug="yes" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
783 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
784 AC_MSG_RESULT([*** ModPlug plugin disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
785 have_modplug="no" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
786 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
787 |
232 | 788 dnl *** Musepack |
789 | |
790 AC_ARG_ENABLE(musepack, | |
791 [ --disable-musepack disable musepack input plugin (default=enabled)], | |
792 [enable_musepack=$enableval], | |
793 [enable_musepack="yes"] | |
794 ) | |
795 | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
796 if test "x$enable_musepack" = "xyes"; then |
662 | 797 PKG_CHECK_MODULES(TAGLIB, [taglib >= 1.4], [ |
798 AC_CHECK_HEADERS(mpcdec/config_types.h,, [ | |
799 enable_musepack=no | |
800 ]) | |
801 ], [enable_musepack=no]) | |
232 | 802 else |
803 AC_MSG_RESULT([*** Musepack plugin disabled per user request ***]) | |
804 enable_musepack=no | |
805 fi | |
806 | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
807 if test "x$enable_musepack" = "xyes"; then |
232 | 808 INPUT_PLUGINS="$INPUT_PLUGINS musepack" |
2000
89a445c53318
make musepack compile again.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
1973
diff
changeset
|
809 AC_SUBST(TAGLIB_CFLAGS) |
232 | 810 fi |
811 | |
878 | 812 dnl *** WMA |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
813 |
878 | 814 AC_ARG_ENABLE(wma, |
815 [ --disable-wma disable wma plugin. (default=enabled)], | |
816 [enable_wma=$enableval], | |
817 [enable_wma=yes] | |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
818 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
819 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
820 if test "x$enable_wma" = "xyes"; then |
878 | 821 INPUT_PLUGINS="$INPUT_PLUGINS wma" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
822 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
823 |
2182
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
824 dnl *** Monkey's Audio |
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
825 |
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
826 AC_ARG_ENABLE(ape, |
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
827 [ --disable-ape disable Monkey's Audio plugin. (default=enabled)], |
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
828 [enable_ape=$enableval], |
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
829 [enable_ape=yes] |
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
830 ) |
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
831 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
832 if test "x$enable_ape" = "xyes"; then |
2182
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
833 INPUT_PLUGINS="$INPUT_PLUGINS demac" |
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
834 fi |
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
835 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
836 dnl *** jack output plugin |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
837 AC_ARG_ENABLE( jack, |
50 | 838 [ --disable-jack disable jack output plugin (default=enabled)], [enable_jack=$enableval], |
839 [enable_jack="yes"]) | |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
840 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
841 if test "x$enable_jack" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
842 AM_PATH_JACK(have_jack=yes, have_jack=no) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
843 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
844 AC_MSG_RESULT([*** jack plugin disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
845 have_jack=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
846 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
847 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
848 if test "x$have_jack" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
849 OUTPUT_PLUGINS="$OUTPUT_PLUGINS jack" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
850 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
851 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
852 dnl *** sid |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
853 AC_ARG_ENABLE( sid, |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
854 [ --disable-sid disable SID input plugin (default=enabled)],, |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
855 enable_sid="yes") |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
856 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
857 if test "x$enable_sid" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
858 AM_PATH_SIDPLAY(have_sidplay=yes, have_sidplay=no) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
859 else |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
860 AC_MSG_RESULT([*** SID plugin disabled per user request ***]) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
861 have_sidplay=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
862 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
863 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
864 if test "x$have_sidplay" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
865 INPUT_PLUGINS="$INPUT_PLUGINS sid" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
866 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
867 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
868 dnl *** OSS output |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
869 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
870 AC_ARG_ENABLE(oss, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
871 [ --disable-oss disable the OSS output plugin (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
872 [enable_oss=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
873 [enable_oss=yes] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
874 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
875 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
876 have_oss=no |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
877 if test "x$enable_oss" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
878 AC_MSG_CHECKING(for OSS include dir) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
879 OSS_CFLAGS="" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
880 if test -f "/etc/oss.conf" ; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
881 for i in `cat /etc/oss.conf`; do |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
882 t=`echo $i | sed -e 's/OSSLIBDIR=//'` |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
883 if test "x$i" != "x$t" ; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
884 if test -f "$t/include/sys/soundcard.h" -o -f "$i/include/soundcard.h" ; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
885 OSS_CFLAGS="-I$t/include" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
886 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
887 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
888 done |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
889 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
890 if test -n "$OSS_CFLAGS" ; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
891 AC_MSG_RESULT([$OSS_CFLAGS]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
892 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
893 AC_MSG_RESULT([not found]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
894 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
895 CFLAGS_save=$CFLAGS |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
896 CFLAGS="$CFLAGS $OSS_CFLAGS" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
897 AC_CHECK_HEADERS(soundcard.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
898 AC_CHECK_HEADERS(sys/soundcard.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
899 AC_CHECK_HEADERS(machine/soundcard.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
900 CFLAGS=$CFLAGS_save |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
901 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
902 if test "x${ac_cv_header_soundcard_h}" = "xyes" || test "x${ac_cv_header_sys_soundcard_h}" = "xyes" || test "x${ac_cv_header_machine_soundcard_h}" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
903 have_oss=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
904 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
905 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
906 if test "x${have_oss}" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
907 AC_MSG_CHECKING(whether we need -lossaudio) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
908 AC_TRY_LINK([ |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
909 #include <sys/ioctl.h> |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
910 #ifdef HAVE_SYS_SOUNDCARD_H |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
911 #include <sys/soundcard.h> |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
912 #else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
913 #include <soundcard.h> |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
914 #endif |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
915 ], [ |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
916 int fd, value; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
917 ioctl(fd, SOUND_MIXER_READ_VOLUME, &value); |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
918 ], AC_MSG_RESULT(no), [ |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
919 OSS_LIBS="-lossaudio" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
920 AC_MSG_RESULT(yes) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
921 ]) |
6
7cac35581bd0
[svn] - only check for -lossaudio if have_oss is true (otherwise libESD is broken on many platforms)
nenolod
parents:
5
diff
changeset
|
922 fi |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
923 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
924 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
925 if test "x$have_oss" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
926 AC_DEFINE(HAVE_OSS, 1, [Define if the OSS output plugin should be built]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
927 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
928 have_oss=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
929 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
930 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
931 if test "x$have_oss" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
932 OUTPUT_PLUGINS="$OUTPUT_PLUGINS OSS" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
933 fi |
2526
27630085a2c7
Actually substitute/define OSS_CFLAGS.
Matti Hamalainen <ccr@tnsp.org>
parents:
2521
diff
changeset
|
934 AC_SUBST(OSS_CFLAGS) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
935 AC_SUBST(OSS_LIBS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
936 |
1213
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
937 |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
938 dnl *** OSS4 output |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
939 |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
940 AC_ARG_ENABLE(oss4, |
1215
386342d66a4f
disabled OSS4 by default
Cristi Magherusan <majeru@atheme-project.org>
parents:
1213
diff
changeset
|
941 [ --enable-oss4 enable the OSS4 output plugin (default=disabled)], |
1213
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
942 [enable_oss4=$enableval], |
1215
386342d66a4f
disabled OSS4 by default
Cristi Magherusan <majeru@atheme-project.org>
parents:
1213
diff
changeset
|
943 [enable_oss4=no] |
1213
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
944 ) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
945 |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
946 have_oss4=no |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
947 if test "x$enable_oss4" = "xyes"; then |
1213
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
948 AC_MSG_CHECKING(for OSS4 include dir) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
949 OSS4_CFLAGS="" |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
950 if test -f "/etc/oss.conf" ; then |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
951 for i in `cat /etc/oss.conf`; do |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
952 t=`echo $i | sed -e 's/OSSLIBDIR=//'` |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
953 if test "x$i" != "x$t" ; then |
1213
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
954 if test -f "$t/include/sys/soundcard.h" -o -f "$i/include/soundcard.h" ; then |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
955 OSS4_CFLAGS="-I$t/include" |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
956 fi |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
957 fi |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
958 done |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
959 fi |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
960 if test -n "$OSS4_CFLAGS" ; then |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
961 AC_MSG_RESULT([$OSS4_CFLAGS]) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
962 else |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
963 AC_MSG_RESULT([not found]) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
964 fi |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
965 CFLAGS_save=$CFLAGS |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
966 CFLAGS="$CFLAGS $OSS4_CFLAGS" |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
967 AC_CHECK_HEADERS(soundcard.h) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
968 AC_CHECK_HEADERS(sys/soundcard.h) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
969 AC_CHECK_HEADERS(machine/soundcard.h) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
970 CFLAGS=$CFLAGS_save |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
971 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
972 if test "x${ac_cv_header_soundcard_h}" = "xyes" || test "x${ac_cv_header_sys_soundcard_h}" = "xyes" || test "x${ac_cv_header_machine_soundcard_h}" = "xyes"; then |
1213
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
973 have_oss4=yes |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
974 fi |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
975 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
976 if test "x${have_oss4}" = "xyes"; then |
1213
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
977 AC_MSG_CHECKING(whether we need -lossaudio) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
978 AC_TRY_LINK([ |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
979 #include <sys/ioctl.h> |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
980 #ifdef HAVE_SYS_SOUNDCARD_H |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
981 #include <sys/soundcard.h> |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
982 #else |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
983 #include <soundcard.h> |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
984 #endif |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
985 ], [ |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
986 int fd, value; |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
987 ioctl(fd, SOUND_MIXER_READ_VOLUME, &value); |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
988 ], AC_MSG_RESULT(no), [ |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
989 OSS_LIBS="-lossaudio" |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
990 AC_MSG_RESULT(yes) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
991 ]) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
992 fi |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
993 fi |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
994 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
995 if test "x$have_oss4" = "xyes"; then |
1213
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
996 AC_DEFINE(HAVE_OSS4, 1, [Define if the OSS4 output plugin should be built]) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
997 else |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
998 have_oss4=no |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
999 fi |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
1000 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1001 if test "x$have_oss4" = "xyes"; then |
1213
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
1002 OUTPUT_PLUGINS="$OUTPUT_PLUGINS OSS4" |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
1003 fi |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
1004 |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
1005 AC_SUBST(OSS_LIBS) |
e49e02828f85
OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents:
1190
diff
changeset
|
1006 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1007 dnl *** ALSA output plugin |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1008 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1009 AC_ARG_ENABLE(alsa, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1010 [ --disable-alsa disable ALSA input plugin (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1011 [enable_alsa=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1012 [enable_alsa=yes] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1013 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1014 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1015 if test "x$enable_alsa" = "xyes"; then |
2937
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1016 PKG_CHECK_MODULES([ALSA], [alsa >= 1.0], [have_alsa=yes], [have_alsa=no]) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1017 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1018 AC_MSG_RESULT([*** ALSA output plugin disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1019 have_alsa=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1020 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1021 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1022 if test "x$have_alsa" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1023 OUTPUT_PLUGINS="$OUTPUT_PLUGINS alsa" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1024 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1025 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1026 |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1027 dnl *** amidi-plug (note: to avoid checking twice ALSA, this should appear somewhere after the alsa output plugin check) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1028 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1029 AC_ARG_ENABLE(amidiplug, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1030 [ --disable-amidiplug disable amidi-plug input plugin (default=check) ], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1031 [enable_amidiplug=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1032 [enable_amidiplug=check] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1033 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1034 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1035 AC_ARG_ENABLE(amidiplug-alsa, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1036 [ --disable-amidiplug-alsa disable amidi-plug ALSA backend (default=enabled) ], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1037 [enable_amidiplug_alsa=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1038 [enable_amidiplug_alsa=auto] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1039 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1040 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1041 AC_ARG_ENABLE(amidiplug-flsyn, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1042 [ --disable-amidiplug-flsyn disable amidi-plug FluidSynth backend (default=enabled) ], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1043 [enable_amidiplug_fluidsynth=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1044 [enable_amidiplug_fluidsynth=auto] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1045 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1046 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1047 AC_ARG_ENABLE(amidiplug-dummy, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1048 [ --disable-amidiplug-dummy disable amidi-plug dummy backend (default=enabled) ], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1049 [enable_amidiplug_dummy=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1050 [enable_amidiplug_dummy=auto] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1051 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1052 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1053 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1054 if test "x$enable_amidiplug" = "xno"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1055 AC_MSG_RESULT([*** amidi-plug disabled per user request ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1056 enable_amidiplug=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1057 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1058 if test "x$enable_amidiplug_alsa" != "xauto"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1059 enable_amidiplug=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1060 elif test "x$enable_amidiplug_fluidsynth" != "xauto"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1061 enable_amidiplug=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1062 elif test "x$enable_amidiplug_dummy" != "xauto"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1063 enable_amidiplug=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1064 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1065 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1066 |
2937
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1067 if test "x$have_alsa" = "xyes"; then |
2982
c1417013d4eb
Silencing these _cv_ warnings by renaming that can_has_midi thing.
Tony Vroon <chainsaw@gentoo.org>
parents:
2978
diff
changeset
|
1068 AUD_TRY_COMPILE([ALSA MIDI support], [alsalib_cv_hasmidi], |
2937
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1069 [#include <alsa/asoundlib.h>], |
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1070 [snd_seq_t *seq = NULL;], |
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1071 [alsalib_midi=yes], [alsalib_midi=no]) |
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1072 fi |
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1073 |
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1074 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1075 if test "x$enable_amidiplug" = "xcheck"; then |
2937
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1076 if test "x$alsalib_midi" = "xyes"; then |
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1077 AM_PATH_AMIDIPLUG_HWSYNTH([ap_have_hwsynth=yes], [ap_have_hwsynth=no]) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1078 if test "x$ap_have_hwsynth" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1079 enable_amidiplug=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1080 ap_disable_timidity=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1081 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1082 PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1083 [fluidsynth_available=yes],[fluidsynth_available=no]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1084 if test "x$fluidsynth_available" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1085 enable_amidiplug=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1086 ap_disable_timidity=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1087 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1088 enable_amidiplug=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1089 AC_MSG_WARN([*** Neither an ALSA-supported hardware synth or FluidSynth software synth (>= 1.0.6) have been found (even if ALSA was detected), so amidi-plug won't be compiled unless you explicitly request it with --enable-amidiplug ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1090 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1091 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1092 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1093 PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1094 [fluidsynth_available=yes],[fluidsynth_available=no]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1095 if test "x$fluidsynth_available" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1096 enable_amidiplug=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1097 ap_disable_timidity=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1098 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1099 enable_amidiplug=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1100 AC_MSG_WARN([*** Neither ALSA or FluidSynth software synth (>= 1.0.6) have been found, so amidi-plug won't be compiled unless you explicitly request it with --enable-amidiplug ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1101 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1102 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1103 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1104 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1105 if test "x$enable_amidiplug" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1106 INPUT_PLUGINS="$INPUT_PLUGINS amidi-plug" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1107 PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.6.0],,) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1108 PKG_CHECK_MODULES(GMODULE, [gmodule-2.0 >= 2.6.0],,) |
2005
e2904348f154
Converted amidi-plug backends to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2002
diff
changeset
|
1109 AMIDIPLUG_BACKEND_DIR=amidi-plug |
e2904348f154
Converted amidi-plug backends to the new build system.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2002
diff
changeset
|
1110 AC_SUBST(AMIDIPLUG_BACKEND_DIR) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1111 if test "x$enable_amidiplug_alsa" = "xauto" -o "x$enable_amidiplug_alsa" = "xyes"; then |
2937
8c48d6793b86
Improve detection of MIDI-enabled alsalib, hopefully.
Matti Hamalainen <ccr@tnsp.org>
parents:
2921
diff
changeset
|
1112 if test "x$alsalib_midi" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1113 AMIDIPLUG_BACKENDS="$AMIDIPLUG_BACKENDS backend-alsa" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1114 enable_amidiplug_alsa=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1115 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1116 if test "x$enable_amidiplug_alsa" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1117 AC_MSG_ERROR([Cannot find ALSA development files (ver >= 1.0), but compilation of AMIDI-Plug ALSA backend has been explicitly requested; please install ALSA dev files and run configure again]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1118 enable_amidiplug_alsa=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1119 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1120 enable_amidiplug_alsa=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1121 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1122 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1123 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1124 if test "x$enable_amidiplug_fluidsynth" = "xauto" -o "x$enable_amidiplug_fluidsynth" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1125 if test "x$fluidsynth_available" != "xyes" -a "x$fluidsynth_available" != "xno"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1126 PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1127 [fluidsynth_available=yes],[fluidsynth_available=no]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1128 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1129 if test "x$fluidsynth_available" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1130 AMIDIPLUG_BACKENDS="$AMIDIPLUG_BACKENDS backend-fluidsynth" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1131 enable_amidiplug_fluidsynth=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1132 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1133 if test "x$enable_amidiplug_fluidsynth" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1134 AC_MSG_ERROR([Cannot find FluidSynth development files (ver >= 1.0.6), but compilation of AMIDI-Plug FluidSynth backend has been explicitly requested; please install FluidSynth dev files and run configure again]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1135 enable_amidiplug_fluidsynth=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1136 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1137 enable_amidiplug_fluidsynth=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1138 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1139 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1140 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1141 if test "x$enable_amidiplug_dummy" = "xauto" -o "x$enable_amidiplug_dummy" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1142 AMIDIPLUG_BACKENDS="$AMIDIPLUG_BACKENDS backend-dummy" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1143 enable_amidiplug_dummy=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1144 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1145 AC_SUBST(AMIDIPLUG_BACKENDS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1146 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1147 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1148 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1149 dnl *** TiMidity input plugin (note: should appear somewhere after the amidi-plug check) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1150 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1151 AC_ARG_ENABLE(timidity, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1152 [ --disable-timidity disable timidity plugin. (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1153 [enable_timidity=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1154 [ |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1155 if test "x$ap_disable_timidity" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1156 enable_timidity=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1157 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1158 enable_timidity=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1159 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1160 ] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1161 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1162 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1163 if test "x$enable_timidity" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1164 INPUT_PLUGINS="$INPUT_PLUGINS timidity" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1165 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1166 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1167 dnl FreeBSD newpcm driver detection |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1168 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1169 AC_CACHE_CHECK(for FreeBSD newpcm driver, beep_cv_newpcm_driver, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1170 if test -r "/dev/sndstat"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1171 grep 'newpcm' /dev/sndstat 2>/dev/null 1>/dev/null |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1172 if test "x$?" = "x0"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1173 beep_cv_newpcm_driver="yes" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1174 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1175 beep_cv_newpcm_driver="no" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1176 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1177 else |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1178 beep_cv_newpcm_driver="no" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1179 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1180 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1181 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1182 if test "x$beep_cv_newpcm_driver" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1183 AC_DEFINE(HAVE_NEWPCM, 1, [Define if you have the FreeBSD newpcm driver]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1184 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1185 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1186 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1187 AC_CHECK_HEADERS(linux/joystick.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1188 AC_CHECK_HEADERS(unistd.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1189 AC_CHECK_HEADERS(fcntl.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1190 AC_CHECK_HEADERS(sys/ioctl.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1191 AC_CHECK_HEADERS(fnmatch.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1192 AC_CHECK_HEADERS(limits.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1193 AC_CHECK_HEADERS(wchar.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1194 AC_CHECK_HEADERS(fts.h) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1195 |
736 | 1196 AC_CHECK_DECL([lrintf],[AC_DEFINE(HAVE_LRINTF,1)],[AC_CHECK_FUNCS([lrintf])],[ |
1197 #define _ISOC9X_SOURCE | |
1198 #include <math.h> | |
1199 ], [AC_CHECK_FUNCS([lrintf])]) | |
734
ff62f5530a36
[svn] - freebsd portability fixes from "The_Paya". Closes #814.
nenolod
parents:
729
diff
changeset
|
1200 AC_CHECK_FUNCS([mkdtemp getmntinfo statvfs strtoul]) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1201 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1202 |
1051
0f2f68b9c98c
[svn] dnl CD-Audio New Generation; you need to add cdaudio-ng to INPUT_PLUGINS if CDIO_LIBS is set. Or something like that. Good luck.
chainsaw
parents:
1046
diff
changeset
|
1203 dnl CD-Audio New Generation |
1058 | 1204 |
1375
ef07ff837063
Obliterate old-style CD-Audio and make cdaudio-ng default to on.
Tony Vroon <chainsaw@gentoo.org>
parents:
1338
diff
changeset
|
1205 AC_ARG_ENABLE(cdaudio, |
1377
4eb2bacab83a
Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents:
1375
diff
changeset
|
1206 [ --disable-cdaudio disable cdaudio-ng input plugin (default=enabled) ], |
1058 | 1207 [enable_cdaudio_ng=$enableval], |
1375
ef07ff837063
Obliterate old-style CD-Audio and make cdaudio-ng default to on.
Tony Vroon <chainsaw@gentoo.org>
parents:
1338
diff
changeset
|
1208 [enable_cdaudio_ng=yes] |
1058 | 1209 ) |
1210 | |
1211 if test "$enable_cdaudio_ng" = "yes"; then | |
1338
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1212 PKG_CHECK_MODULES(CDIO, [libcdio >= 0.70], |
1467
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1213 , |
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1214 [AC_MSG_WARN([*** Cannot find libcdio 0.70 or newer, cdaudio-ng will not be built ***]) |
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1215 enable_cdaudio_ng=no] |
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1216 ) |
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1217 fi |
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1218 |
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1219 if test "$enable_cdaudio_ng" = "yes"; then |
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1220 PKG_CHECK_MODULES(CDIO, [libcdio_cdda >= 0.70], |
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1221 [CDIO_LIBS=`pkg-config --libs libcdio_cdda` |
1083
325c52b01e56
[svn] Switch pkg-config for cdaudio-ng from libcdio to libcdio_cdda (At the request of Crazy_Hopper)
deitarion
parents:
1082
diff
changeset
|
1222 CDIO_CFLAGS=`pkg-config --cflags libcdio_cdda` |
1058 | 1223 AC_SUBST(CDIO_LIBS) |
1224 AC_SUBST(CDIO_CFLAGS)], | |
1467
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1225 [AC_MSG_WARN([*** Cannot find libcdio_cdda 0.70 or newer, cdaudio-ng will not be built ***]) |
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1226 enable_cdaudio_ng=no] |
1338
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1227 ) |
1467
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1228 fi |
1338
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1229 |
1467
42306c187663
Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents:
1457
diff
changeset
|
1230 if test "$enable_cdaudio_ng" = "yes"; then |
1338
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1231 PKG_CHECK_MODULES(CDDB, [libcddb >= 1.2.1], |
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1232 [INPUT_PLUGINS="$INPUT_PLUGINS cdaudio-ng" |
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1233 CDDB_LIBS=`pkg-config --libs libcddb` |
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1234 CDDB_CFLAGS=`pkg-config --cflags libcddb` |
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1235 AC_SUBST(CDDB_LIBS) |
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1236 AC_SUBST(CDDB_CFLAGS)], |
0d4450d66bd1
Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents:
1337
diff
changeset
|
1237 [AC_MSG_WARN([*** Cannot find libcddb 1.2.1 or newer, cdaudio-ng will not be built ***]) |
1337
831720848162
Bail out if libcdio isn't found.
Alex Maclean <monkeh@monkeh.net>
parents:
1310
diff
changeset
|
1238 enable_cdaudio_ng=no] |
1058 | 1239 ) |
1240 fi | |
1241 | |
2763
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1242 AC_ARG_ENABLE(streambrowser, |
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1243 [ --disable-streambrowser disable streambrowser general plugin (default=enabled) ], |
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1244 [enable_streambrowser=$enableval], |
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1245 [enable_streambrowser=yes] |
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1246 ) |
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1247 |
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1248 if test "$enable_streambrowser" = "yes"; then |
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1249 GENERAL_PLUGINS="$GENERAL_PLUGINS streambrowser" |
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1250 fi |
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1251 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1252 AM_CONDITIONAL(HAVE_CDROM, test "${ac_cv_header_linux_cdrom_h}" = "yes" || test "${ac_cv_header_sys_cdio_h}" = "yes") |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1253 AM_CONDITIONAL(HAVE_LINUX_JOYSTICK,test "${ac_cv_header_linux_joystick_h}" = "yes") |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1254 |
2967
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
1255 CFLAGS="$CFLAGS $AUDLEGACY_CFLAGS $DBUS_CFLAGS" |
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
1256 CXXFLAGS="$CXXFLAGS $AUDLEGACY_CFLAGS $DBUS_CFLAGS" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1257 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1258 AC_MSG_CHECKING(if __ELF__ is defined) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1259 AC_EGREP_CPP(yes, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1260 [#ifdef __ELF__ |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1261 yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1262 #endif |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1263 ], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1264 [is_elf=yes], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1265 [is_elf=no] |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1266 ) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1267 AC_MSG_RESULT([${is_elf}]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1268 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1269 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1270 have_solaris=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1271 have_sun=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1272 ARCH_DEFINES="" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1273 case "$host" in |
314 | 1274 *-*-openbsd* | *-*-netbsd* | *-*-mirbsd*) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1275 have_sun=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1276 if test "${is_elf}" = "no" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1277 then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1278 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1279 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1280 OUTPUT_PLUGINS="$OUTPUT_PLUGINS sun" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1281 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1282 *-*-darwin*) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1283 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1284 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1285 *-hpux-*) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1286 ARCH_DEFINES="-DHPUX" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1287 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1288 *-*-solaris* | *-*-sunos*) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1289 have_solaris=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1290 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1291 esac |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1292 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1293 arch_type=other |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1294 x86_asm=no |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1295 case "$host" in |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1296 i386-*-* | i486-*-* | i586-*-* | i686-*-* | i86pc-*-*) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1297 arch_type=ix86 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1298 case "$host" in |
314 | 1299 *-*-netbsd* | *-*openbsd* | *-*-mirbsd*) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1300 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1301 *) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1302 ARCH_DEFINES="-DI386_ASSEM" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1303 x86_asm=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1304 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1305 esac |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1306 ;; |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1307 esac |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1308 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1309 dnl *** Scrobbler *** |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1310 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1311 scrobbler="yes" |
2027
46bfefacb8b7
Removed some curl leftovers.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2024
diff
changeset
|
1312 have_lastfm="no" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1313 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1314 dnl libcurl check |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1315 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1316 my_cv_curl_vers=NONE |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1317 dnl check is the plain-text version of the required version |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1318 check="7.9.7" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1319 dnl check_hex must be UPPERCASE if any hex letters are present |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1320 check_hex="070907" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1321 |
2027
46bfefacb8b7
Removed some curl leftovers.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2024
diff
changeset
|
1322 PKG_CHECK_MODULES(CURL, [libcurl >= 7.9.7], [], [scrobbler="no"]) |
46bfefacb8b7
Removed some curl leftovers.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2024
diff
changeset
|
1323 AC_SUBST(CURL_CFLAGS) |
46bfefacb8b7
Removed some curl leftovers.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2024
diff
changeset
|
1324 AC_SUBST(CURL_LIBS) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1325 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1326 if test "x$scrobbler" = "xyes"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1327 GENERAL_PLUGINS="$GENERAL_PLUGINS scrobbler" |
1173
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
1328 TRANSPORT_PLUGINS="$TRANSPORT_PLUGINS lastfm" |
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
1329 have_lastfm="yes" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1330 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1331 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1332 dnl *** End of Scrobbler checks *** |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1333 |
1718
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1334 dnl *** neon http plugin *** |
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1335 |
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1336 AC_ARG_ENABLE(neon, |
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1337 [ --enable-neon enable neon support (experimental). (default=disabled)], |
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1338 [have_neon=$enableval], |
2024
361ee83691e9
enable neon by default
William Pitcock <nenolod@atheme.org>
parents:
2023
diff
changeset
|
1339 [have_neon=yes]) |
1718
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1340 |
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1341 if test "x$have_neon" = "xyes"; then |
1906
353787f211ec
- Make code compilable against neon 0.26 by dropping the connect timeout.
Ralf Ertzinger <ralf@skytale.net>
parents:
1879
diff
changeset
|
1342 PKG_CHECK_MODULES(NEON, [neon >= 0.26], [TRANSPORT_PLUGINS="$TRANSPORT_PLUGINS neon" ], [have_neon="no"]) |
2674
b84f2aca1675
Fixed js's commit, and few other things.
Matti Hamalainen <ccr@tnsp.org>
parents:
2673
diff
changeset
|
1343 AC_CHECK_LIB([neon], [ne_set_connect_timeout], [AC_DEFINE(HAVE_NE_SET_CONNECT_TIMEOUT, 1, [Whether we have ne_set_connect_timeout])], [], [$NEON_LIBS]) |
1718
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1344 else |
2674
b84f2aca1675
Fixed js's commit, and few other things.
Matti Hamalainen <ccr@tnsp.org>
parents:
2673
diff
changeset
|
1345 have_neon="no" |
1718
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1346 fi |
2674
b84f2aca1675
Fixed js's commit, and few other things.
Matti Hamalainen <ccr@tnsp.org>
parents:
2673
diff
changeset
|
1347 AC_SUBST([NEON_LIBS]) |
b84f2aca1675
Fixed js's commit, and few other things.
Matti Hamalainen <ccr@tnsp.org>
parents:
2673
diff
changeset
|
1348 AC_SUBST([NEON_CFLAGS]) |
1718
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1349 |
892deefba58d
- Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents:
1710
diff
changeset
|
1350 |
503 | 1351 dnl *** MMS |
1352 | |
1353 AC_ARG_ENABLE(mms, | |
1354 [ --disable-mms disable mms support. (default=enabled)], | |
1355 [have_mms=$enableval], | |
1356 [have_mms=yes]) | |
1357 | |
874
5b29a6fe9295
[svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents:
856
diff
changeset
|
1358 if test "x$have_mms" = "xyes"; then |
5b29a6fe9295
[svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents:
856
diff
changeset
|
1359 have_mms=yes |
1173
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
1360 PKG_CHECK_MODULES(MMS, [libmms >= 0.3], [TRANSPORT_PLUGINS="$TRANSPORT_PLUGINS mms" ], [have_mms="no"]) |
874
5b29a6fe9295
[svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents:
856
diff
changeset
|
1361 else |
503 | 1362 have_mms=no |
1363 AC_MSG_RESULT([*** mms plugin disabled by request ***]) | |
1364 fi | |
1365 | |
1456
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1366 |
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1367 dnl *** MTP Upload |
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1368 |
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1369 AC_ARG_ENABLE(mtp_up, |
1523
ff7d0178ba8e
fixed build system, now MTP support gets compiled if one has libmtp installed
Cristi Magherusan <majeru@atheme-project.org>
parents:
1500
diff
changeset
|
1370 [ --disable-mtp_up disable mtp upload support. (default=enabled)], |
1456
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1371 [have_mtp_up=$enableval], |
1523
ff7d0178ba8e
fixed build system, now MTP support gets compiled if one has libmtp installed
Cristi Magherusan <majeru@atheme-project.org>
parents:
1500
diff
changeset
|
1372 [have_mtp_up=yes]) |
1456
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1373 |
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1374 if test "x$have_mtp_up" = "xyes"; then |
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1375 have_mtp_up=yes |
1523
ff7d0178ba8e
fixed build system, now MTP support gets compiled if one has libmtp installed
Cristi Magherusan <majeru@atheme-project.org>
parents:
1500
diff
changeset
|
1376 PKG_CHECK_MODULES(MTP, [libmtp >= 0.1.3], [GENERAL_PLUGINS="$GENERAL_PLUGINS mtp_up" ], [have_mtp_up="no"]) |
1456
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1377 MTP_LIBS=`pkg-config --libs libmtp` |
1457
71138874c5fd
fixed linking
Cristi Magherusan <majeru@atheme-project.org>
parents:
1456
diff
changeset
|
1378 MTP_CFLAGS=`pkg-config --cflags libmtp` |
2935
6f0eccec978e
applied a patch made by Linus Walleij that fixes the MTP plugin on libmtp >0.3, thanks!
Cristi Magherusan <majeru@atheme.org>
parents:
2921
diff
changeset
|
1379 dnl Check for libmtp 0.3.0+ |
6f0eccec978e
applied a patch made by Linus Walleij that fixes the MTP plugin on libmtp >0.3, thanks!
Cristi Magherusan <majeru@atheme.org>
parents:
2921
diff
changeset
|
1380 PKG_CHECK_EXISTS(libmtp >= 0.3.0, libmtp_030_pkg=yes, libmtp_030_pkg=no) |
6f0eccec978e
applied a patch made by Linus Walleij that fixes the MTP plugin on libmtp >0.3, thanks!
Cristi Magherusan <majeru@atheme.org>
parents:
2921
diff
changeset
|
1381 if test x"$libmtp_030_pkg" = "xyes" ; then |
6f0eccec978e
applied a patch made by Linus Walleij that fixes the MTP plugin on libmtp >0.3, thanks!
Cristi Magherusan <majeru@atheme.org>
parents:
2921
diff
changeset
|
1382 AC_DEFINE([HAVE_LIBMTP_030], 1, [indidaces if libmtp 0.3.0 is installed]) |
6f0eccec978e
applied a patch made by Linus Walleij that fixes the MTP plugin on libmtp >0.3, thanks!
Cristi Magherusan <majeru@atheme.org>
parents:
2921
diff
changeset
|
1383 fi |
1456
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1384 else |
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1385 have_mtp_up=no |
1523
ff7d0178ba8e
fixed build system, now MTP support gets compiled if one has libmtp installed
Cristi Magherusan <majeru@atheme-project.org>
parents:
1500
diff
changeset
|
1386 AC_MSG_RESULT([*** mtp upload plugin disabled by request ***]) |
1456
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1387 fi |
1457
71138874c5fd
fixed linking
Cristi Magherusan <majeru@atheme-project.org>
parents:
1456
diff
changeset
|
1388 AC_SUBST(MTP_LIBS) |
71138874c5fd
fixed linking
Cristi Magherusan <majeru@atheme-project.org>
parents:
1456
diff
changeset
|
1389 AC_SUBST(MTP_CFLAGS) |
1456
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1390 |
2644
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1391 dnl *** Bluetooth audio suport |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1392 |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1393 AC_ARG_ENABLE(bluetooth, |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1394 [ --disable-bluetooth disable bluetooth audio support. (default=enabled)], |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1395 [have_bluetooth=$enableval], |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1396 [have_bluetooth=yes]) |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1397 |
2949
0f0227b29f43
Only enable bluetooth if we have alsa.
Jonathan Schleifer <js-audacious@webkeks.org>
parents:
2948
diff
changeset
|
1398 if test "x$have_bluetooth" = "xyes" -a "x$have_alsa" = "xyes"; then |
2644
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1399 have_bluetooth=yes |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1400 PKG_CHECK_MODULES(BLUEZ, [bluez >= 2.22], |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1401 [GENERAL_PLUGINS="$GENERAL_PLUGINS bluetooth" ], [have_bluetooth="no"]) |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1402 BLUEZ_LIBS=`pkg-config --libs bluez` |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1403 BLUEZ_CFLAGS=`pkg-config --cflags bluez` |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1404 else |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1405 have_bluetooth=no |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1406 AC_MSG_RESULT([*** bluetooth audio suport plugin disabled by request ***]) |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1407 fi |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1408 AC_SUBST(BLUEZ_LIBS) |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1409 AC_SUBST(BLUEZ_CFLAGS) |
6fd8ca4b7b17
add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2526
diff
changeset
|
1410 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1411 dnl *** libparanormal checks |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1412 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1413 AC_ARG_ENABLE(paranormal, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1414 [ --disable-paranormal disable paranormal vis plugin. (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1415 [have_paranormal=$enableval], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1416 [have_paranormal=yes]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1417 |
874
5b29a6fe9295
[svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents:
856
diff
changeset
|
1418 if test "x$have_paranormal" = "xyes"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1419 have_paranormal=yes |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1420 AM_PATH_SDL(1.2.5, , [ |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1421 AC_MSG_WARN([*** SDL is not installed. Paranormal will not be built. ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1422 have_paranormal="no" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1423 ]) |
874
5b29a6fe9295
[svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents:
856
diff
changeset
|
1424 else |
5b29a6fe9295
[svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents:
856
diff
changeset
|
1425 have_paranormal=no |
5b29a6fe9295
[svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents:
856
diff
changeset
|
1426 AC_MSG_RESULT([*** paranormal plugin disabled by request ***]) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1427 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1428 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1429 AC_ARG_ENABLE(xspf, |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1430 [ --disable-xspf disable XSPF support. (default=enabled)], |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1431 [have_xspf=$enableval], [have_xspf=yes]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1432 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1433 AM_PATH_XML2(2.0.0, , [ |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1434 AC_MSG_WARN([*** libxml2 is not installed. Paranormal nor XSPF support will not be built. ***]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1435 have_paranormal="no" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1436 have_xspf="no" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1437 ]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1438 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1439 if test "x$have_paranormal" = "xyes"; then |
1821
eee1f51296ed
rovascope: drop from distribution due to too many bugs
William Pitcock <nenolod@atheme.org>
parents:
1764
diff
changeset
|
1440 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS paranormal" |
149
fd9c0a5871ac
[svn] - new and IMPROVED paranormal visualization studio
nenolod
parents:
148
diff
changeset
|
1441 fi |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1442 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1443 if test "x$have_xspf" = "xyes"; then |
364 | 1444 CONTAINER_PLUGINS="$CONTAINER_PLUGINS xspf" |
1445 fi | |
1446 | |
1919
266f1bf0d5fc
Add support for projectM-1.0, soon to be released
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
1912
diff
changeset
|
1447 dnl *** projectM (GL Milkdrop port) |
358 | 1448 |
1449 AC_ARG_ENABLE(projectm, | |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1450 [ --disable-projectm disable projectM vis plugin. (default=enabled)], |
358 | 1451 [have_projectm=$enableval], |
1452 [have_projectm=yes]) | |
1453 | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1454 if test "x$have_projectm" = "xyes"; then |
1919
266f1bf0d5fc
Add support for projectM-1.0, soon to be released
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
1912
diff
changeset
|
1455 PKG_CHECK_MODULES(LIBPROJECTM, libprojectM < 1.0, [have_projectm="yes"], [have_projectm="no"]) |
1294 | 1456 AM_PATH_SDL(1.2.5, , [ |
1457 AC_MSG_WARN([*** SDL is not installed. projectM will not be built. ***]) | |
1458 have_projectm="no" | |
1459 ]) | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1460 if test "x$libprjM" = "xno"; then |
358 | 1461 AC_MSG_WARN([*** libprojectM not found. |
1462 libprojectM is needed to build this package. | |
1919
266f1bf0d5fc
Add support for projectM-1.0, soon to be released
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
1912
diff
changeset
|
1463 You can download libprojectM at http://projectm.sf.net/]) |
358 | 1464 fi |
1465 LIBPROJECTM_datadir=`pkg-config --variable=pkgdatadir libprojectM`; | |
1466 LIBPROJECTM_sysconfdir=`pkg-config --variable=sysconfdir libprojectM`; | |
1467 LIBPROJECTM_CFLAGS="$LIBPROJECTM_CFLAGS -DPROJECTM_DATADIR=\\\"$LIBPROJECTM_datadir\\\" -DPROJECTM_SYSCONFDIR=\\\"$LIBPROJECTM_sysconfdir\\\""; | |
1468 fi | |
1469 AC_SUBST(LIBPROJECTM_LIBS) | |
1470 AC_SUBST(LIBPROJECTM_CFLAGS) | |
1471 | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1472 if test "x$have_projectm" = "xyes"; then |
358 | 1473 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS projectm" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1474 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1475 |
2136
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1476 dnl *** projectM (GL Milkdrop port) |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1477 |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1478 AC_ARG_ENABLE(projectm-1.0, |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1479 [ --disable-projectm-1.0 disable projectM 1.0+ vis plugin. (default=enabled)], |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1480 [have_projectm1=$enableval], |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1481 [have_projectm1=yes]) |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1482 |
2412
49c27d619ffc
Fix configure.ac to be less retarded.
William Pitcock <nenolod@atheme.org>
parents:
2401
diff
changeset
|
1483 if test "$have_projectm1" = "yes"; then |
2492
478622d66962
use projectm 1.1 again
William Pitcock <nenolod@atheme.org>
parents:
2449
diff
changeset
|
1484 PKG_CHECK_MODULES(LIBPROJECTM1, [libprojectM >= 1.1], [have_projectm1="yes"], [have_projectm1="no"]) |
2136
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1485 if test x$libprjM = xno; then |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1486 AC_MSG_WARN([*** libprojectM not found. |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1487 libprojectM is needed to build this package. |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1488 You can download libprojectM at http://projectm.sf.net/]) |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1489 fi |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1490 LIBPROJECTM1_datadir=`pkg-config --variable=pkgdatadir libprojectM`; |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1491 LIBPROJECTM1_sysconfdir=`pkg-config --variable=sysconfdir libprojectM`; |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1492 LIBPROJECTM1_prefix=`pkg-config --variable=prefix libprojectM`; |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1493 LIBPROJECTM1_CFLAGS="$LIBPROJECTM1_CFLAGS -DPROJECTM_DATADIR=\\\"$LIBPROJECTM1_datadir\\\" -DPROJECTM_SYSCONFDIR=\\\"$LIBPROJECTM1_sysconfdir\\\" -DPROJECTM_PREFIX=\\\"$LIBPROJECTM1_prefix\\\""; |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1494 fi |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1495 AC_SUBST(LIBPROJECTM1_LIBS) |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1496 AC_SUBST(LIBPROJECTM1_CFLAGS) |
2400
a0746d858e31
Depend on gtkglext for projectm-1.0 instead of SDL.
William Pitcock <nenolod@atheme.org>
parents:
2399
diff
changeset
|
1497 AC_SUBST(GTKGLEXT_LIBS) |
a0746d858e31
Depend on gtkglext for projectm-1.0 instead of SDL.
William Pitcock <nenolod@atheme.org>
parents:
2399
diff
changeset
|
1498 AC_SUBST(GTKGLEXT_CFLAGS) |
2136
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1499 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1500 if test "x$have_projectm1" = "xyes"; then |
2136
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1501 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS projectm-1.0" |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1502 fi |
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1503 |
290 | 1504 dnl *** TTA |
1505 | |
1506 AC_ARG_ENABLE(tta, | |
1507 [ --disable-tta disable TrueAudio plugin (default=enabled) ], | |
1508 [enable_tta=$enableval], | |
1509 [enable_tta=yes] | |
1510 ) | |
1511 | |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1512 if test "x$enable_tta" = "xyes"; then |
290 | 1513 INPUT_PLUGINS="$INPUT_PLUGINS tta" |
1514 fi | |
1515 | |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1516 dnl *** FileWriter |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1517 |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1518 AC_ARG_ENABLE(filewriter, |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1519 [ --disable-filewriter disable FileWriter output plugin (default=enabled) ], |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1520 [enable_filewriter=$enableval], |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1521 [enable_filewriter=yes] |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1522 ) |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1523 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1524 if test "x$enable_filewriter" = "xyes"; then |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1525 OUTPUT_PLUGINS="$OUTPUT_PLUGINS filewriter" |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1526 fi |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1527 |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1528 |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1529 AC_ARG_ENABLE(filewriter_mp3, |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1530 [ --disable-filewriter_mp3 disable FileWriter MP3 output part (default=enabled) ], |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1531 [enable_filewriter_mp3=$enableval], [enable_filewriter_mp3=yes] |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1532 ) |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1533 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1534 if test "x$enable_filewriter_mp3" = "xyes"; then |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1535 AC_CHECK_LIB(mp3lame -lm, lame_init, [have_lame=yes], [have_lame=no]) |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1536 if test "x$have_lame" = "xyes"; then |
2097
6e4ad45c21d6
make it build on MacOS again
William Pitcock <nenolod@atheme.org>
parents:
2027
diff
changeset
|
1537 AC_DEFINE(FILEWRITER_MP3, 1, [Define if MP3 output part should be built]) |
1056
8e58b7dc2bd1
[svn] - FILEWRITER_LIBS had been left blank if bash 3.0 was used for configure, since this version doesn't accept '+='.
yaz
parents:
1051
diff
changeset
|
1538 FILEWRITER_LIBS="$FILEWRITER_LIBS -lmp3lame" |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1539 fi |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1540 fi |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1541 |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1542 |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1543 AC_ARG_ENABLE(filewriter_vorbis, |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1544 [ --disable-filewriter_vorbis disable FileWriter Vorbis output part (default=enabled) ], |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1545 [enable_filewriter_vorbis=$enableval], [enable_filewriter_vorbis=yes] |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1546 ) |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1547 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1548 if test "x$enable_filewriter_vorbis" = "xyes"; then |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1549 PKG_CHECK_MODULES(OGG_VORBIS, [ogg >= 1.0 vorbis >= 1.0 vorbisfile >= 1.0], |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1550 [have_vorbisenc=yes], [have_vorbisenc=no]) |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1551 if test "x$have_vorbisenc" = "xyes"; then |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1552 AC_DEFINE(FILEWRITER_VORBIS, 1, [Define if Vorbis output part should be built]) |
2097
6e4ad45c21d6
make it build on MacOS again
William Pitcock <nenolod@atheme.org>
parents:
2027
diff
changeset
|
1553 FILEWRITER_CFLAGS="$FILEWRITER_CFLAGS `pkg-config --cflags vorbisenc`" |
1190
ed2d7787779e
more warning elimination.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
1173
diff
changeset
|
1554 FILEWRITER_LIBS="$FILEWRITER_LIBS `pkg-config --libs vorbisenc`" |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1555 fi |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1556 fi |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1557 |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1558 |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1559 AC_ARG_ENABLE(filewriter_flac, |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1560 [ --disable-filewriter_flac disable FileWriter FLAC output part (default=enabled) ], |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1561 [enable_filewriter_flac=$enableval], [enable_filewriter_flac=yes] |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1562 ) |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1563 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1564 if test "x$enable_filewriter_flac" = "xyes"; then |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1565 PKG_CHECK_MODULES(FLAC, [flac >= 1.1.2], |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1566 [have_writer_flac=yes], [have_writer_flac=no] |
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1567 ) |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1568 if test "x$have_writer_flac" = "xyes"; then |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1569 AC_DEFINE(FILEWRITER_FLAC, 1, [Define if FLAC output part should be built]) |
2097
6e4ad45c21d6
make it build on MacOS again
William Pitcock <nenolod@atheme.org>
parents:
2027
diff
changeset
|
1570 FILEWRITER_CFLAGS="$FILEWRITER_CFLAGS `pkg-config --cflags flac`" |
1190
ed2d7787779e
more warning elimination.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
1173
diff
changeset
|
1571 FILEWRITER_LIBS="$FILEWRITER_LIBS `pkg-config --libs flac`" |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1572 fi |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1573 fi |
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1574 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1575 if test "x$enable_filewriter" != "xyes"; then |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1576 have_lame=no |
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1577 have_vorbisenc=no |
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1578 have_writer_flac=no |
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1579 FILEWRITER_LIBS="" |
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1580 fi |
2097
6e4ad45c21d6
make it build on MacOS again
William Pitcock <nenolod@atheme.org>
parents:
2027
diff
changeset
|
1581 AC_SUBST(FILEWRITER_CFLAGS) |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1582 AC_SUBST(FILEWRITER_LIBS) |
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1583 |
2778
28d9a2148cad
fixed plugins build order: filewriter needs to be built before icecast
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2777
diff
changeset
|
1584 if test "x$have_shout" = "xyes"; then |
28d9a2148cad
fixed plugins build order: filewriter needs to be built before icecast
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2777
diff
changeset
|
1585 OUTPUT_PLUGINS="$OUTPUT_PLUGINS icecast" |
28d9a2148cad
fixed plugins build order: filewriter needs to be built before icecast
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2777
diff
changeset
|
1586 fi |
28d9a2148cad
fixed plugins build order: filewriter needs to be built before icecast
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2777
diff
changeset
|
1587 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1588 dnl *** End of all plugin checks *** |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1589 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1590 AC_SUBST(ARCH_DEFINES) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1591 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1592 dnl XXX delete ASAP -nenolod |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1593 AM_CONDITIONAL(ARCH_X86, test "x$arch_type" = "xix86") |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1594 AM_CONDITIONAL(USE_X86ASM, test "x$x86_asm" = xyes) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1595 AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1596 AM_CONDITIONAL(HAVE_SUN, test "x$have_sun" = xyes) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1597 |
2967
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
1598 plugindir=`pkg-config audlegacy --variable=plugin_dir` |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1599 AC_SUBST(plugindir) |
2974 | 1600 AUDLDFLAGS="-L ${plugindir} -Wl,-export-dynamic -Wl,-rpath,${plugindir}" |
1601 AC_SUBST(AUDLDFLAGS) | |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1602 |
10 | 1603 dnl XXX |
1604 | |
1605 INPUT_PLUGIN_DIR=Input | |
1606 OUTPUT_PLUGIN_DIR=Output | |
1607 EFFECT_PLUGIN_DIR=Effect | |
1608 GENERAL_PLUGIN_DIR=General | |
1609 VISUALIZATION_PLUGIN_DIR=Visualization | |
1610 CONTAINER_PLUGIN_DIR=Container | |
1173
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
1611 TRANSPORT_PLUGIN_DIR=Transport |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1612 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1613 AC_SUBST(INPUT_PLUGIN_DIR) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1614 AC_SUBST(OUTPUT_PLUGIN_DIR) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1615 AC_SUBST(EFFECT_PLUGIN_DIR) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1616 AC_SUBST(GENERAL_PLUGIN_DIR) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1617 AC_SUBST(VISUALIZATION_PLUGIN_DIR) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1618 AC_SUBST(CONTAINER_PLUGIN_DIR) |
1173
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
1619 AC_SUBST(TRANSPORT_PLUGIN_DIR) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1620 AC_SUBST(pluginsubs) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1621 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1622 dnl XXX Work around some autoconf bugs. |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1623 if test "x$prefix" = "xNONE"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1624 prefix="${ac_default_prefix}" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1625 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1626 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1627 if test -z "$datadir"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1628 datadir="${prefix}/share" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1629 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1630 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1631 localedir="$datadir/locale" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1632 AC_SUBST(localedir) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1633 |
2973 | 1634 BEEP_DEFINES="$CFLAGS -DDATA_DIR=\\\"$datadir/audlegacy\\\" -DPLUGIN_DIR=\\\"$plugindir\\\" -DPLUGINSUBS=$pluginsubs -DLOCALEDIR=\\\"$localedir\\\"" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1635 CFLAGS="$CFLAGS $EXTRA_CFLAGS" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1636 |
2454
2c8bb51ba9cd
Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents:
2449
diff
changeset
|
1637 if test "x$enable_user_plugin_dir" = "xno"; then |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1638 AC_DEFINE(DISABLE_USER_PLUGIN_DIR,, [Define to disable per user plugin directory]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1639 fi |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1640 |
2967
165ccb8de035
audlegacy-plugins begins.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
2961
diff
changeset
|
1641 AC_DEFINE(BMP_RCPATH, ".audlegacy", [Config dir to use]) |
33
e6d2dc95dda1
[svn] Removed BMP_RCPATH from configure.ac, mk/rules.mk.in and Makefiles and added it to config.h via configure.ac
js
parents:
32
diff
changeset
|
1642 |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1643 AC_SUBST(BEEP_DEFINES) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1644 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1645 AC_SUBST(beepdir) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1646 AC_SUBST(plugindir) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1647 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1648 AC_SUBST(EFFECT_PLUGINS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1649 AC_SUBST(GENERAL_PLUGINS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1650 AC_SUBST(INPUT_PLUGINS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1651 AC_SUBST(OUTPUT_PLUGINS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1652 AC_SUBST(VISUALIZATION_PLUGINS) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1653 AC_SUBST(CONTAINER_PLUGINS) |
1173
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
1654 AC_SUBST(TRANSPORT_PLUGINS) |
1046
9b8400ca5ee8
[svn] - add a check for gcc version. now -fgnu89-inline is added only if gcc is 4.2.0 or more.
yaz
parents:
1043
diff
changeset
|
1655 AC_SUBST(GCC42_CFLAGS) |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1656 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1657 AC_CONFIG_FILES([ |
1764
0b6e61f2f22b
Connect Mk2 to autoconf.
William Pitcock <nenolod@atheme.org>
parents:
1724
diff
changeset
|
1658 buildsys.mk |
0b6e61f2f22b
Connect Mk2 to autoconf.
William Pitcock <nenolod@atheme.org>
parents:
1724
diff
changeset
|
1659 extra.mk |
391 | 1660 po/Makefile.in |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1661 ]) |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1662 |
2978
a68a51138f4d
Updated buildsys.
Jonathan Schleifer <js-audacious@webkeks.org>
parents:
2974
diff
changeset
|
1663 BUILDSYS_TOUCH_DEPS |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1664 AC_OUTPUT |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1665 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1666 echo |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1667 echo "Configuration:" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1668 echo |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1669 echo " Install path: ${audacious_plugin_root}" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1670 echo |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1671 echo " Output Plugins" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1672 echo " --------------" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1673 echo " Open Sound System (oss): $have_oss" |
1215
386342d66a4f
disabled OSS4 by default
Cristi Magherusan <majeru@atheme-project.org>
parents:
1213
diff
changeset
|
1674 echo " Open Sound System v4 (oss4): $have_oss4" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1675 echo " Advanced Linux Sound Arch. (alsa): $have_alsa" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1676 echo " Enlightenment Sound Daemon (esd): $have_esd" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1677 echo " Jack Audio Connection Kit (jack): $have_jack" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1678 echo " BSD/SUN audio output (sun): $have_sun" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1679 echo " PulseAudio sound server (pulse_audio): $have_pulse" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1680 echo " Mac OS X sound support (CoreAudio): $have_coreaudio" |
1001
8825a00d57d7
[svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents:
973
diff
changeset
|
1681 echo " FileWriter: $enable_filewriter" |
1043
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1682 echo " -> FileWriter MP3 output part: $have_lame" |
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1683 echo " -> FileWriter Vorbis output part: $have_vorbisenc" |
f65aa5417221
[svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents:
1039
diff
changeset
|
1684 echo " -> FileWriter FLAC output part: $have_writer_flac" |
2769
073c6eac0390
check for libshout in configure
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2454
diff
changeset
|
1685 echo " Icecast audio output (icecast): $have_shout" |
560 | 1686 echo " Null Audio output (null): yes" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1687 echo |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1688 echo " Input Plugins" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1689 echo " -------------" |
622
70f3b14434b2
[svn] - remove the buggy memoryleaking mpg123 and integrate madplug into the
nenolod
parents:
579
diff
changeset
|
1690 echo " MPEG 1/2/3 (madplug): $enable_mp3" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1691 echo " MPEG 4 Audio (AAC): $enable_aac" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1692 echo " Windows Media Audio (wma): $enable_wma" |
2182
cc5e9ec110a4
Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
2178
diff
changeset
|
1693 echo " Monkey's Audio (ape): $enable_ape" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1694 echo " Module decoder (modplug): $have_modplug" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1695 echo " MIDI modular plugin (amidi-plug): $enable_amidiplug" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1696 echo " -> ALSA backend: $enable_amidiplug_alsa" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1697 echo " -> FluidSynth backend: $enable_amidiplug_fluidsynth" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1698 echo " -> dummy backend: $enable_amidiplug_dummy" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1699 echo " MIDI to WAVE converter (timidity): $enable_timidity" |
1375
ef07ff837063
Obliterate old-style CD-Audio and make cdaudio-ng default to on.
Tony Vroon <chainsaw@gentoo.org>
parents:
1338
diff
changeset
|
1700 echo " CD Digital Audio (cdaudio_ng): $enable_cdaudio_ng" |
2303
5561e63e9133
threw out the WAV plugin in favour of the sndfile plugin
mf0102 <0102@gmx.at>
parents:
2182
diff
changeset
|
1701 echo " sndfile extensions: $enable_sndfile" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1702 echo " Tone Generator: yes" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1703 echo " Ogg Vorbis (vorbis): $have_oggvorbis" |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
923
diff
changeset
|
1704 echo " Free Lossless Audio Codec (flacng): $have_flacng" |
2704
5719fca5b7a4
Inform the user about in-going SID-plugin options bit better.
Matti Hamalainen <ccr@tnsp.org>
parents:
2674
diff
changeset
|
1705 echo " Commodore 64 audio (SID): $have_sidplay $xs_have_sidplay2_api" |
5719fca5b7a4
Inform the user about in-going SID-plugin options bit better.
Matti Hamalainen <ccr@tnsp.org>
parents:
2674
diff
changeset
|
1706 echo " -> libSIDPlay1 support: $xs_have_sidplay1" |
5719fca5b7a4
Inform the user about in-going SID-plugin options bit better.
Matti Hamalainen <ccr@tnsp.org>
parents:
2674
diff
changeset
|
1707 echo " -> libSIDPlay2 support: $xs_have_sidplay2" |
5719fca5b7a4
Inform the user about in-going SID-plugin options bit better.
Matti Hamalainen <ccr@tnsp.org>
parents:
2674
diff
changeset
|
1708 echo " -> distortion patched libSIDPlay2: $xs_have_distortion" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1709 echo " Game music (spc, nsf & gbs): yes" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1710 echo " PlayStation audio (sexypsf): yes" |
2755
5a0f5e9af5ef
Add psf2 plugin to build process.
William Pitcock <nenolod@atheme.org>
parents:
2727
diff
changeset
|
1711 echo " PlayStation2 audio (psf2): yes" |
2961 | 1712 echo " Nintendo DS audio (xsf): yes [experimental]" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1713 echo " AdLib synthesizer (adplug): $have_adplug" |
59
72ad216a01ac
[svn] - tell audacious that playback is starting when we open an alac file
nenolod
parents:
50
diff
changeset
|
1714 echo " Apple Lossless Audio Codec (alac): yes" |
110 | 1715 echo " WavPack 4.31+ (wavpack): $have_wavpack" |
232 | 1716 echo " Musepack support (musepack): $enable_musepack" |
290 | 1717 echo " TrueAudio (tta): $enable_tta" |
315
2294f3a6f136
[svn] Metronom (a.k.a. tact generator) input plugin, ported from XMMS.
chainsaw
parents:
314
diff
changeset
|
1718 echo " Metronom: yes" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1719 echo |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1720 echo " General" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1721 echo " -------" |
121 | 1722 echo " Alarm: yes" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1723 echo " Song Change: yes" |
433
38fe08dff5cd
[svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents:
429
diff
changeset
|
1724 echo " Status Icon: $have_statusicon" |
579 | 1725 echo " Audacious OSD: $have_aosd" |
908
8b4b381b4399
[svn] aosd: added compile option in configure for composite support; this way, if support is compiled in, we can safely check if the composite module is loaded
giacomo
parents:
900
diff
changeset
|
1726 echo " -> X Composite support: $have_aosd_xcomp" |
422
5e46b57d1eda
[svn] - added evdev-plug, written-from-scratch plugin that allows to control the player via event devices on linux systems
giacomo
parents:
419
diff
changeset
|
1727 echo " Control via event device (evdev-plug): $have_evdevplug" |
1543
ec4e8ec829b1
Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1540
diff
changeset
|
1728 echo " Global Hotkey Plugin: $have_hotkey" |
1724
655949f889ec
New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents:
1720
diff
changeset
|
1729 echo " Gnome Shortcuts Plugin: $have_gnomeshortcuts" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1730 echo " LIRC: $have_lirc" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1731 echo " AudioScrobbler Client: $scrobbler" |
1456
475eac76a8ba
MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents:
1377
diff
changeset
|
1732 echo " Upload to MTP device: $have_mtp_up" |
2778
28d9a2148cad
fixed plugins build order: filewriter needs to be built before icecast
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2777
diff
changeset
|
1733 echo " Bluetooth audio support: $have_bluetooth" |
1710
5dfa4fc721b0
Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
William Pitcock <nenolod@atheme.org>
parents:
1543
diff
changeset
|
1734 echo " MacOS Dock Album Art plugin: $have_dockalbumart" |
2763
bbde87558ec7
integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents:
2755
diff
changeset
|
1735 echo " Streambrowser: $enable_streambrowser" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1736 echo |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1737 echo " Effect" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1738 echo " ------" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1739 echo " AudioCompressor (AGC): yes" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1740 echo " LADSPA effects host (ladspa): yes" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1741 echo " Voice Removal: yes" |
125 | 1742 echo " Extra Stereo: yes" |
127
46730e83b1e2
[svn] - echo plugin support by Christian Birchinger <joker -at- gentoo.org>
nenolod
parents:
125
diff
changeset
|
1743 echo " Echo/Surround: yes" |
882 | 1744 echo " SndStretch: yes" |
2521
c9d6887cd5d4
added a configure message for crystalizer
Cristi Magherusan <majeru@atheme.org>
parents:
2518
diff
changeset
|
1745 echo " Crystalizer: yes" |
2921
296fd6e83edb
we have both output and effect plugin, so report both
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2826
diff
changeset
|
1746 echo " Icecast effect plugin (icecast): $have_shout" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1747 echo |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1748 echo " Visualization" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1749 echo " -------------" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1750 echo " Blur Scope: yes" |
146
03cfb311eafd
[svn] - spectrum analyzer plugin based on blurscope and a little of xmms-finespectrum
nenolod
parents:
144
diff
changeset
|
1751 echo " Spectrum Analyzer: yes" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1752 echo " Paranormal Visualization Library: $have_paranormal" |
1919
266f1bf0d5fc
Add support for projectM-1.0, soon to be released
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents:
1912
diff
changeset
|
1753 echo " projectM 0.x (GL milkdrop): $have_projectm" |
2136
9bdb5aba5e00
Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents:
2135
diff
changeset
|
1754 echo " projectM 1.x (GL milkdrop): $have_projectm1" |
900
d985f0dcdeb0
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents:
882
diff
changeset
|
1755 echo " RootVis plugin: $have_rootvis" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1756 echo |
503 | 1757 echo " Transport" |
1758 echo " ---------" | |
3115
3b4841de4255
stdio no longer exists; rename relevant heading accordingly.
Kiyoshi Aman <kiyoshi.aman@gmail.com>
parents:
3107
diff
changeset
|
1759 echo " gio transport: yes" |
1720
48b4c7d504f7
Make configure show neon plugin status
Ralf Ertzinger <ralf@skytale.net>
parents:
1718
diff
changeset
|
1760 echo " neon-based http/https: $have_neon" |
503 | 1761 echo " libmms-based mms: $have_mms" |
1173
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
1138
diff
changeset
|
1762 echo " lastfm transport: $have_lastfm" |
503 | 1763 echo |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1764 echo " Container" |
44 | 1765 echo " ---------" |
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1766 echo " Winamp PLS playlist format (pls): yes" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1767 echo " M3U playlist format (m3u): yes" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1768 echo " XML Sharable Playlist Format (xspf): $have_xspf" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1769 echo |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1770 |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1771 if test "x$ap_disable_timidity" = "xyes" && test "x$enable_timidity" = "xno"; then |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1772 echo "Note: an ALSA-supported hardware midi synth or a FluidSynth software synth" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1773 echo "was detected in configuration; in order to use it, the amidi-plug input" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1774 echo "plugin will be compiled in place of timidity. If you wish to compile timidity" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1775 echo "anyway, simply use --enable-timidity in configuration." |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1776 echo "" |
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
1777 fi |