annotate configure.ac @ 2644:6fd8ca4b7b17

add bluetooth plugin
author Paula Stanciu <paula.stanciu@gmail.com>
date Sat, 17 May 2008 21:22:49 +0300
parents 27630085a2c7
children c1258ae018ee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
2473
77af181204e7 Change version to 1.9.0 to indicate journey towards Audacious2.
Matti Hamalainen <ccr@tnsp.org>
parents: 2454
diff changeset
3 AC_INIT([audacious-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
37a183b4ce60 [svn] - rovascope: more randomization
nenolod
parents: 411
diff changeset
30 dnl OMK bootstrap
37a183b4ce60 [svn] - rovascope: more randomization
nenolod
parents: 411
diff changeset
31 AC_SUBST([PACKAGE], [AC_PACKAGE_TARNAME])
37a183b4ce60 [svn] - rovascope: more randomization
nenolod
parents: 411
diff changeset
32 AC_SUBST([VERSION], [AC_PACKAGE_VERSION])
37a183b4ce60 [svn] - rovascope: more randomization
nenolod
parents: 411
diff changeset
33
37a183b4ce60 [svn] - rovascope: more randomization
nenolod
parents: 411
diff changeset
34 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
37a183b4ce60 [svn] - rovascope: more randomization
nenolod
parents: 411
diff changeset
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)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
96 AC_PATH_PROG(RANLIB, ranlib)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
97
390
6bb98fbbae04 [svn] - translation framework
nenolod
parents: 389
diff changeset
98 dnl Gettext -nenolod
6bb98fbbae04 [svn] - translation framework
nenolod
parents: 389
diff changeset
99 AM_GNU_GETTEXT([external])
6bb98fbbae04 [svn] - translation framework
nenolod
parents: 389
diff changeset
100
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
101 dnl Path settings
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
102
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
103 AC_ARG_WITH(dev-dsp,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
104 [ --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
105 [dev_dsp=$withval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
106 [dev_dsp=/dev/dsp]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
107 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
108 AC_DEFINE_UNQUOTED(DEV_DSP, "$dev_dsp",
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
109 [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
110 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
111
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
112 AC_ARG_WITH(dev-mixer,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
113 [ --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
114 [dev_mixer=$withval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
115 [dev_mixer=/dev/mixer]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
116 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
117 AC_DEFINE_UNQUOTED(DEV_MIXER, "$dev_mixer",
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
118 [Path to OSS mixer, default is /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
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
121 dnl These plugins are always built.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
122
2303
5561e63e9133 threw out the WAV plugin in favour of the sndfile plugin
mf0102 <0102@gmx.at>
parents: 2182
diff changeset
123 INPUT_PLUGINS="tonegen console sexypsf cue alac metronom vtx"
1007
0e4ee1c4e6cb [svn] completed diskwriter and out_lame removal
majeru
parents: 1005
diff changeset
124 OUTPUT_PLUGINS="null"
2518
eef3a506a2b8 Add crystalizer plugin.
William Pitcock <nenolod@atheme.org>
parents: 2494
diff changeset
125 EFFECT_PLUGINS="audiocompress crystalizer ladspa voice_removal sndstretch stereo_plugin echo_plugin"
121
b59bca84e3cd [svn] - add xmms-alarm port
nenolod
parents: 118
diff changeset
126 GENERAL_PLUGINS="song_change alarm"
146
03cfb311eafd [svn] - spectrum analyzer plugin based on blurscope and a little of xmms-finespectrum
nenolod
parents: 144
diff changeset
127 VISUALIZATION_PLUGINS="blur_scope spectrum"
1173
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
128 CONTAINER_PLUGINS="m3u pls"
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
129 TRANSPORT_PLUGINS="stdio"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
130
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
131 dnl Check for Audacious
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
132
2444
fd16fdf87f53 Check for Audacious >= 1.5.0 instead.
Matti Hamalainen <ccr@tnsp.org>
parents: 2431
diff changeset
133 PKG_CHECK_MODULES(AUDACIOUS, [audacious >= 1.5.0],
fd16fdf87f53 Check for Audacious >= 1.5.0 instead.
Matti Hamalainen <ccr@tnsp.org>
parents: 2431
diff changeset
134 [ADD_PC_REQUIRES([audacious >= 1.5.0])],
fd16fdf87f53 Check for Audacious >= 1.5.0 instead.
Matti Hamalainen <ccr@tnsp.org>
parents: 2431
diff changeset
135 [AC_MSG_ERROR([Cannot find Audacious 1.5.0 or later, have you installed audacious yet?])]
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
136 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
137
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
138 dnl Check for GTK/GLib/GThread/Pango/DBus
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
139
2428
5ba6588580e0 g_timeout_add_seconds() requires glib-2.14.0 or higher.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2423
diff changeset
140 PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.14.0 gthread-2.0],
5ba6588580e0 g_timeout_add_seconds() requires glib-2.14.0 or higher.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2423
diff changeset
141 [ADD_PC_REQUIRES([glib-2.0 >= 2.14.0])],
2447
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
142 [AC_MSG_ERROR([Cannot find Glib2 >= 2.14.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
143 )
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
144
2447
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
145 PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.10.0],
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
146 [ADD_PC_REQUIRES([gtk+-2.0 >= 2.10.0])],
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
147 [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
148 )
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
149
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
150 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
151 [ADD_PC_REQUIRES([pango >= 1.8.0])],
2447
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
152 [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
153 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
154
1233
51f63dd24b9b Make DBus support optional.
nenolod@tiamat.local
parents: 1215
diff changeset
155 AC_ARG_ENABLE(dbus,
51f63dd24b9b Make DBus support optional.
nenolod@tiamat.local
parents: 1215
diff changeset
156 [ --enable-dbus enable DBus support (default=yes)],
51f63dd24b9b Make DBus support optional.
nenolod@tiamat.local
parents: 1215
diff changeset
157 enable_dbus=$enableval, enable_dbus=yes)
2178
852fb48fcc67 Fix bashism in the configure script.
William Pitcock <nenolod@atheme.org>
parents: 2176
diff changeset
158 if test "x$enable_dbus" = "xyes"; then
1233
51f63dd24b9b Make DBus support optional.
nenolod@tiamat.local
parents: 1215
diff changeset
159 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60 dbus-glib-1 >= 0.60],
51f63dd24b9b Make DBus support optional.
nenolod@tiamat.local
parents: 1215
diff changeset
160 [ADD_PC_REQUIRES([dbus-1 >= 0.60 dbus-glib-1 >= 0.60])
51f63dd24b9b Make DBus support optional.
nenolod@tiamat.local
parents: 1215
diff changeset
161 AC_DEFINE(USE_DBUS, 1, [Define if D-Bus support enabled])],
51f63dd24b9b Make DBus support optional.
nenolod@tiamat.local
parents: 1215
diff changeset
162 [AC_MSG_ERROR([Cannot find dbus-glib >= 0.60])]
51f63dd24b9b Make DBus support optional.
nenolod@tiamat.local
parents: 1215
diff changeset
163 ])
1234
ecfc5141c77f Fix typo.
nenolod@tiamat.local
parents: 1233
diff changeset
164 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
165
2447
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
166
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
167 dnl Check for libmowgli.
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
168
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
169 PKG_CHECK_MODULES(MOWGLI, [libmowgli >= 0.4.0],
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
170 [ADD_PC_REQUIRES([libmowgli >= 0.4.0])],
bfa3d9faa4f0 Some sanitization, I hope.
Matti Hamalainen <ccr@tnsp.org>
parents: 2445
diff changeset
171 [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
172 )
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
173
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
174 dnl IPv6 support
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
175 dnl ========================
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
176 AC_ARG_ENABLE(ipv6,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
177 [ --enable-ipv6 enable IPv6 support (default=no)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
178 enable_ipv6=$enableval, enable_ipv6=no)
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
179 if test "x$enable_ipv6" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
180 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
181 fi
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
182 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
183 AC_SUBST(USE_IPV6)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
184
44
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
185 dnl chardet support
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
186 dnl ========================
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
187 AC_ARG_ENABLE(chardet,
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
188 [ --enable-chardet enable character set detection support (default=no)],
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
189 enable_chardet=$enableval, enable_chardet=no)
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
190 if test "x$enable_chardet" = "xyes"; then
44
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
191 AC_DEFINE(USE_CHARDET, 1, [Define if character set detection enabled] )
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
192 fi
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
193 AM_CONDITIONAL(USE_CHARDET,test "x$enable_chardet" = "xyes")
44
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
194 AC_SUBST(USE_CHARDET)
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
195
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
196 dnl plugin stuff
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
197 dnl ========================
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
198
1879
81cdc01db60e Update buildsys (adds ${PROG_SUFFIX}).
Jonathan Schleifer <js@h3c.de>
parents: 1863
diff changeset
199 BUILDSYS_SHARED_LIB
1909
81b524aa7fcd implib.
Jonathan Schleifer <js@h3c.de>
parents: 1879
diff changeset
200 BUILDSYS_PROG_IMPLIB
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
201 test "x$PROG_IMPLIB_NEEDED" = "xyes" && LIBS="$LIBS -L\${libdir} -laudacious.exe"
1764
0b6e61f2f22b Connect Mk2 to autoconf.
William Pitcock <nenolod@atheme.org>
parents: 1724
diff changeset
202
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
203 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
204 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
205 case "$target" in
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
206 *-apple-*)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
207 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
208 PICFLAGS="-DPIC -fno-common"
1540
8efa68ee4d5a audacious-plugins: -single-module on OSX.
William Pitcock <nenolod@atheme.org>
parents: 1523
diff changeset
209 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
210 LIBLDFLAGS="-dynamiclib -single_module"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
211 AUDLDFLAGS=""
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
212 SHARED_SUFFIX=".dylib"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
213 ;;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
214 *)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
215 AC_MSG_RESULT([libdl-compatible: -fPIC -DPIC -shared, .so])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
216 PICFLAGS="-fPIC -DPIC"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
217 PICLDFLAGS="-fPIC -DPIC -shared"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
218 LIBLDFLAGS="-fPIC -DPIC -shared"
2431
fd2ef06da1c5 abandon ${pluginlibdir}.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2428
diff changeset
219 AUDLDFLAGS="-L \${libdir} -Wl,-export-dynamic -Wl,-rpath,${libdir}"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
220 SHARED_SUFFIX=".so"
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 esac
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
223 AC_SUBST(PICFLAGS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
224 AC_SUBST(PICLDFLAGS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
225 AC_SUBST(LIBLDFLAGS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
226 AC_SUBST(AUDLDFLAGS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
227 AC_SUBST(SHARED_SUFFIX)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
228 AC_DEFINE_UNQUOTED(SHARED_SUFFIX, "${SHARED_SUFFIX}",
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
229 [Define the shared module suffix extension on your platform.])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
230
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
231 AC_MSG_CHECKING([if you are running Apple-GCC])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
232 case "$target" in
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
233 *-apple-*)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
234 AC_MSG_RESULT([yes, sorry you poor bastard])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
235 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
236 ;;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
237 *)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
238 AC_MSG_RESULT([no])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
239 ;;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
240 esac
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
241
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
242 dnl Check for esound
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_ARG_ENABLE( esd,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
245 [ --disable-esd disable esound output plugin [default=enabled]],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
246 [enable_esd=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
247 [enable_esd="yes"]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
248 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
249
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
250 if test "x$enable_esd" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
251 PKG_CHECK_MODULES(ESD, [esound >= 0.2],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
252 [have_esd=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
253 OUTPUT_PLUGINS="$OUTPUT_PLUGINS esd"],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
254 [have_esd=no]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
255 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
256 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
257 AC_MSG_RESULT([*** esound plugin disabled per user request ***])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
258 have_esd=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
259 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
260
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
261 dnl Check for PulseAudio
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
262
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
263 AC_ARG_ENABLE( pulse,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
264 [ --disable-pulse disable PulseAudio output plugin [default=enabled]],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
265 [enable_pulse=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
266 [enable_pulse="yes"]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
267 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
268
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
269 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
270 PKG_CHECK_MODULES(PULSE, [libpulse >= 0.9.9],
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
271 [have_pulse=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
272 OUTPUT_PLUGINS="$OUTPUT_PLUGINS pulse_audio"],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
273 [have_pulse=no]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
274 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
275 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
276 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
277 have_pulse=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
278 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
279
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
280 dnl *** CoreAudio
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
281
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
282 AC_ARG_ENABLE(coreaudio,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
283 [ --disable-coreaudio disable CoreAudio output plugin (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
284 [enable_coreaudio=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
285 [enable_coreaudio="yes"]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
286 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
287
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
288 if test "x$enable_coreaudio" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
289 AC_CHECK_HEADERS([CoreServices/CoreServices.h],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
290 [have_coreaudio=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
291 OUTPUT_PLUGINS="$OUTPUT_PLUGINS CoreAudio"],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
292 [have_coreaudio=no])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
293 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
294 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
295 have_coreaudio=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
296 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
297
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
298 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
299
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
300 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
301 [ --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
302 [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
303 [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
304 )
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
305
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
306 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
307 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
308 [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
309 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
310 [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
311 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
312 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
313 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
314 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
315
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
316 dnl *** AltiVec
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
317
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
318 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
319 [ --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
320 [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
321 [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
322 )
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
323 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
324 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
325 [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
326 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
327 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
328 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
329 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
330 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
331 [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
332 )
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
333 fi
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
334 AC_SUBST(DCT64)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
335
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
336 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
337
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
338 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
339 [ --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
340 [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
341 [enable_sse2=yes]
923
053baea2cbef [svn] - replace SSE2 detection macro.
yaz
parents: 922
diff changeset
342 )
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
343 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
344 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
345 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
346 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
347 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
348 #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
349 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
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 _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
352 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
353 }
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 ],
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_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
356 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
357 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
358 [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
359 )
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 fi
923
053baea2cbef [svn] - replace SSE2 detection macro.
yaz
parents: 922
diff changeset
361 AC_SUBST(SIMD_CFLAGS)
053baea2cbef [svn] - replace SSE2 detection macro.
yaz
parents: 922
diff changeset
362 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
363
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
364 dnl *** MP3
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
365
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
366 AC_ARG_ENABLE(mp3,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
367 [ --disable-mp3 disable mp3 plugin. (default=enabled) ],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
368 [enable_mp3=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
369 [enable_mp3=yes]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
370 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
371
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
372 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
373 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
374 [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
375 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
376 )
5c33e8e1a479 - add a m4 macro file to setup MAD_CFLAGS and MAD_LIBS.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2102
diff changeset
377 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
378 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
379 enable_mp3=no
634
65606ed19c76 [svn] - make use of integrated libid3tag
yaz
parents: 622
diff changeset
380 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
381
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
382 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
383 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
384 ac_save_CFLAGS="$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
385 CFLAGS="$CFLAGS $MAD_CFLAGS $AUDACIOUS_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
386 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
387 [
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
388 #include <mad.h>
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
389 #include <audacious/plugin.h>
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
390 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
391 {
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
392 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
393 }
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
394 ],
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
395 [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
396 [
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
397 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
398 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
399 ],
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
400 )
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
401 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
402 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
403
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
404 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
405 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
406 fi
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
407
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
408 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
409 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
410
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
411 dnl *** Rocklight
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
412
411
78a5e9c37469 [svn] - Rework and clean up code
hansmi
parents: 408
diff changeset
413 AC_ARG_ENABLE(rocklight,
78a5e9c37469 [svn] - Rework and clean up code
hansmi
parents: 408
diff changeset
414 AS_HELP_STRING([--disable-rocklight], [disable Rocklight vis plugin (default=enabled)]),
78a5e9c37469 [svn] - Rework and clean up code
hansmi
parents: 408
diff changeset
415 [enable_rocklight="$enableval"],
78a5e9c37469 [svn] - Rework and clean up code
hansmi
parents: 408
diff changeset
416 [enable_rocklight="yes"]
78a5e9c37469 [svn] - Rework and clean up code
hansmi
parents: 408
diff changeset
417 )
78a5e9c37469 [svn] - Rework and clean up code
hansmi
parents: 408
diff changeset
418
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
419 if test "x$enable_rocklight" = "xyes"; then
411
78a5e9c37469 [svn] - Rework and clean up code
hansmi
parents: 408
diff changeset
420 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS rocklight"
78a5e9c37469 [svn] - Rework and clean up code
hansmi
parents: 408
diff changeset
421 fi
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
422
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
423 dnl *** LIRC client libraries
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
424
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
425 AC_ARG_ENABLE(lirc,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
426 [ --disable-lirc disable LIRC plugin (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
427 [enable_lirc=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
428 [enable_lirc="yes"]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
429 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
430
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
431 if test "x$enable_lirc" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
432 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
433 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
434 AC_MSG_RESULT([*** LIRC plugin disabled per user request ***])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
435 have_lirc="no"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
436 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
437
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
438 if test "x$have_lirc" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
439 GENERAL_PLUGINS="$GENERAL_PLUGINS lirc"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
440 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
441
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
442 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
443
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
444 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
445 [ --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
446 [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
447 [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
448 )
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
449
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
450 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
451 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
452 *-*-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
453 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
454 ;;
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
455 *)
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
456 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
457 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
458 ;;
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
459 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
460 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
461 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
462 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
463 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
464
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
465 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
466 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
467 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
468
1543
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
469 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
470
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
471 AC_ARG_ENABLE(hotkey,
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
472 [ --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
473 [enable_hotkey=$enableval],
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
474 [enable_hotkey="yes"]
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
475 )
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
476
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
477 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
478 have_hotkey="yes"
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
479 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
480 else
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
481 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
482 have_hotkey="no"
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
483 fi
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
484
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
485 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
486 GENERAL_PLUGINS="$GENERAL_PLUGINS hotkey"
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
487 fi
ec4e8ec829b1 Include global hotkey plugin in build system (src/hotkey)
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1540
diff changeset
488
1724
655949f889ec New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1720
diff changeset
489 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
490
655949f889ec New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1720
diff changeset
491 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
492 [ --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
493 [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
494 [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
495 )
655949f889ec New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1720
diff changeset
496
655949f889ec New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1720
diff changeset
497 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
498 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
499 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
500 [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
501 else
655949f889ec New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1720
diff changeset
502 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
503 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
504 fi
655949f889ec New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1720
diff changeset
505
655949f889ec New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1720
diff changeset
506 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
507 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
508 fi
655949f889ec New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
Sascha Hlusiak <contact@saschahlusiak.de>
parents: 1720
diff changeset
509
433
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
510 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
511
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
512 AC_ARG_ENABLE(statusicon,
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
513 [ --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
514 [enable_statusicon=$enableval],
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
515 [enable_statusicon="yes"]
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
516 )
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
517
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
518 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
519 have_statusicon="yes"
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
520 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
521 else
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
522 AC_MSG_RESULT([*** X11 Status Icon plugin disabled per user request ***])
856
a5f4472faa6b [svn] - couldn't disable statusicon.
yaz
parents: 839
diff changeset
523 have_statusicon="no"
433
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
524 fi
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
525
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
526 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
527 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
528 fi
38fe08dff5cd [svn] - added status icon plugin (written from scratch, with code from gtk 2.10)
giacomo
parents: 429
diff changeset
529
579
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
530 dnl *** Audacious OSD plugin (pangocairo-based)
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
531
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
532 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
533 [ --disable-aosd disable Audacious OSD plugin (default=enabled)],
579
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
534 [enable_aosd=$enableval],
933
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
535 [enable_aosd="guess"]
579
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
536 )
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
537
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
538 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
539 [ --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
540 [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
541 [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
542 )
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
543
933
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
544 if test "x$enable_aosd" = "xguess"; then
579
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
545 have_aosd="yes"
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
546 PKG_CHECK_MODULES(PANGO,[pango >= 1.14.7],,
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
547 [have_aosd="no"
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
548 AC_MSG_RESULT([*** pango >= 1.14.7 is required for Audacious OSD plugin ***])]
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
549 )
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
550 PKG_CHECK_MODULES(CAIRO,[cairo >= 1.2.6],,
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
551 [have_aosd="no"
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
552 AC_MSG_RESULT([*** cairo >= 1.2.6 is required for Audacious OSD plugin ***])]
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
553 )
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
554 PKG_CHECK_MODULES(PANGOCAIRO,[pangocairo >= 1.14.7],,
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
555 [have_aosd="no"
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
556 AC_MSG_RESULT([*** pangocairo >= 1.14.7 is required for Audacious OSD plugin ***])]
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
557 )
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
558 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
559 [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
560 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
561 )
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
562 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
563 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
564 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
565 [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
566 [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
567 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
568 )
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 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
570 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
571 have_aosd_xcomp="no"
933
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
572 fi
579
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
573 else
933
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
574 if test "x$enable_aosd" = "xyes"; then
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
575 AC_MSG_RESULT([*** Audacious OSD plugin has been forcefully enabled ***])
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
576 have_aosd="yes"
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
577 if test "x$enable_aosd_xcomp" = "xyes"; then
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
578 have_aosd_xcomp="yes"
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
579 PKG_CHECK_MODULES(XCOMPOSITE, xcomposite,
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
580 [AC_DEFINE([HAVE_XCOMPOSITE],[],[X Composite extension available])],
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
581 [have_aosd_xcomp="no"
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
582 AC_MSG_RESULT([*** X Composite extension not found, composite support for Audacious OSD will not be compiled ***])]
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
583 )
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
584 else
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
585 AC_MSG_RESULT([*** X Composite support for Audacious OSD plugin disabled per user request ***])
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
586 have_aosd_xcomp="no"
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
587 fi
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
588 else
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
589 AC_MSG_RESULT([*** Audacious OSD plugin disabled per user request ***])
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
590 have_aosd="no"
35ec41daad52 [svn] - allow AOSD to be forcefully enabled
nenolod
parents: 930
diff changeset
591 fi
579
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
592 fi
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
593
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
594 if test "x$have_aosd" = "xyes"; then
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
595 GENERAL_PLUGINS="$GENERAL_PLUGINS aosd"
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
596 fi
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
597
900
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
598 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
599
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
600 AC_ARG_ENABLE(rootvis,
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
601 [ --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
602 [enable_rootvis=$enableval],
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
603 [enable_rootvis="yes"]
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
604 )
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
605
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
606 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
607 have_rootvis="yes"
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
608 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
609 [have_rootvis="no"
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
610 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
611 )
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
612 else
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
613 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
614 have_rootvis="no"
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
615 fi
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
616
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
617 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
618 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS rootvis"
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
619 fi
d985f0dcdeb0 [svn] - add a starting point for xmms-rootvis port. giacomo will need to
nenolod
parents: 882
diff changeset
620
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
621 dnl *** AdPlug requirement (libbinio)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
622
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
623 AC_ARG_ENABLE(adplug,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
624 [ --disable-adplug disable AdPlug plugin (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
625 [enable_adplug=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
626 [enable_adplug="yes"]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
627 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
628
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
629 if test "x$enable_adplug" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
630 have_adplug="yes"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
631 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
632 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
633 AC_MSG_RESULT([*** AdPlug plugin disabled per user request ***])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
634 have_adplug="no"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
635 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
636
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
637 if test "x$have_adplug" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
638 INPUT_PLUGINS="$INPUT_PLUGINS adplug"
2002
d7642cf63ae5 make adplug compile again.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 2000
diff changeset
639 AC_SUBST(BINIO_CFLAGS)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
640 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
641
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
642 dnl *** Ogg Vorbis
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
643
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
644 AC_ARG_ENABLE(vorbis,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
645 [ --disable-vorbis disable Ogg Vorbis input plugin (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
646 [enable_vorbis=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
647 [enable_vorbis="yes"]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
648 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
649
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
650 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
651 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
652 [have_oggvorbis=yes],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
653 [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
654 have_oggvorbis=no]
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 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
657 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
658 have_oggvorbis=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
659 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
660
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
661 if test "x$have_oggvorbis" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
662 INPUT_PLUGINS="$INPUT_PLUGINS vorbis"
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
930
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
665 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
666
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
667 AC_ARG_ENABLE(flacng,
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
668 [ --disable-flacng disable flac input plugin (default=enabled)],
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
669 [enable_flacng=$enableval],
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
670 [enable_flacng="yes"]
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
671 )
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
672
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
673 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
674 AM_PATH_LIBFLAC([have_flacng=yes],
930
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
675 [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
676 have_flacng=no]
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
677 )
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
678 else
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
679 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
680 have_flacng=no
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
681 fi
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
682
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
683 if test "x$have_flacng" = "xyes"; then
930
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
684 INPUT_PLUGINS="$INPUT_PLUGINS flacng"
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
685 fi
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
686
110
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
687 dnl *** WavPack 4.31 support
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
688
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
689 AC_ARG_ENABLE(wavpack,
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
690 [ --disable-wavpack disable WavPack input plugin (default=enabled)],
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
691 [enable_wavpack=$enableval],
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
692 [enable_wavpack="yes"]
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
693 )
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
694
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
695 if test "x$enable_wavpack" = "xyes"; then
110
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
696 PKG_CHECK_MODULES(WAVPACK, [wavpack >= 4.31],
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
697 [have_wavpack=yes],
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
698 [AC_MSG_WARN([*** Cannot find WavPack 4.31+, WavPack support will not be built ***])
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
699 have_wavpack=no]
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
700 )
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
701 else
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
702 AC_MSG_RESULT([*** WavPack plugin disabled per user request ***])
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
703 have_wavpack=no
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
704 fi
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
705
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
706 if test "x$have_wavpack" = "xyes"; then
110
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
707 INPUT_PLUGINS="$INPUT_PLUGINS wavpack"
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
708 fi
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
709
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
710 dnl *** AAC
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
711
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
712 AC_ARG_ENABLE(aac,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
713 [ --disable-aac disable aac plugin (default=enabled) ],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
714 [enable_aac=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
715 [enable_aac=yes]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
716 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
717
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
718 if test "x$enable_aac" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
719 INPUT_PLUGINS="$INPUT_PLUGINS aac"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
720 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
721
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
722 dnl *** sndfile
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
723
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
724 AC_ARG_ENABLE(sndfile,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
725 [ --disable-sndfile disable sndfile extensions. [default=enabled] ],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
726 [enable_sndfile=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
727 [enable_sndfile=yes]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
728 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
729
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
730 if test "x$enable_sndfile" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
731 PKG_CHECK_MODULES(SNDFILE, [sndfile >= 0.19],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
732 [enable_sndfile=yes],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
733 [enable_sndfile=no]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
734 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
735 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
736 AC_MSG_RESULT([*** libsndfile extensions disabled per user request ***])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
737 enable_sndfile=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
738 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
739
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
740 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
741 INPUT_PLUGINS="$INPUT_PLUGINS sndfile"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
742 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
743
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
744 dnl *** modplug
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
745
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
746 AC_ARG_ENABLE(modplug,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
747 [ --disable-modplug disable ModPlug plugin (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
748 [enable_modplug=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
749 [enable_modplug="yes"]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
750 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
751
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
752 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
753 INPUT_PLUGINS="$INPUT_PLUGINS modplug"
6b5a52635b3b [svn] - like with so many other things, modplug is now maintained by us.
nenolod
parents: 135
diff changeset
754 have_modplug="yes"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
755 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
756 AC_MSG_RESULT([*** ModPlug plugin disabled per user request ***])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
757 have_modplug="no"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
758 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
759
232
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
760 dnl *** Musepack
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
761
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
762 AC_ARG_ENABLE(musepack,
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
763 [ --disable-musepack disable musepack input plugin (default=enabled)],
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
764 [enable_musepack=$enableval],
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
765 [enable_musepack="yes"]
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
766 )
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
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_musepack" = "xyes"; then
662
fb0196e8f03f [svn] - remove a bunch of audacious-core cruft
nenolod
parents: 634
diff changeset
769 PKG_CHECK_MODULES(TAGLIB, [taglib >= 1.4], [
fb0196e8f03f [svn] - remove a bunch of audacious-core cruft
nenolod
parents: 634
diff changeset
770 AC_CHECK_HEADERS(mpcdec/config_types.h,, [
fb0196e8f03f [svn] - remove a bunch of audacious-core cruft
nenolod
parents: 634
diff changeset
771 enable_musepack=no
fb0196e8f03f [svn] - remove a bunch of audacious-core cruft
nenolod
parents: 634
diff changeset
772 ])
fb0196e8f03f [svn] - remove a bunch of audacious-core cruft
nenolod
parents: 634
diff changeset
773 ], [enable_musepack=no])
232
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
774 else
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
775 AC_MSG_RESULT([*** Musepack plugin disabled per user request ***])
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
776 enable_musepack=no
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
777 fi
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
778
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
779 if test "x$enable_musepack" = "xyes"; then
232
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
780 INPUT_PLUGINS="$INPUT_PLUGINS musepack"
2000
89a445c53318 make musepack compile again.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1973
diff changeset
781 AC_SUBST(TAGLIB_CFLAGS)
232
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
782 fi
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
783
878
aa044d71838f [svn] Goodbye ffmpeg, welcome back WMA.
chainsaw
parents: 874
diff changeset
784 dnl *** WMA
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
785
878
aa044d71838f [svn] Goodbye ffmpeg, welcome back WMA.
chainsaw
parents: 874
diff changeset
786 AC_ARG_ENABLE(wma,
aa044d71838f [svn] Goodbye ffmpeg, welcome back WMA.
chainsaw
parents: 874
diff changeset
787 [ --disable-wma disable wma plugin. (default=enabled)],
aa044d71838f [svn] Goodbye ffmpeg, welcome back WMA.
chainsaw
parents: 874
diff changeset
788 [enable_wma=$enableval],
aa044d71838f [svn] Goodbye ffmpeg, welcome back WMA.
chainsaw
parents: 874
diff changeset
789 [enable_wma=yes]
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
790 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
791
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
792 if test "x$enable_wma" = "xyes"; then
878
aa044d71838f [svn] Goodbye ffmpeg, welcome back WMA.
chainsaw
parents: 874
diff changeset
793 INPUT_PLUGINS="$INPUT_PLUGINS wma"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
794 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
795
2182
cc5e9ec110a4 Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 2178
diff changeset
796 dnl *** Monkey's Audio
cc5e9ec110a4 Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 2178
diff changeset
797
cc5e9ec110a4 Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 2178
diff changeset
798 AC_ARG_ENABLE(ape,
cc5e9ec110a4 Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 2178
diff changeset
799 [ --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
800 [enable_ape=$enableval],
cc5e9ec110a4 Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 2178
diff changeset
801 [enable_ape=yes]
cc5e9ec110a4 Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 2178
diff changeset
802 )
cc5e9ec110a4 Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 2178
diff changeset
803
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
804 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
805 INPUT_PLUGINS="$INPUT_PLUGINS demac"
cc5e9ec110a4 Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 2178
diff changeset
806 fi
cc5e9ec110a4 Added initial version of Monkey's Audio plugin
Eugene Zagidullin <e.asphyx@gmail.com>
parents: 2178
diff changeset
807
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
808 dnl *** jack output plugin
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
809 AC_ARG_ENABLE( jack,
50
ea473b7f6afe [svn] - allow jack to be forcefully disabled
nenolod
parents: 46
diff changeset
810 [ --disable-jack disable jack output plugin (default=enabled)], [enable_jack=$enableval],
ea473b7f6afe [svn] - allow jack to be forcefully disabled
nenolod
parents: 46
diff changeset
811 [enable_jack="yes"])
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
812
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
813 if test "x$enable_jack" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
814 AM_PATH_JACK(have_jack=yes, have_jack=no)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
815 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
816 AC_MSG_RESULT([*** jack plugin disabled per user request ***])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
817 have_jack=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
818 fi
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$have_jack" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
821 OUTPUT_PLUGINS="$OUTPUT_PLUGINS jack"
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
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
824 dnl *** arts output plugin
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
825 AC_ARG_ENABLE( arts,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
826 [ --disable-arts disable arts output plugin (default=enabled)],,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
827 enable_arts="yes")
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
828
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
829 if test "x$enable_arts" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
830 AM_PATH_ARTSC(0.9.5, have_arts=yes, have_arts=no)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
831 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
832 AC_MSG_RESULT([*** arts plugin disabled per user request ***])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
833 have_arts=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
834 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
835
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
836 if test "x$have_arts" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
837 OUTPUT_PLUGINS="$OUTPUT_PLUGINS arts"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
838 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
839
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
840 dnl *** sid
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
841 AC_ARG_ENABLE( sid,
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
842 [ --disable-sid disable SID input plugin (default=enabled)],,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
843 enable_sid="yes")
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
844
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
845 if test "x$enable_sid" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
846 AM_PATH_SIDPLAY(have_sidplay=yes, have_sidplay=no)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
847 else
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
848 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
849 have_sidplay=no
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
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
852 if test "x$have_sidplay" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
853 INPUT_PLUGINS="$INPUT_PLUGINS sid"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
854 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
855
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
856 dnl *** OSS output
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
857
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
858 AC_ARG_ENABLE(oss,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
859 [ --disable-oss disable the OSS output plugin (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
860 [enable_oss=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
861 [enable_oss=yes]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
862 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
863
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
864 have_oss=no
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
865 if test "x$enable_oss" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
866 AC_MSG_CHECKING(for OSS include dir)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
867 OSS_CFLAGS=""
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
868 if test -f "/etc/oss.conf" ; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
869 for i in `cat /etc/oss.conf`; do
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
870 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
871 if test "x$i" != "x$t" ; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
872 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
873 OSS_CFLAGS="-I$t/include"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
874 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
875 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
876 done
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
877 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
878 if test -n "$OSS_CFLAGS" ; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
879 AC_MSG_RESULT([$OSS_CFLAGS])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
880 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
881 AC_MSG_RESULT([not found])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
882 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
883 CFLAGS_save=$CFLAGS
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
884 CFLAGS="$CFLAGS $OSS_CFLAGS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
885 AC_CHECK_HEADERS(soundcard.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
886 AC_CHECK_HEADERS(sys/soundcard.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
887 AC_CHECK_HEADERS(machine/soundcard.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
888 CFLAGS=$CFLAGS_save
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
889
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
890 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
891 have_oss=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
892 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
893
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
894 if test "x${have_oss}" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
895 AC_MSG_CHECKING(whether we need -lossaudio)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
896 AC_TRY_LINK([
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
897 #include <sys/ioctl.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
898 #ifdef HAVE_SYS_SOUNDCARD_H
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
899 #include <sys/soundcard.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
900 #else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
901 #include <soundcard.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
902 #endif
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
903 ], [
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
904 int fd, value;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
905 ioctl(fd, SOUND_MIXER_READ_VOLUME, &value);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
906 ], AC_MSG_RESULT(no), [
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
907 OSS_LIBS="-lossaudio"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
908 AC_MSG_RESULT(yes)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
909 ])
6
7cac35581bd0 [svn] - only check for -lossaudio if have_oss is true (otherwise libESD is broken on many platforms)
nenolod
parents: 5
diff changeset
910 fi
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
911 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
912
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
913 if test "x$have_oss" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
914 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
915 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
916 have_oss=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
917 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
918
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
919 if test "x$have_oss" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
920 OUTPUT_PLUGINS="$OUTPUT_PLUGINS OSS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
921 fi
2526
27630085a2c7 Actually substitute/define OSS_CFLAGS.
Matti Hamalainen <ccr@tnsp.org>
parents: 2521
diff changeset
922 AC_SUBST(OSS_CFLAGS)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
923 AC_SUBST(OSS_LIBS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
924
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
925
e49e02828f85 OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents: 1190
diff changeset
926 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
927
e49e02828f85 OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents: 1190
diff changeset
928 AC_ARG_ENABLE(oss4,
1215
386342d66a4f disabled OSS4 by default
Cristi Magherusan <majeru@atheme-project.org>
parents: 1213
diff changeset
929 [ --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
930 [enable_oss4=$enableval],
1215
386342d66a4f disabled OSS4 by default
Cristi Magherusan <majeru@atheme-project.org>
parents: 1213
diff changeset
931 [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
932 )
e49e02828f85 OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents: 1190
diff changeset
933
e49e02828f85 OSS4 VMIX-enabled fork of the OSS3 output plugin (just bypasses the mixer
Cristi Magherusan <majeru@atheme-project.org>
parents: 1190
diff changeset
934 have_oss4=no
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
935 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
936 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
937 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
938 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
939 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
940 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
941 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
942 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
943 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
944 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
945 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
946 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
947 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
948 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
949 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
950 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
951 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
952 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
953 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
954 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
955 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
956 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
957 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
958 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
959
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
960 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
961 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
962 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
963
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
964 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
965 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
966 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
967 #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
968 #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
969 #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
970 #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
971 #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
972 #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
973 ], [
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 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
975 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
976 ], 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
977 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
978 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
979 ])
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 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
981 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
982
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
983 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
984 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
985 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
986 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
987 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
988
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
989 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
990 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
991 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
992
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 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
994
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
995 dnl *** ALSA output plugin
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
996
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
997 AC_ARG_ENABLE(alsa,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
998 [ --disable-alsa disable ALSA input plugin (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
999 [enable_alsa=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1000 [enable_alsa=yes]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1001 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1002
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1003 if test "x$enable_alsa" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1004 PKG_CHECK_MODULES(ALSA, [alsa >= 1.0],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1005 [
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1006 have_alsa=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1007 alsalib_available=yes
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 [
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1010 have_alsa=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1011 alsalib_available=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1012 ]
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 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1015 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
1016 have_alsa=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1017 alsalib_available=check
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1018 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1019
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1020 if test "x$have_alsa" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1021 OUTPUT_PLUGINS="$OUTPUT_PLUGINS alsa"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1022 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1023
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1024
1001
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1025 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
1026
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1027 AC_ARG_ENABLE(amidiplug,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1028 [ --disable-amidiplug disable amidi-plug input plugin (default=check) ],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1029 [enable_amidiplug=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1030 [enable_amidiplug=check]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1031 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1032
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1033 AC_ARG_ENABLE(amidiplug-alsa,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1034 [ --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
1035 [enable_amidiplug_alsa=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1036 [enable_amidiplug_alsa=auto]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1037 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1038
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1039 AC_ARG_ENABLE(amidiplug-flsyn,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1040 [ --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
1041 [enable_amidiplug_fluidsynth=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1042 [enable_amidiplug_fluidsynth=auto]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1043 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1044
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1045 AC_ARG_ENABLE(amidiplug-dummy,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1046 [ --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
1047 [enable_amidiplug_dummy=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1048 [enable_amidiplug_dummy=auto]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1049 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1050
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 if test "x$enable_amidiplug" = "xno"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1053 AC_MSG_RESULT([*** amidi-plug disabled per user request ***])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1054 enable_amidiplug=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1055 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1056 if test "x$enable_amidiplug_alsa" != "xauto"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1057 enable_amidiplug=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1058 elif test "x$enable_amidiplug_fluidsynth" != "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_dummy" != "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 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1063 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1064
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1065 if test "x$enable_amidiplug" = "xcheck"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1066 if test "x$alsalib_available" = "xcheck"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1067 PKG_CHECK_MODULES(ALSA, [alsa >= 1.0],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1068 [alsalib_available=yes],[alsalib_available=no])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1069 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1070 if test "x$alsalib_available" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1071 AM_PATH_AMIDIPLUG_HWSYNTH(ap_have_hwsynth=yes, ap_have_hwsynth=no)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1072 if test "x$ap_have_hwsynth" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1073 enable_amidiplug=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1074 ap_disable_timidity=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1075 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1076 PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1077 [fluidsynth_available=yes],[fluidsynth_available=no])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1078 if test "x$fluidsynth_available" = "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 enable_amidiplug=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1083 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
1084 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1085 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1086 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1087 PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1088 [fluidsynth_available=yes],[fluidsynth_available=no])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1089 if test "x$fluidsynth_available" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1090 enable_amidiplug=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1091 ap_disable_timidity=yes
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 enable_amidiplug=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1094 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
1095 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1096 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1097 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1098
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1099 if test "x$enable_amidiplug" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1100 INPUT_PLUGINS="$INPUT_PLUGINS amidi-plug"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1101 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
1102 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
1103 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
1104 AC_SUBST(AMIDIPLUG_BACKEND_DIR)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1105 if test "x$enable_amidiplug_alsa" = "xauto" -o "x$enable_amidiplug_alsa" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1106 if test "x$alsalib_available" = "xcheck"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1107 PKG_CHECK_MODULES(ALSA, [alsa >= 1.0],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1108 [alsalib_available=yes],[alsalib_available=no])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1109 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1110 if test "x$alsalib_available" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1111 AMIDIPLUG_BACKENDS="$AMIDIPLUG_BACKENDS backend-alsa"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1112 enable_amidiplug_alsa=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1113 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1114 if test "x$enable_amidiplug_alsa" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1115 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
1116 enable_amidiplug_alsa=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1117 else
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 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1120 fi
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 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
1123 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
1124 PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1125 [fluidsynth_available=yes],[fluidsynth_available=no])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1126 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1127 if test "x$fluidsynth_available" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1128 AMIDIPLUG_BACKENDS="$AMIDIPLUG_BACKENDS backend-fluidsynth"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1129 enable_amidiplug_fluidsynth=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1130 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1131 if test "x$enable_amidiplug_fluidsynth" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1132 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
1133 enable_amidiplug_fluidsynth=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1134 else
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 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1137 fi
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 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
1140 AMIDIPLUG_BACKENDS="$AMIDIPLUG_BACKENDS backend-dummy"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1141 enable_amidiplug_dummy=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1142 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1143 AC_SUBST(AMIDIPLUG_BACKENDS)
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
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1146
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1147 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
1148
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1149 AC_ARG_ENABLE(timidity,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1150 [ --disable-timidity disable timidity plugin. (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1151 [enable_timidity=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1152 [
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1153 if test "x$ap_disable_timidity" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1154 enable_timidity=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1155 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1156 enable_timidity=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1157 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1158 ]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1159 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1160
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1161 if test "x$enable_timidity" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1162 INPUT_PLUGINS="$INPUT_PLUGINS timidity"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1163 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1164
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1165 dnl FreeBSD newpcm driver detection
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 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
1168 if test -r "/dev/sndstat"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1169 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
1170 if test "x$?" = "x0"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1171 beep_cv_newpcm_driver="yes"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1172 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1173 beep_cv_newpcm_driver="no"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1174 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1175 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1176 beep_cv_newpcm_driver="no"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1177 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1178 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1179
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1180 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
1181 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
1182 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1183
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1184
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1185 AC_CHECK_HEADERS(linux/joystick.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1186 AC_CHECK_HEADERS(unistd.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1187 AC_CHECK_HEADERS(fcntl.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1188 AC_CHECK_HEADERS(sys/ioctl.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1189 AC_CHECK_HEADERS(fnmatch.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1190 AC_CHECK_HEADERS(limits.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1191 AC_CHECK_HEADERS(wchar.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1192 AC_CHECK_HEADERS(fts.h)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1193
736
f7a3d66d9911 [svn] - fix configure.ac lrintf check
nenolod
parents: 734
diff changeset
1194 AC_CHECK_DECL([lrintf],[AC_DEFINE(HAVE_LRINTF,1)],[AC_CHECK_FUNCS([lrintf])],[
f7a3d66d9911 [svn] - fix configure.ac lrintf check
nenolod
parents: 734
diff changeset
1195 #define _ISOC9X_SOURCE
f7a3d66d9911 [svn] - fix configure.ac lrintf check
nenolod
parents: 734
diff changeset
1196 #include <math.h>
f7a3d66d9911 [svn] - fix configure.ac lrintf check
nenolod
parents: 734
diff changeset
1197 ], [AC_CHECK_FUNCS([lrintf])])
734
ff62f5530a36 [svn] - freebsd portability fixes from "The_Paya". Closes #814.
nenolod
parents: 729
diff changeset
1198 AC_CHECK_FUNCS([mkdtemp getmntinfo statvfs strtoul])
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1199
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1200
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
1201 dnl CD-Audio New Generation
1058
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1202
1375
ef07ff837063 Obliterate old-style CD-Audio and make cdaudio-ng default to on.
Tony Vroon <chainsaw@gentoo.org>
parents: 1338
diff changeset
1203 AC_ARG_ENABLE(cdaudio,
1377
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1375
diff changeset
1204 [ --disable-cdaudio disable cdaudio-ng input plugin (default=enabled) ],
1058
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1205 [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
1206 [enable_cdaudio_ng=yes]
1058
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1207 )
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1208
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1209 if test "$enable_cdaudio_ng" = "yes"; then
1338
0d4450d66bd1 Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents: 1337
diff changeset
1210 PKG_CHECK_MODULES(CDIO, [libcdio >= 0.70],
1467
42306c187663 Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents: 1457
diff changeset
1211 ,
42306c187663 Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents: 1457
diff changeset
1212 [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
1213 enable_cdaudio_ng=no]
42306c187663 Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents: 1457
diff changeset
1214 )
42306c187663 Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents: 1457
diff changeset
1215 fi
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 if test "$enable_cdaudio_ng" = "yes"; then
42306c187663 Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents: 1457
diff changeset
1218 PKG_CHECK_MODULES(CDIO, [libcdio_cdda >= 0.70],
42306c187663 Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents: 1457
diff changeset
1219 [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
1220 CDIO_CFLAGS=`pkg-config --cflags libcdio_cdda`
1058
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1221 AC_SUBST(CDIO_LIBS)
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1222 AC_SUBST(CDIO_CFLAGS)],
1467
42306c187663 Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents: 1457
diff changeset
1223 [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
1224 enable_cdaudio_ng=no]
1338
0d4450d66bd1 Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents: 1337
diff changeset
1225 )
1467
42306c187663 Fixed libcdio and libcddb autoconf detection
Calin Crisan ccrisan@gmail.com
parents: 1457
diff changeset
1226 fi
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 if test "$enable_cdaudio_ng" = "yes"; then
1338
0d4450d66bd1 Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents: 1337
diff changeset
1229 PKG_CHECK_MODULES(CDDB, [libcddb >= 1.2.1],
0d4450d66bd1 Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents: 1337
diff changeset
1230 [INPUT_PLUGINS="$INPUT_PLUGINS cdaudio-ng"
0d4450d66bd1 Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents: 1337
diff changeset
1231 CDDB_LIBS=`pkg-config --libs libcddb`
0d4450d66bd1 Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents: 1337
diff changeset
1232 CDDB_CFLAGS=`pkg-config --cflags libcddb`
0d4450d66bd1 Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents: 1337
diff changeset
1233 AC_SUBST(CDDB_LIBS)
0d4450d66bd1 Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents: 1337
diff changeset
1234 AC_SUBST(CDDB_CFLAGS)],
0d4450d66bd1 Added libcddb autoconf dependency
Calin Crisan ccrisan@gmail.com
parents: 1337
diff changeset
1235 [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
1236 enable_cdaudio_ng=no]
1058
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1237 )
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1238 fi
75f713176b2f [svn] - make build of cdaudio-ng configurable.
yaz
parents: 1056
diff changeset
1239
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1240 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
1241 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
1242
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
1243 CFLAGS="$CFLAGS $AUDACIOUS_CFLAGS $DBUS_CFLAGS"
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
1244 CXXFLAGS="$CXXFLAGS $AUDACIOUS_CFLAGS $DBUS_CFLAGS"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1245
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1246 AC_MSG_CHECKING(if __ELF__ is defined)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1247 AC_EGREP_CPP(yes,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1248 [#ifdef __ELF__
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1249 yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1250 #endif
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1251 ],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1252 [is_elf=yes],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1253 [is_elf=no]
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1254 )
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1255 AC_MSG_RESULT([${is_elf}])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1256
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 have_solaris=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1259 have_sun=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1260 ARCH_DEFINES=""
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1261 case "$host" in
314
29e5e3b6f1b6 [svn] - MirBSD support from <bsiegert -at gmx.de>
nenolod
parents: 306
diff changeset
1262 *-*-openbsd* | *-*-netbsd* | *-*-mirbsd*)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1263 have_sun=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1264 if test "${is_elf}" = "no"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1265 then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1266 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
1267 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1268 OUTPUT_PLUGINS="$OUTPUT_PLUGINS sun"
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 *-*-darwin*)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1271 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
1272 ;;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1273 *-hpux-*)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1274 ARCH_DEFINES="-DHPUX"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1275 ;;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1276 *-*-solaris* | *-*-sunos*)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1277 have_solaris=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1278 ;;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1279 esac
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1280
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1281 arch_type=other
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1282 x86_asm=no
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1283 case "$host" in
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1284 i386-*-* | i486-*-* | i586-*-* | i686-*-* | i86pc-*-*)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1285 arch_type=ix86
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1286 case "$host" in
314
29e5e3b6f1b6 [svn] - MirBSD support from <bsiegert -at gmx.de>
nenolod
parents: 306
diff changeset
1287 *-*-netbsd* | *-*openbsd* | *-*-mirbsd*)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1288 ;;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1289 *)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1290 ARCH_DEFINES="-DI386_ASSEM"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1291 x86_asm=yes
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 esac
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1294 ;;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1295 esac
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1296
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1297 dnl *** Scrobbler ***
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1298
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1299 scrobbler="yes"
2027
46bfefacb8b7 Removed some curl leftovers.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2024
diff changeset
1300 have_lastfm="no"
0
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 dnl libcurl check
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1303
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1304 my_cv_curl_vers=NONE
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1305 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
1306 check="7.9.7"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1307 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
1308 check_hex="070907"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1309
2027
46bfefacb8b7 Removed some curl leftovers.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2024
diff changeset
1310 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
1311 AC_SUBST(CURL_CFLAGS)
46bfefacb8b7 Removed some curl leftovers.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents: 2024
diff changeset
1312 AC_SUBST(CURL_LIBS)
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 if test "x$scrobbler" = "xyes"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1315 GENERAL_PLUGINS="$GENERAL_PLUGINS scrobbler"
1173
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
1316 TRANSPORT_PLUGINS="$TRANSPORT_PLUGINS lastfm"
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
1317 have_lastfm="yes"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1318 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1319
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1320 dnl *** End of Scrobbler checks ***
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1321
1718
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1322 dnl *** neon http plugin ***
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1323
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1324 AC_ARG_ENABLE(neon,
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1325 [ --enable-neon enable neon support (experimental). (default=disabled)],
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1326 [have_neon=$enableval],
2024
361ee83691e9 enable neon by default
William Pitcock <nenolod@atheme.org>
parents: 2023
diff changeset
1327 [have_neon=yes])
1718
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1328
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1329 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
1330 PKG_CHECK_MODULES(NEON, [neon >= 0.26], [TRANSPORT_PLUGINS="$TRANSPORT_PLUGINS neon" ], [have_neon="no"])
1718
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1331 NEON_LIBS=`pkg-config --libs neon`
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1332 NEON_CFLAGS=`pkg-config --cflags neon`
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1333 else
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1334 have_neon=no
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1335 fi
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1336 AC_SUBST(NEON_LIBS)
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1337 AC_SUBST(NEON_CLFAGS)
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1338
892deefba58d - Add neon HTTP transport plugin sources
Ralf Ertzinger <ralf@skytale.net>
parents: 1710
diff changeset
1339
503
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1340 dnl *** MMS
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1341
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1342 AC_ARG_ENABLE(mms,
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1343 [ --disable-mms disable mms support. (default=enabled)],
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1344 [have_mms=$enableval],
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1345 [have_mms=yes])
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1346
874
5b29a6fe9295 [svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents: 856
diff changeset
1347 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
1348 have_mms=yes
1173
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
1349 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
1350 else
503
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1351 have_mms=no
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1352 AC_MSG_RESULT([*** mms plugin disabled by request ***])
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1353 fi
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1354
1456
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1355
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1356 dnl *** MTP Upload
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1357
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1358 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
1359 [ --disable-mtp_up disable mtp upload support. (default=enabled)],
1456
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1360 [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
1361 [have_mtp_up=yes])
1456
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1362
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1363 if test "x$have_mtp_up" = "xyes"; then
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1364 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
1365 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
1366 MTP_LIBS=`pkg-config --libs libmtp`
1457
71138874c5fd fixed linking
Cristi Magherusan <majeru@atheme-project.org>
parents: 1456
diff changeset
1367 MTP_CFLAGS=`pkg-config --cflags libmtp`
1456
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1368 else
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1369 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
1370 AC_MSG_RESULT([*** mtp upload plugin disabled by request ***])
1456
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1371 fi
1457
71138874c5fd fixed linking
Cristi Magherusan <majeru@atheme-project.org>
parents: 1456
diff changeset
1372 AC_SUBST(MTP_LIBS)
71138874c5fd fixed linking
Cristi Magherusan <majeru@atheme-project.org>
parents: 1456
diff changeset
1373 AC_SUBST(MTP_CFLAGS)
1456
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1374
2644
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1375 dnl *** Bluetooth audio suport
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1376
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1377 AC_ARG_ENABLE(bluetooth,
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1378 [ --disable-bluetooth disable bluetooth audio support. (default=enabled)],
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1379 [have_bluetooth=$enableval],
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1380 [have_bluetooth=yes])
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1381
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1382 if test "x$have_bluetooth" = "xyes"; then
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1383 have_bluetooth=yes
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1384 PKG_CHECK_MODULES(BLUEZ, [bluez >= 2.22],
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1385 [GENERAL_PLUGINS="$GENERAL_PLUGINS bluetooth" ], [have_bluetooth="no"])
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1386 BLUEZ_LIBS=`pkg-config --libs bluez`
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1387 BLUEZ_CFLAGS=`pkg-config --cflags bluez`
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1388 else
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1389 have_bluetooth=no
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1390 AC_MSG_RESULT([*** bluetooth audio suport plugin disabled by request ***])
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1391 fi
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1392 AC_SUBST(BLUEZ_LIBS)
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1393 AC_SUBST(BLUEZ_CFLAGS)
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1394
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1395 dnl *** libparanormal checks
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1396
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1397 AC_ARG_ENABLE(paranormal,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1398 [ --disable-paranormal disable paranormal vis plugin. (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1399 [have_paranormal=$enableval],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1400 [have_paranormal=yes])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1401
874
5b29a6fe9295 [svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents: 856
diff changeset
1402 if test "x$have_paranormal" = "xyes"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1403 have_paranormal=yes
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1404 AM_PATH_SDL(1.2.5, , [
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1405 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
1406 have_paranormal="no"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1407 ])
874
5b29a6fe9295 [svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents: 856
diff changeset
1408 else
5b29a6fe9295 [svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents: 856
diff changeset
1409 have_paranormal=no
5b29a6fe9295 [svn] - clear up some configure bugs, pointed out by freebsd port patches
nenolod
parents: 856
diff changeset
1410 AC_MSG_RESULT([*** paranormal plugin disabled by request ***])
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1411 fi
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(xspf,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1414 [ --disable-xspf disable XSPF support. (default=enabled)],
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1415 [have_xspf=$enableval], [have_xspf=yes])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1416
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1417 AM_PATH_XML2(2.0.0, , [
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1418 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
1419 have_paranormal="no"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1420 have_xspf="no"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1421 ])
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1422
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1423 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
1424 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS paranormal"
149
fd9c0a5871ac [svn] - new and IMPROVED paranormal visualization studio
nenolod
parents: 148
diff changeset
1425 fi
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1426
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1427 if test "x$have_xspf" = "xyes"; then
364
50347c06ec68 [svn] - make scrobbler behave better
nenolod
parents: 358
diff changeset
1428 CONTAINER_PLUGINS="$CONTAINER_PLUGINS xspf"
50347c06ec68 [svn] - make scrobbler behave better
nenolod
parents: 358
diff changeset
1429 fi
50347c06ec68 [svn] - make scrobbler behave better
nenolod
parents: 358
diff changeset
1430
1919
266f1bf0d5fc Add support for projectM-1.0, soon to be released
Kieran Clancy <clancy.kieran+audacious@gmail.com>
parents: 1912
diff changeset
1431 dnl *** projectM (GL Milkdrop port)
358
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1432
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1433 AC_ARG_ENABLE(projectm,
1001
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1434 [ --disable-projectm disable projectM vis plugin. (default=enabled)],
358
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1435 [have_projectm=$enableval],
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1436 [have_projectm=yes])
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1437
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1438 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
1439 PKG_CHECK_MODULES(LIBPROJECTM, libprojectM < 1.0, [have_projectm="yes"], [have_projectm="no"])
1294
ea7c0a4fe793 Fix projectm linking.
Alex Maclean <monkeh@monkeh.net>
parents: 1260
diff changeset
1440 AM_PATH_SDL(1.2.5, , [
ea7c0a4fe793 Fix projectm linking.
Alex Maclean <monkeh@monkeh.net>
parents: 1260
diff changeset
1441 AC_MSG_WARN([*** SDL is not installed. projectM will not be built. ***])
ea7c0a4fe793 Fix projectm linking.
Alex Maclean <monkeh@monkeh.net>
parents: 1260
diff changeset
1442 have_projectm="no"
ea7c0a4fe793 Fix projectm linking.
Alex Maclean <monkeh@monkeh.net>
parents: 1260
diff changeset
1443 ])
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1444 if test "x$libprjM" = "xno"; then
358
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1445 AC_MSG_WARN([*** libprojectM not found.
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1446 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
1447 You can download libprojectM at http://projectm.sf.net/])
358
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1448 fi
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1449 LIBPROJECTM_datadir=`pkg-config --variable=pkgdatadir libprojectM`;
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1450 LIBPROJECTM_sysconfdir=`pkg-config --variable=sysconfdir libprojectM`;
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1451 LIBPROJECTM_CFLAGS="$LIBPROJECTM_CFLAGS -DPROJECTM_DATADIR=\\\"$LIBPROJECTM_datadir\\\" -DPROJECTM_SYSCONFDIR=\\\"$LIBPROJECTM_sysconfdir\\\"";
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1452 fi
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1453 AC_SUBST(LIBPROJECTM_LIBS)
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1454 AC_SUBST(LIBPROJECTM_CFLAGS)
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1455
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1456 if test "x$have_projectm" = "xyes"; then
358
bc3bae2880ec [svn] - add support for projectM
nenolod
parents: 331
diff changeset
1457 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS projectm"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1458 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1459
2136
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1460 dnl *** projectM (GL Milkdrop port)
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1461
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1462 AC_ARG_ENABLE(projectm-1.0,
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1463 [ --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
1464 [have_projectm1=$enableval],
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1465 [have_projectm1=yes])
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1466
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1467 if test "x$have_projectm1" = "xyes"; then
2412
49c27d619ffc Fix configure.ac to be less retarded.
William Pitcock <nenolod@atheme.org>
parents: 2401
diff changeset
1468 PKG_CHECK_MODULES(GTKGLEXT, [gtkglext-1.0 >= 1.2.0], [have_projectm1="yes"], [have_projectm1="no"])
49c27d619ffc Fix configure.ac to be less retarded.
William Pitcock <nenolod@atheme.org>
parents: 2401
diff changeset
1469 fi
49c27d619ffc Fix configure.ac to be less retarded.
William Pitcock <nenolod@atheme.org>
parents: 2401
diff changeset
1470
49c27d619ffc Fix configure.ac to be less retarded.
William Pitcock <nenolod@atheme.org>
parents: 2401
diff changeset
1471 if test "$have_projectm1" = "yes"; then
2492
478622d66962 use projectm 1.1 again
William Pitcock <nenolod@atheme.org>
parents: 2449
diff changeset
1472 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
1473 if test x$libprjM = xno; then
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1474 AC_MSG_WARN([*** libprojectM not found.
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1475 libprojectM is needed to build this package.
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1476 You can download libprojectM at http://projectm.sf.net/])
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1477 fi
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1478 LIBPROJECTM1_datadir=`pkg-config --variable=pkgdatadir libprojectM`;
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1479 LIBPROJECTM1_sysconfdir=`pkg-config --variable=sysconfdir libprojectM`;
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1480 LIBPROJECTM1_prefix=`pkg-config --variable=prefix libprojectM`;
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1481 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
1482 fi
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1483 AC_SUBST(LIBPROJECTM1_LIBS)
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1484 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
1485 AC_SUBST(GTKGLEXT_LIBS)
a0746d858e31 Depend on gtkglext for projectm-1.0 instead of SDL.
William Pitcock <nenolod@atheme.org>
parents: 2399
diff changeset
1486 AC_SUBST(GTKGLEXT_CFLAGS)
2136
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1487
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1488 if test "x$have_projectm1" = "xyes"; then
2136
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1489 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS projectm-1.0"
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1490 fi
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1491
290
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1492 dnl *** TTA
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1493
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1494 AC_ARG_ENABLE(tta,
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1495 [ --disable-tta disable TrueAudio plugin (default=enabled) ],
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1496 [enable_tta=$enableval],
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1497 [enable_tta=yes]
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1498 )
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
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$enable_tta" = "xyes"; then
290
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1501 INPUT_PLUGINS="$INPUT_PLUGINS tta"
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1502 fi
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1503
1001
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1504 dnl *** FileWriter
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1505
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1506 AC_ARG_ENABLE(filewriter,
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1507 [ --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
1508 [enable_filewriter=$enableval],
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1509 [enable_filewriter=yes]
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1510 )
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1511
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1512 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
1513 OUTPUT_PLUGINS="$OUTPUT_PLUGINS filewriter"
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1514 fi
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1515
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1516
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1517 AC_ARG_ENABLE(filewriter_mp3,
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1518 [ --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
1519 [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
1520 )
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1521
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1522 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
1523 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
1524 if test "x$have_lame" = "xyes"; then
2097
6e4ad45c21d6 make it build on MacOS again
William Pitcock <nenolod@atheme.org>
parents: 2027
diff changeset
1525 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
1526 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
1527 fi
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1528 fi
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1529
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1530
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1531 AC_ARG_ENABLE(filewriter_vorbis,
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1532 [ --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
1533 [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
1534 )
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1535
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1536 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
1537 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
1538 [have_vorbisenc=yes], [have_vorbisenc=no])
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1539 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
1540 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
1541 FILEWRITER_CFLAGS="$FILEWRITER_CFLAGS `pkg-config --cflags vorbisenc`"
1190
ed2d7787779e more warning elimination.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1173
diff changeset
1542 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
1543 fi
1001
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1544 fi
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1545
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 AC_ARG_ENABLE(filewriter_flac,
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1548 [ --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
1549 [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
1550 )
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1551
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1552 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
1553 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
1554 [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
1555 )
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1556 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
1557 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
1558 FILEWRITER_CFLAGS="$FILEWRITER_CFLAGS `pkg-config --cflags flac`"
1190
ed2d7787779e more warning elimination.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1173
diff changeset
1559 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
1560 fi
1001
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1561 fi
8825a00d57d7 [svn] - configure.ac changes for FileWriter (are likely to have to be fixed)
mf0102
parents: 973
diff changeset
1562
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1563 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
1564 have_lame=no
f65aa5417221 [svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents: 1039
diff changeset
1565 have_vorbisenc=no
f65aa5417221 [svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents: 1039
diff changeset
1566 have_writer_flac=no
f65aa5417221 [svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents: 1039
diff changeset
1567 FILEWRITER_LIBS=""
f65aa5417221 [svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents: 1039
diff changeset
1568 fi
2097
6e4ad45c21d6 make it build on MacOS again
William Pitcock <nenolod@atheme.org>
parents: 2027
diff changeset
1569 AC_SUBST(FILEWRITER_CFLAGS)
1043
f65aa5417221 [svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents: 1039
diff changeset
1570 AC_SUBST(FILEWRITER_LIBS)
f65aa5417221 [svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents: 1039
diff changeset
1571
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1572 dnl *** End of all plugin checks ***
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1573
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1574 AC_SUBST(ARCH_DEFINES)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1575
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1576 dnl XXX delete ASAP -nenolod
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1577 AM_CONDITIONAL(ARCH_X86, test "x$arch_type" = "xix86")
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1578 AM_CONDITIONAL(USE_X86ASM, test "x$x86_asm" = xyes)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1579 AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1580 AM_CONDITIONAL(HAVE_SUN, test "x$have_sun" = xyes)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1581
10
844761e5dac3 [svn] - fully working package
nenolod
parents: 6
diff changeset
1582 plugindir=`pkg-config audacious --variable=plugin_dir`
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1583 AC_SUBST(plugindir)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1584
10
844761e5dac3 [svn] - fully working package
nenolod
parents: 6
diff changeset
1585 dnl XXX
844761e5dac3 [svn] - fully working package
nenolod
parents: 6
diff changeset
1586
844761e5dac3 [svn] - fully working package
nenolod
parents: 6
diff changeset
1587 INPUT_PLUGIN_DIR=Input
844761e5dac3 [svn] - fully working package
nenolod
parents: 6
diff changeset
1588 OUTPUT_PLUGIN_DIR=Output
844761e5dac3 [svn] - fully working package
nenolod
parents: 6
diff changeset
1589 EFFECT_PLUGIN_DIR=Effect
844761e5dac3 [svn] - fully working package
nenolod
parents: 6
diff changeset
1590 GENERAL_PLUGIN_DIR=General
844761e5dac3 [svn] - fully working package
nenolod
parents: 6
diff changeset
1591 VISUALIZATION_PLUGIN_DIR=Visualization
844761e5dac3 [svn] - fully working package
nenolod
parents: 6
diff changeset
1592 CONTAINER_PLUGIN_DIR=Container
1173
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
1593 TRANSPORT_PLUGIN_DIR=Transport
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1594
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1595 AC_SUBST(INPUT_PLUGIN_DIR)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1596 AC_SUBST(OUTPUT_PLUGIN_DIR)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1597 AC_SUBST(EFFECT_PLUGIN_DIR)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1598 AC_SUBST(GENERAL_PLUGIN_DIR)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1599 AC_SUBST(VISUALIZATION_PLUGIN_DIR)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1600 AC_SUBST(CONTAINER_PLUGIN_DIR)
1173
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
1601 AC_SUBST(TRANSPORT_PLUGIN_DIR)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1602 AC_SUBST(pluginsubs)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1603
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1604 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
1605 if test "x$prefix" = "xNONE"; then
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1606 prefix="${ac_default_prefix}"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1607 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1608
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1609 if test -z "$datadir"; then
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1610 datadir="${prefix}/share"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1611 fi
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 localedir="$datadir/locale"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1614 AC_SUBST(localedir)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1615
94
230d8b49db8b [svn] - do not use a different DATA_DIR for audacious-plugins
giacomo
parents: 59
diff changeset
1616 BEEP_DEFINES="$CFLAGS -DDATA_DIR=\\\"$datadir/audacious\\\" -DPLUGIN_DIR=\\\"$plugindir\\\" -DPLUGINSUBS=$pluginsubs -DLOCALEDIR=\\\"$localedir\\\""
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1617 CFLAGS="$CFLAGS $EXTRA_CFLAGS"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1618
2454
2c8bb51ba9cd Minor shellscript consistency cleanups, always test strings
Matti Hamalainen <ccr@tnsp.org>
parents: 2449
diff changeset
1619 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
1620 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
1621 fi
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1622
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
1623 AC_DEFINE(BMP_RCPATH, ".audacious", [Config dir to use])
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
1624
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1625 AC_SUBST(BEEP_DEFINES)
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 AC_SUBST(beepdir)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1628 AC_SUBST(plugindir)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1629
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1630 AC_SUBST(EFFECT_PLUGINS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1631 AC_SUBST(GENERAL_PLUGINS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1632 AC_SUBST(INPUT_PLUGINS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1633 AC_SUBST(OUTPUT_PLUGINS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1634 AC_SUBST(VISUALIZATION_PLUGINS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1635 AC_SUBST(CONTAINER_PLUGINS)
1173
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
1636 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
1637 AC_SUBST(GCC42_CFLAGS)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1638
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1639 AC_CONFIG_FILES([
1764
0b6e61f2f22b Connect Mk2 to autoconf.
William Pitcock <nenolod@atheme.org>
parents: 1724
diff changeset
1640 buildsys.mk
0b6e61f2f22b Connect Mk2 to autoconf.
William Pitcock <nenolod@atheme.org>
parents: 1724
diff changeset
1641 extra.mk
391
d2d262d3064a [svn] - build fix
yaz
parents: 390
diff changeset
1642 po/Makefile.in
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1643 ])
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_OUTPUT
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1646
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 echo
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1649 echo "Configuration:"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1650 echo
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1651 echo " Install path: ${audacious_plugin_root}"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1652 echo
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1653 echo " Output Plugins"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1654 echo " --------------"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1655 echo " Open Sound System (oss): $have_oss"
1215
386342d66a4f disabled OSS4 by default
Cristi Magherusan <majeru@atheme-project.org>
parents: 1213
diff changeset
1656 echo " Open Sound System v4 (oss4): $have_oss4"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1657 echo " Advanced Linux Sound Arch. (alsa): $have_alsa"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1658 echo " Enlightenment Sound Daemon (esd): $have_esd"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1659 echo " Jack Audio Connection Kit (jack): $have_jack"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1660 echo " Analog Realtime Synthesizer (arts): $have_arts"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1661 echo " BSD/SUN audio output (sun): $have_sun"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1662 echo " PulseAudio sound server (pulse_audio): $have_pulse"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1663 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
1664 echo " FileWriter: $enable_filewriter"
1043
f65aa5417221 [svn] I will murder someone if I have to fix the buildsystem again.
kiyoshi
parents: 1039
diff changeset
1665 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
1666 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
1667 echo " -> FileWriter FLAC output part: $have_writer_flac"
560
7b4b37819c9d [svn] made null always build
kiyoshi
parents: 503
diff changeset
1668 echo " Null Audio output (null): yes"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1669 echo
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1670 echo " Input Plugins"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1671 echo " -------------"
622
70f3b14434b2 [svn] - remove the buggy memoryleaking mpg123 and integrate madplug into the
nenolod
parents: 579
diff changeset
1672 echo " MPEG 1/2/3 (madplug): $enable_mp3"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1673 echo " MPEG 4 Audio (AAC): $enable_aac"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1674 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
1675 echo " Monkey's Audio (ape): $enable_ape"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1676 echo " Module decoder (modplug): $have_modplug"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1677 echo " MIDI modular plugin (amidi-plug): $enable_amidiplug"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1678 echo " -> ALSA backend: $enable_amidiplug_alsa"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1679 echo " -> FluidSynth backend: $enable_amidiplug_fluidsynth"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1680 echo " -> dummy backend: $enable_amidiplug_dummy"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1681 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
1682 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
1683 echo " sndfile extensions: $enable_sndfile"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1684 echo " Tone Generator: yes"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1685 echo " Ogg Vorbis (vorbis): $have_oggvorbis"
930
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents: 923
diff changeset
1686 echo " Free Lossless Audio Codec (flacng): $have_flacng"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1687 echo " Commodore 64 audio (sid): $have_sidplay"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1688 echo " Game music (spc, nsf & gbs): yes"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1689 echo " PlayStation audio (sexypsf): yes"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1690 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
1691 echo " Apple Lossless Audio Codec (alac): yes"
110
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 107
diff changeset
1692 echo " WavPack 4.31+ (wavpack): $have_wavpack"
232
6c78d6d3cdb7 [svn] - put musepack support back
nenolod
parents: 231
diff changeset
1693 echo " Musepack support (musepack): $enable_musepack"
290
fbd06b4aa776 [svn] - add TrueAudio plugin
yaz
parents: 289
diff changeset
1694 echo " TrueAudio (tta): $enable_tta"
315
2294f3a6f136 [svn] Metronom (a.k.a. tact generator) input plugin, ported from XMMS.
chainsaw
parents: 314
diff changeset
1695 echo " Metronom: yes"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1696 echo
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1697 echo " General"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1698 echo " -------"
121
b59bca84e3cd [svn] - add xmms-alarm port
nenolod
parents: 118
diff changeset
1699 echo " Alarm: yes"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1700 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
1701 echo " Status Icon: $have_statusicon"
579
22a80841acd0 [svn] - added audacious osd in configure.ac
giacomo
parents: 578
diff changeset
1702 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
1703 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
1704 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
1705 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
1706 echo " Gnome Shortcuts Plugin: $have_gnomeshortcuts"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1707 echo " LIRC: $have_lirc"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1708 echo " AudioScrobbler Client: $scrobbler"
1456
475eac76a8ba MTP upload plugin
Cristi Magherusan <majeru@atheme-project.org>
parents: 1377
diff changeset
1709 echo " Upload to MTP device: $have_mtp_up"
2644
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2526
diff changeset
1710 echo " Bluetooth audio suport: $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
1711 echo " MacOS Dock Album Art plugin: $have_dockalbumart"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1712 echo
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1713 echo " Effect"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1714 echo " ------"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1715 echo " AudioCompressor (AGC): yes"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1716 echo " LADSPA effects host (ladspa): yes"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1717 echo " Voice Removal: yes"
125
f5ba91225985 [svn] - re-enable extra stereo plugin build
nenolod
parents: 121
diff changeset
1718 echo " Extra Stereo: yes"
127
46730e83b1e2 [svn] - echo plugin support by Christian Birchinger <joker -at- gentoo.org>
nenolod
parents: 125
diff changeset
1719 echo " Echo/Surround: yes"
882
d58c48b014ed [svn] - integrated SndStretch into build process
mf0102
parents: 878
diff changeset
1720 echo " SndStretch: yes"
2521
c9d6887cd5d4 added a configure message for crystalizer
Cristi Magherusan <majeru@atheme.org>
parents: 2518
diff changeset
1721 echo " Crystalizer: yes"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1722 echo
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1723 echo " Visualization"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1724 echo " -------------"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1725 echo " Blur Scope: yes"
146
03cfb311eafd [svn] - spectrum analyzer plugin based on blurscope and a little of xmms-finespectrum
nenolod
parents: 144
diff changeset
1726 echo " Spectrum Analyzer: yes"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1727 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
1728 echo " projectM 0.x (GL milkdrop): $have_projectm"
2136
9bdb5aba5e00 Backed out changeset 3bbb2673419b
William Pitcock <nenolod@atheme.org>
parents: 2135
diff changeset
1729 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
1730 echo " RootVis plugin: $have_rootvis"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1731 echo
503
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1732 echo " Transport"
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1733 echo " ---------"
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1734 echo " stdio transport: yes"
1720
48b4c7d504f7 Make configure show neon plugin status
Ralf Ertzinger <ralf@skytale.net>
parents: 1718
diff changeset
1735 echo " neon-based http/https: $have_neon"
503
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1736 echo " libmms-based mms: $have_mms"
1173
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 1138
diff changeset
1737 echo " lastfm transport: $have_lastfm"
503
fe2c60ca8c98 [svn] - mms transport
nenolod
parents: 433
diff changeset
1738 echo
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1739 echo " Container"
44
e27d735eaa21 [svn] - configure option for chardet was missing.
yaz
parents: 40
diff changeset
1740 echo " ---------"
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1741 echo " Winamp PLS playlist format (pls): yes"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1742 echo " M3U playlist format (m3u): yes"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1743 echo " XML Sharable Playlist Format (xspf): $have_xspf"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1744 echo
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1745
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1746 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
1747 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
1748 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
1749 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
1750 echo "anyway, simply use --enable-timidity in configuration."
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1751 echo ""
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1752 fi