Mercurial > audlegacy
annotate configure.ac @ 1421:fe6d04a4019a trunk
[svn] - try again
author | nenolod |
---|---|
date | Tue, 18 Jul 2006 12:47:59 -0700 |
parents | 0aa4bee03747 |
children | 360ab7d8f221 |
rev | line source |
---|---|
0 | 1 dnl Process this file with autoconf to produce a configure script. |
2 | |
1408 | 3 AC_INIT(audacious, 1.1.1) |
1420 | 4 AC_PREREQ([2.59]) |
0 | 5 |
6 AC_CANONICAL_HOST | |
7 AC_CANONICAL_TARGET | |
8 | |
9 AC_CONFIG_HEADERS([config.h]) | |
10 | |
11 dnl libbeep | |
12 LIBBEEP_MAJOR_VERSION=2 | |
13 LIBBEEP_MINOR_VERSION=0 | |
14 LIBBEEP_MICRO_VERSION=0 | |
15 LIBBEEP_VERSION=$LIBBEEP_MAJOR_VERSION.$LIBBEEP_MINOR_VERSION.$LIBBEEP_MICRO_VERSION | |
16 AC_SUBST(LIBBEEP_MAJOR_VERSION) | |
17 AC_SUBST(LIBBEEP_MINOR_VERSION) | |
18 AC_SUBST(LIBBEEP_MICRO_VERSION) | |
19 | |
38 | 20 dnl XXX kludge for FreeBSD |
21 if test -d "/usr/X11R6/include"; then | |
22 CPPFLAGS="$CPPFLAGS -I/usr/X11R6/include" | |
23 fi | |
0 | 24 |
756 | 25 AM_INIT_AUTOMAKE |
26 | |
0 | 27 dnl GNU gettext |
28 | |
29 AM_GNU_GETTEXT | |
30 AM_GNU_GETTEXT_VERSION([0.12.1]) | |
31 | |
32 | |
33 dnl Check for C compiler | |
34 | |
1353
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
35 AC_PROG_CC |
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
36 AC_PROG_CXX |
0 | 37 AC_ISC_POSIX |
38 AC_C_BIGENDIAN | |
39 | |
40 dnl Check for assembler | |
41 | |
42 AM_PROG_AS | |
43 | |
44 dnl Checks for various programs | |
45 | |
46 AC_PROG_INSTALL | |
47 AC_PROG_LN_S | |
48 AC_PROG_MAKE_SET | |
49 | |
750 | 50 AC_PATH_PROG(RM, rm) |
51 AC_PATH_PROG(MV, mv) | |
52 AC_PATH_PROG(CP, cp) | |
53 AC_PATH_PROG(AR, ar) | |
54 AC_PATH_PROG(RANLIB, ranlib) | |
55 | |
0 | 56 dnl Path settings |
57 | |
58 AC_PATH_PROG(BEEP_PATH, audacious, no) | |
59 | |
60 AC_ARG_WITH(rc-path, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
61 [ --rc-path=path Resource and configuration path for audacious relative to $HOME.], |
0 | 62 [rc_path=$withval], |
63 [rc_path=.audacious] | |
64 ) | |
65 AC_DEFINE_UNQUOTED(BMP_RCPATH, "$rc_path", | |
535 | 66 [Resource and configuration path for audacious relative to $HOME.] |
0 | 67 ) |
68 AC_SUBST(BMP_RCPATH) | |
69 | |
70 AC_ARG_ENABLE(one-plugin-dir, | |
71 [ --enable-one-plugin-dir Use a single plugin dir [default=no]], | |
72 [enable_one_plugin_dir=$enableval], | |
73 [enable_one_plugin_dir=no] | |
74 ) | |
75 | |
76 AC_ARG_ENABLE(user-plugin-dir, | |
77 [ --disable-user-plugin-dir disable per-user plugin dir], | |
78 [enable_user_plugin_dir=$enableval], | |
79 [enable_user_plugin_dir=yes] | |
80 ) | |
81 | |
82 AC_ARG_WITH(dev-dsp, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
83 [ --with-dev-dsp=path Path to OSS DSP data pipe, default is /dev/dsp.], |
0 | 84 [dev_dsp=$withval], |
85 [dev_dsp=/dev/dsp] | |
86 ) | |
87 AC_DEFINE_UNQUOTED(DEV_DSP, "$dev_dsp", | |
88 [Path to OSS DSP, really just a data pipe, default is /dev/dsp.] | |
89 ) | |
90 | |
91 AC_ARG_WITH(dev-mixer, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
92 [ --with-dev-mixer=path Path to OSS sound mixer, default is /dev/mixer.], |
0 | 93 [dev_mixer=$withval], |
94 [dev_mixer=/dev/mixer] | |
95 ) | |
96 AC_DEFINE_UNQUOTED(DEV_MIXER, "$dev_mixer", | |
97 [Path to OSS mixer, default is /dev/mixer.] | |
98 ) | |
99 | |
100 AC_ARG_WITH(cdda-device, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
101 [ --with-cdda-device=path Path to default cdaudio device.], |
0 | 102 [AC_DEFINE_UNQUOTED(CDDA_DEVICE, "$withval", |
103 [Path to default cdaudio device.] | |
104 ) | |
105 ] | |
106 ) | |
107 | |
108 AC_ARG_WITH(cdda-dir, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
109 [ --with-cdda-dir=path Path to default cdaudio directory.], |
0 | 110 [AC_DEFINE_UNQUOTED(CDDA_DIRECTORY, "$withval", |
111 [Path to default cdaudio directory.] | |
112 ) | |
113 ] | |
114 ) | |
115 | |
634 | 116 dnl These plugins are always built. |
0 | 117 |
634 | 118 INPUT_PLUGINS="cdaudio tonegen console sexypsf wav" |
820 | 119 OUTPUT_PLUGINS="disk_writer" |
937
6158ee7d8b06
[svn] Port AudioCompress (AGC) effect plugin from XMMS, as requested by Junics on SorceryNet.
chainsaw
parents:
920
diff
changeset
|
120 EFFECT_PLUGINS="audiocompress ladspa voice_removal" |
710
500f6d54bc46
[svn] Remove references to inetctl from the build system.
chainsaw
parents:
706
diff
changeset
|
121 GENERAL_PLUGINS="song_change" |
634 | 122 VISUALIZATION_PLUGINS="blur_scope" |
0 | 123 |
124 dnl Option to change equalizer to the old XMMS one which only works with the mpg123 | |
125 dnl plugin (or rather, only implemented within the plugin) | |
126 | |
127 AC_ARG_WITH(xmms-eq, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
128 [ --with-xmms-eq Use old XMMS equalization code.], |
0 | 129 [use_xmms_eq=$withval], |
130 [use_xmms_eq=no] | |
131 ) | |
132 | |
133 if test "$use_xmms_eq" = "yes"; then | |
134 AC_DEFINE(XMMS_EQ, , [Define if building with old XMMS equalization code.]) | |
135 fi | |
136 | |
137 dnl Check for GTK/GLib/GThread/Pango | |
138 | |
535 | 139 PKG_CHECK_MODULES(GTK, [glib-2.0 >= 2.6.0 gtk+-2.0 >= 2.6.0 gthread-2.0 pango], |
140 [ADD_PC_REQUIRES([glib-2.0 >= 2.6.0, gtk+-2.0 >= 2.6.0])], | |
0 | 141 [AC_MSG_ERROR([Cannot find glib2/gtk2/pango])] |
142 ) | |
143 | |
144 dnl Check for libglade | |
145 | |
146 PKG_CHECK_MODULES(LIBGLADE, [libglade-2.0 >= 2.3.1], | |
147 [], | |
148 [AC_MSG_ERROR([Cannot find libglade])] | |
149 ) | |
150 | |
967
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
151 AC_PATH_PROG(TAGLIB_CONFIG, taglib-config, [no], [$PATH:$prefix/bin]) |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
152 if test "x$TAGLIB_CONFIG" = "xno" ; then |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
153 AC_MSG_ERROR([Cannot find taglib]) |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
154 else |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
155 TAGLIB_CFLAGS=[`$TAGLIB_CONFIG --cflags`] |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
156 TAGLIB_LIBS=[`$TAGLIB_CONFIG --libs`] |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
157 fi |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
158 AC_SUBST(TAGLIB_CFLAGS) |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
159 AC_SUBST(TAGLIB_LIBS) |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
160 |
0 | 161 # Check if socklen_t is defined |
162 | |
163 AC_CACHE_CHECK(for socklen_t, beep_cv_type_socklen_t, | |
164 [AC_TRY_COMPILE( | |
165 [#include <sys/types.h> | |
166 #include <sys/socket.h>], | |
167 [socklen_t s;], | |
168 [beep_cv_type_socklen_t=yes], | |
169 [beep_cv_type_socklen_t=no] | |
170 ) | |
171 ] | |
172 ) | |
173 | |
174 if test "$beep_cv_type_socklen_t" = "no"; then | |
175 AC_DEFINE(socklen_t, int, [Define to int if the socklen_t type is missing]) | |
176 fi | |
177 | |
978 | 178 dnl IPv6 support |
179 dnl ======================== | |
180 AC_ARG_ENABLE(ipv6, | |
181 [ --enable-ipv6 enable IPv6 support (default=no)], | |
182 enable_ipv6=$enableval, enable_ipv6=no) | |
183 if test "x$enable_ipv6" = xyes; then | |
184 AC_DEFINE(USE_IPV6,, [Define if building with IPv6 support] ) | |
185 fi | |
186 AM_CONDITIONAL(USE_IPV6,test "x$enable_ipv6" = xyes) | |
187 AC_SUBST(USE_IPV6) | |
188 | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
189 dnl chardet support |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
190 dnl ======================== |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
191 AC_ARG_ENABLE(chardet, |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
192 [ --enable-chardet enable character set detection support (default=no)], |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
193 enable_chardet=$enableval, enable_chardet=no) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
194 if test "x$enable_chardet" = xyes; then |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
195 AC_DEFINE(USE_CHARDET, 1, [Define if character set detection enabled] ) |
1317
a698348c5155
[svn] - libaac: potential buffer overflow vulnerability fix
nenolod
parents:
1265
diff
changeset
|
196 AC_CHECK_LIB(guess, guess_jp, [SUBDIR_GUESS=[''] CHARDET_LIBS=['-lguess']], [SUBDIR_GUESS=['libguess'] CHARDET_LIBS=['../libguess/libguess.a']]) |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
197 AC_CHECK_LIB(udet_c, detectCharset, [AC_DEFINE(HAVE_UDET, 1,[Define if the system has Mozilla universal character detector library]) CHARDET_LIBS=["$CHARDET_LIBS -ludet -ludet_c"]]) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
198 fi |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
199 AM_CONDITIONAL(USE_CHARDET,test "x$enable_chardet" = xyes) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
200 AC_SUBST(USE_CHARDET) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
201 AC_SUBST(CHARDET_LIBS) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
202 AC_SUBST(SUBDIR_GUESS) |
0 | 203 |
204 dnl GConf support | |
205 | |
206 AC_ARG_ENABLE( gconf, | |
207 [ --enable-gconf enable GConf support (default=disabled)], | |
208 [enable_gconf=$enableval], | |
209 [enable_gconf="no"] | |
210 ) | |
211 | |
212 if test "$enable_gconf" = "yes"; then | |
213 PKG_CHECK_MODULES(GCONF, [gconf-2.0 >= 2.6.0], | |
214 [ | |
215 AC_DEFINE(HAVE_GCONF, , [Define if building with GConf support]) | |
216 ADD_PC_REQUIRES([gconf-2.0 >= 2.6.0]) | |
217 ], | |
218 [AC_MSG_ERROR([Cannot find GConf])] | |
219 ) | |
220 fi | |
221 | |
727 | 222 if test "$enable_gconf" = "yes"; then |
223 CONFIGDB_BACKEND="gconf" | |
224 else | |
225 CONFIGDB_BACKEND="rcfile" | |
226 fi | |
0 | 227 |
727 | 228 AC_SUBST(CONFIGDB_BACKEND) |
0 | 229 |
230 dnl GnomeVFS support | |
231 | |
232 AC_ARG_ENABLE( gnome-vfs, | |
233 [ --enable-gnome-vfs enable GnomeVFS support (default=disabled)], | |
234 [enable_gnomevfs=$enableval], | |
235 [enable_gnomevfs="no"] | |
236 ) | |
237 | |
238 if test "$enable_gnomevfs" = "yes"; then | |
239 PKG_CHECK_MODULES(GNOMEVFS, [gnome-vfs-2.0 >= 2.6.0], | |
240 [ | |
241 AC_DEFINE(HAVE_GNOME_VFS, , [Define if building with GnomeVFS support]) | |
242 ADD_PC_REQUIRES([gnome-vfs-2.0 >= 2.6.0]) | |
243 ], | |
244 [AC_MSG_ERROR([Cannot find GnomeVFS])] | |
245 ) | |
246 fi | |
247 | |
726 | 248 if test "$enable_gnomevfs" = "yes"; then |
249 VFS_BACKEND="gnome" | |
250 else | |
251 VFS_BACKEND="stdio" | |
252 fi | |
0 | 253 |
727 | 254 AC_SUBST(VFS_BACKEND) |
255 | |
0 | 256 dnl Check for esound |
257 | |
258 AC_ARG_ENABLE( esd, | |
259 [ --disable-esd disable esound output plugin [default=enabled]], | |
260 [enable_esd=$enableval], | |
261 [enable_esd="yes"] | |
262 ) | |
263 | |
264 if test "$enable_esd" = "yes"; then | |
265 PKG_CHECK_MODULES(ESD, [esound >= 0.2], | |
634 | 266 [have_esd=yes |
267 OUTPUT_PLUGINS="$OUTPUT_PLUGINS esd"], | |
0 | 268 [have_esd=no] |
269 ) | |
270 else | |
271 AC_MSG_RESULT([*** esound plugin disabled per user request ***]) | |
272 have_esd=no | |
273 fi | |
274 | |
1353
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
275 dnl *** AltiVec |
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
276 |
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
277 AC_CHECK_HEADERS(altivec.h, |
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
278 [AC_DEFINE(HAVE_ALTIVEC, 1, [Define to 1 if your system has AltiVec.]) |
1398
1ddaf20ab50e
[svn] AltiVec support for WMA, by Luca "lu_zero" Barbato from Gentoo.
chainsaw
parents:
1394
diff
changeset
|
279 AC_DEFINE(HAVE_ALTIVEC_H, 1, [Define to 1 if your system has an altivec.h file.]) |
1353
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
280 AC_DEFINE(ARCH_POWERPC, 1, [Define to 1 if your system is a PowerPC.]) |
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
281 DCT64=dct64_altivec.c], |
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
282 [DCT64=dct64.c] |
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
283 ) |
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
284 AC_SUBST(DCT64) |
35ef03569852
[svn] Hook up Altivec-enabled DCT64 for MP3. WMA throws a tantrum on Altivec machines. Submit a patch, or wait for me to fix it.
chainsaw
parents:
1317
diff
changeset
|
285 |
0 | 286 dnl *** MP3 |
287 | |
288 AC_ARG_ENABLE(mp3, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
289 [ --disable-mp3 disable mp3 plugin. (default=enabled) ], |
0 | 290 [enable_mp3=$enableval], |
291 [enable_mp3=yes] | |
292 ) | |
293 | |
634 | 294 if test "$enable_mp3" = "yes"; then |
295 INPUT_PLUGINS="$INPUT_PLUGINS mpg123" | |
296 fi | |
0 | 297 |
157 | 298 dnl *** LIRC client libraries |
299 | |
300 AC_ARG_ENABLE(lirc, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
301 [ --disable-lirc disable LIRC plugin (default=enabled)], |
157 | 302 [enable_lirc=$enableval], |
303 [enable_lirc="yes"] | |
304 ) | |
305 | |
306 if test "$enable_lirc" = "yes"; then | |
307 AC_CHECK_LIB([lirc_client],[lirc_init],[have_lirc=yes],[have_lirc=no]) | |
308 else | |
309 AC_MSG_RESULT([*** LIRC plugin disabled per user request ***]) | |
310 have_lirc="no" | |
311 fi | |
634 | 312 |
313 if test "$have_lirc" = "yes"; then | |
314 GENERAL_PLUGINS="$GENERAL_PLUGINS lirc" | |
315 fi | |
157 | 316 |
386 | 317 dnl *** AdPlug requirement (libbinio) |
359 | 318 |
319 AC_ARG_ENABLE(adplug, | |
320 [ --disable-adplug disable AdPlug plugin (default=enabled)], | |
321 [enable_adplug=$enableval], | |
322 [enable_adplug="yes"] | |
323 ) | |
324 | |
386 | 325 if test "$enable_adplug" = "yes"; then |
406
5928c035fa4e
[svn] Use the pkg-config database to link with libbinio in a portable way. Requires libbinio 1.4 (or higher).
chainsaw
parents:
393
diff
changeset
|
326 have_adplug="yes" |
5928c035fa4e
[svn] Use the pkg-config database to link with libbinio in a portable way. Requires libbinio 1.4 (or higher).
chainsaw
parents:
393
diff
changeset
|
327 PKG_CHECK_MODULES(BINIO,[libbinio >= 1.4],,[have_adplug=no]) |
359 | 328 else |
329 AC_MSG_RESULT([*** AdPlug plugin disabled per user request ***]) | |
330 have_adplug="no" | |
331 fi | |
634 | 332 |
333 if test "$have_adplug" = "yes"; then | |
334 INPUT_PLUGINS="$INPUT_PLUGINS adplug" | |
335 fi | |
359 | 336 |
0 | 337 dnl *** Ogg Vorbis |
338 | |
339 AC_ARG_ENABLE(vorbis, | |
340 [ --disable-vorbis disable Ogg Vorbis input plugin (default=enabled)], | |
341 [enable_vorbis=$enableval], | |
342 [enable_vorbis="yes"] | |
343 ) | |
344 | |
345 if test "$enable_vorbis" = "yes"; then | |
346 PKG_CHECK_MODULES(OGG_VORBIS, [ogg >= 1.0 vorbis >= 1.0 vorbisfile >= 1.0], | |
347 [have_oggvorbis=yes], | |
348 [AC_MSG_ERROR([Cannot find libogg/libvorbis]) | |
349 have_oggvorbis=no] | |
350 ) | |
351 else | |
352 AC_MSG_RESULT([*** Ogg Vorbis plugin disabled per user request ***]) | |
353 have_oggvorbis=no | |
354 fi | |
355 | |
634 | 356 if test "$have_oggvorbis" = "yes"; then |
357 INPUT_PLUGINS="$INPUT_PLUGINS vorbis" | |
358 fi | |
0 | 359 |
2 | 360 dnl *** AAC |
361 | |
362 AC_ARG_ENABLE(aac, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
363 [ --disable-aac disable aac plugin (default=enabled) ], |
2 | 364 [enable_aac=$enableval], |
365 [enable_aac=yes] | |
366 ) | |
367 | |
706 | 368 if test "$enable_aac" = "yes"; then |
634 | 369 INPUT_PLUGINS="$INPUT_PLUGINS aac" |
370 fi | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
371 |
165 | 372 dnl *** sndfile |
373 | |
374 AC_ARG_ENABLE(sndfile, | |
375 [ --disable-sndfile disable sndfile extensions. [default=enabled] ], | |
376 [enable_sndfile=$enableval], | |
377 [enable_sndfile=yes] | |
378 ) | |
379 | |
380 if test "$enable_sndfile" = "yes"; then | |
381 PKG_CHECK_MODULES(SNDFILE, [sndfile >= 0.19], | |
382 [enable_sndfile=yes], | |
383 [enable_sndfile=no] | |
384 ) | |
385 else | |
386 AC_MSG_RESULT([*** libsndfile extensions disabled per user request ***]) | |
387 enable_sndfile=no | |
388 fi | |
389 | |
634 | 390 if test "$enable_sndfile" = "yes"; then |
725 | 391 WAV_SNDFILE="-sndfile" |
634 | 392 fi |
393 | |
725 | 394 AC_SUBST(WAV_SNDFILE) |
165 | 395 |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
396 dnl *** modplug |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
397 |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
398 AC_ARG_ENABLE(modplug, |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
399 [ --disable-modplug disable ModPlug plugin (default=enabled)], |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
400 [enable_modplug=$enableval], |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
401 [enable_modplug="yes"] |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
402 ) |
32 | 403 |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
404 if test "$enable_modplug" = "yes"; then |
1375
d2c411305bf8
[svn] Modplug conftest fix by Christian "Joker" Birchinger from Gentoo.
chainsaw
parents:
1366
diff
changeset
|
405 AC_CHECK_LIB([modplug],[XMLinearTable],[have_modplug=yes],[have_modplug=no],[-lstdc++]) |
32 | 406 else |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
407 AC_MSG_RESULT([*** ModPlug plugin disabled per user request ***]) |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
408 have_modplug="no" |
32 | 409 fi |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
410 |
634 | 411 if test "$have_modplug" = "yes"; then |
412 INPUT_PLUGINS="$INPUT_PLUGINS modplug" | |
413 fi | |
32 | 414 |
50 | 415 dnl *** flac |
416 AC_ARG_ENABLE( flc, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
417 [ --disable-flac disable flac input plugin (default=enabled)],, |
50 | 418 enable_flac="yes") |
419 | |
420 if test "x$enable_flac" = xyes; then | |
421 AM_PATH_LIBFLAC(have_flac=yes, have_flac=no) | |
422 else | |
423 AC_MSG_RESULT([*** flac plugin disabled per user request ***]) | |
424 have_flac=no | |
425 fi | |
634 | 426 |
427 if test "$have_flac" = "yes"; then | |
428 INPUT_PLUGINS="$INPUT_PLUGINS flac" | |
429 fi | |
32 | 430 |
260
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
431 dnl *** WMA |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
432 |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
433 AC_ARG_ENABLE(wma, |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
434 [ --disable-wma disable wma plugin. (default=enabled)], |
260
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
435 [enable_wma=$enableval], |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
436 [enable_wma=yes] |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
437 ) |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
438 |
634 | 439 if test "$enable_wma" = "yes"; then |
440 INPUT_PLUGINS="$INPUT_PLUGINS wma" | |
441 fi | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
442 |
325
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
443 dnl *** jack output plugin |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
444 AC_ARG_ENABLE( jack, |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
445 [ --disable-jack disable jack output plugin (default=enabled)],, |
325
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
446 enable_jack="yes") |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
447 |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
448 if test "x$enable_jack" = xyes; then |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
449 AM_PATH_JACK(have_jack=yes, have_jack=no) |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
450 else |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
451 AC_MSG_RESULT([*** jack plugin disabled per user request ***]) |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
452 have_jack=no |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
453 fi |
634 | 454 |
455 if test "$have_jack" = yes; then | |
456 OUTPUT_PLUGINS="$OUTPUT_PLUGINS jack" | |
457 fi | |
325
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
458 |
810
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
459 dnl *** arts output plugin |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
460 AC_ARG_ENABLE( arts, |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
461 [ --disable-arts disable arts output plugin (default=enabled)],, |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
462 enable_arts="yes") |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
463 |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
464 if test "x$enable_arts" = xyes; then |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
465 AM_PATH_ARTSC(0.9.5, have_arts=yes, have_arts=no) |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
466 else |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
467 AC_MSG_RESULT([*** arts plugin disabled per user request ***]) |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
468 have_arts=no |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
469 fi |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
470 |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
471 if test "$have_arts" = yes; then |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
472 OUTPUT_PLUGINS="$OUTPUT_PLUGINS arts" |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
473 fi |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
474 |
269
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
475 dnl *** sid |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
476 AC_ARG_ENABLE( sid, |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
477 [ --disable-sid disable sid input plugin (default=enabled)],, |
269
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
478 enable_sid="yes") |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
479 |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
480 if test "x$enable_sid" = xyes; then |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
481 AM_PATH_SIDPLAY(have_sidplay=yes, have_sidplay=no) |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
482 else |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
483 AC_MSG_RESULT([*** sid plugin disabled per user request ***]) |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
484 have_sidplay=no |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
485 fi |
634 | 486 |
487 if test "$have_sidplay" = yes; then | |
488 INPUT_PLUGINS="$INPUT_PLUGINS sid" | |
489 fi | |
269
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
490 |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
491 dnl *** Musepack |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
492 |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
493 AC_ARG_ENABLE(musepack, |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
494 [ --disable-musepack disable musepack input plugin (default=enabled)], |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
495 [enable_musepack=$enableval], |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
496 [enable_musepack="yes"] |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
497 ) |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
498 |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
499 if test "$enable_musepack" = "yes"; then |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
500 AC_CHECK_HEADERS(mpcdec/config_types.h,, |
319
1e642d74d68c
[svn] Do not abort if libmpc is not found, just disable musepack plugin.
chainsaw
parents:
293
diff
changeset
|
501 enable_musepack=no |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
502 ) |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
503 else |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
504 AC_MSG_RESULT([*** Musepack plugin disabled per user request ***]) |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
505 enable_musepack=no |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
506 fi |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
507 |
634 | 508 if test "$enable_musepack" = "yes"; then |
509 INPUT_PLUGINS="$INPUT_PLUGINS musepack" | |
510 fi | |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
511 |
0 | 512 dnl *** OSS output |
513 | |
514 AC_ARG_ENABLE(oss, | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
515 [ --disable-oss disable the OSS output plugin (default=enabled)], |
0 | 516 [have_oss=$enableval], |
517 [have_oss=yes] | |
518 ) | |
519 | |
520 if test "$have_oss" = "yes"; then | |
521 AC_MSG_CHECKING(for OSS include dir) | |
522 OSS_CFLAGS="" | |
523 if test -f "/etc/oss.conf" ; then | |
524 for i in `cat /etc/oss.conf`; do | |
525 t=`echo $i | sed -e 's/OSSLIBDIR=//'` | |
526 if test "$i" != "$t" ; then | |
527 if test -f "$t/include/sys/soundcard.h" ; then | |
528 OSS_CFLAGS="-I$t/include" | |
529 fi | |
530 fi | |
531 done | |
532 fi | |
533 if test -n "$OSS_CFLAGS" ; then | |
534 AC_MSG_RESULT([$OSS_CFLAGS]) | |
535 else | |
536 AC_MSG_RESULT([not found]) | |
537 fi | |
538 CFLAGS_save=$CFLAGS | |
539 CFLAGS="$CFLAGS $OSS_CFLAGS" | |
540 AC_CHECK_HEADERS(sys/soundcard.h) | |
541 AC_CHECK_HEADERS(machine/soundcard.h) | |
542 CFLAGS=$CFLAGS_save | |
543 | |
544 if test "${ac_cv_header_sys_soundcard_h}" = "yes" || test "${ac_cv_header_machine_soundcard_h}" = "yes"; then | |
545 have_oss=yes | |
546 fi | |
547 fi | |
548 | |
549 if test "$have_oss" = "yes"; then | |
550 AC_DEFINE(HAVE_OSS, 1, [Define if the OSS output plugin should be built]) | |
551 else | |
552 have_oss=no | |
553 fi | |
554 | |
634 | 555 if test "$have_oss" = "yes"; then |
556 OUTPUT_PLUGINS="$OUTPUT_PLUGINS OSS" | |
557 fi | |
0 | 558 |
559 dnl *** ALSA output plugin | |
560 | |
561 AC_ARG_ENABLE(alsa, | |
562 [ --disable-alsa disable ALSA input plugin (default=enabled)], | |
563 [enable_alsa=$enableval], | |
564 [enable_alsa=yes] | |
565 ) | |
566 | |
567 if test "$enable_alsa" = "yes"; then | |
568 PKG_CHECK_MODULES(ALSA, [alsa >= 1.0], | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
569 [ |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
570 have_alsa=yes |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
571 alsalib_available=yes |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
572 ], |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
573 [ |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
574 have_alsa=no |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
575 alsalib_available=no |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
576 ] |
0 | 577 ) |
578 else | |
579 AC_MSG_RESULT([*** ALSA output plugin disabled per user request ***]) | |
580 have_alsa=no | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
581 alsalib_available=check |
0 | 582 fi |
583 | |
635
6a9e1af8ee75
[svn] Check for have_alsa to enable ALSA, and not have_oss.
chainsaw
parents:
634
diff
changeset
|
584 if test "$have_alsa" = "yes"; then |
634 | 585 OUTPUT_PLUGINS="$OUTPUT_PLUGINS alsa" |
586 fi | |
0 | 587 |
1387 | 588 |
589 dnl *** amidi-plug (note: to avoid checking twice ALSA, this should appear somewhere after the alsa ouput plugin check) | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
590 |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
591 AC_ARG_ENABLE(amidiplug, |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
592 [ --disable-amidiplug disable amidi-plug input plugin (default=check) ], |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
593 [enable_amidiplug=$enableval], |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
594 [enable_amidiplug=check] |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
595 ) |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
596 |
1387 | 597 AC_ARG_ENABLE(amidiplug-alsa, |
598 [ --disable-amidiplug-alsa disable amidi-plug ALSA backend (default=enabled) ], | |
599 [enable_amidiplug_alsa=$enableval], | |
600 [enable_amidiplug_alsa=auto] | |
601 ) | |
602 | |
603 AC_ARG_ENABLE(amidiplug-flsyn, | |
604 [ --disable-amidiplug-flsyn disable amidi-plug FluidSynth backend (default=enabled) ], | |
605 [enable_amidiplug_fluidsynth=$enableval], | |
606 [enable_amidiplug_fluidsynth=auto] | |
607 ) | |
608 | |
609 AC_ARG_ENABLE(amidiplug-dummy, | |
610 [ --disable-amidiplug-dummy disable amidi-plug dummy backend (default=enabled) ], | |
611 [enable_amidiplug_dummy=$enableval], | |
612 [enable_amidiplug_dummy=auto] | |
613 ) | |
614 | |
615 | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
616 if test "x$enable_amidiplug" = "xno"; then |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
617 AC_MSG_RESULT([*** amidi-plug disabled per user request ***]) |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
618 enable_amidiplug=no |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
619 else |
1387 | 620 if test "x$enable_amidiplug_alsa" != "xauto"; then |
621 enable_amidiplug=yes | |
622 elif test "x$enable_amidiplug_fluidsynth" != "xauto"; then | |
623 enable_amidiplug=yes | |
624 elif test "x$enable_amidiplug_dummy" != "xauto"; then | |
625 enable_amidiplug=yes | |
626 fi | |
627 fi | |
628 | |
629 if test "x$enable_amidiplug" = "xcheck"; then | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
630 if test "x$alsalib_available" = "xcheck"; then |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
631 PKG_CHECK_MODULES(ALSA, [alsa >= 1.0], |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
632 [alsalib_available=yes],[alsalib_available=no]) |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
633 fi |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
634 if test "x$alsalib_available" = "xyes"; then |
1387 | 635 AM_PATH_AMIDIPLUG_HWSYNTH(ap_have_hwsynth=yes, ap_have_hwsynth=no) |
636 if test "x$ap_have_hwsynth" = "xyes"; then | |
637 enable_amidiplug=yes | |
638 ap_disable_timidity=yes | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
639 else |
1387 | 640 PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6], |
641 [fluidsynth_available=yes],[fluidsynth_available=no]) | |
642 if test "x$fluidsynth_available" = "xyes"; then | |
643 enable_amidiplug=yes | |
644 ap_disable_timidity=yes | |
645 else | |
646 enable_amidiplug=no | |
647 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 ***]) | |
648 fi | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
649 fi |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
650 else |
1387 | 651 PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6], |
652 [fluidsynth_available=yes],[fluidsynth_available=no]) | |
653 if test "x$fluidsynth_available" = "xyes"; then | |
654 enable_amidiplug=yes | |
655 ap_disable_timidity=yes | |
656 else | |
657 enable_amidiplug=no | |
658 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 ***]) | |
659 fi | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
660 fi |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
661 fi |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
662 |
1387 | 663 if test "x$enable_amidiplug" = "xyes"; then |
664 INPUT_PLUGINS="$INPUT_PLUGINS amidi-plug" | |
665 PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.6.0],,) | |
666 PKG_CHECK_MODULES(GMODULE, [gmodule-2.0 >= 2.6.0],,) | |
1394
65490480559e
[svn] - install the amidi-plug plugins to ${libdir}/amidi-plug.
nenolod
parents:
1387
diff
changeset
|
667 AMIDIPLUGDATADIR=${libdir}/amidi-plug/backends |
1387 | 668 AC_SUBST(AMIDIPLUGDATADIR) |
669 if test "x$enable_amidiplug_alsa" = "xauto" -o "x$enable_amidiplug_alsa" = "xyes"; then | |
670 if test "x$alsalib_available" = "xcheck"; then | |
671 PKG_CHECK_MODULES(ALSA, [alsa >= 1.0], | |
672 [alsalib_available=yes],[alsalib_available=no]) | |
673 fi | |
674 if test "x$alsalib_available" = "xyes"; then | |
675 AMIDIPLUG_BACKENDS="$AMIDIPLUG_BACKENDS backend-alsa" | |
676 enable_amidiplug_alsa=yes | |
677 else | |
678 if test "x$enable_amidiplug_alsa" = "xyes"; then | |
679 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]) | |
680 enable_amidiplug_alsa=no | |
681 else | |
682 enable_amidiplug_alsa=no | |
683 fi | |
684 fi | |
685 fi | |
686 if test "x$enable_amidiplug_fluidsynth" = "xauto" -o "x$enable_amidiplug_fluidsynth" = "xyes"; then | |
687 if test "x$fluidsynth_available" != "xyes" -a "x$fluidsynth_available" != "xno"; then | |
688 PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6], | |
689 [fluidsynth_available=yes],[fluidsynth_available=no]) | |
690 fi | |
691 if test "x$fluidsynth_available" = "xyes"; then | |
692 AMIDIPLUG_BACKENDS="$AMIDIPLUG_BACKENDS backend-fluidsynth" | |
693 enable_amidiplug_fluidsynth=yes | |
694 else | |
695 if test "x$enable_amidiplug_fluidsynth" = "xyes"; then | |
696 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]) | |
697 enable_amidiplug_fluidsynth=no | |
698 else | |
699 enable_amidiplug_fluidsynth=no | |
700 fi | |
701 fi | |
702 fi | |
703 if test "x$enable_amidiplug_dummy" = "xauto" -o "x$enable_amidiplug_dummy" = "xyes"; then | |
704 AMIDIPLUG_BACKENDS="$AMIDIPLUG_BACKENDS backend-dummy" | |
705 enable_amidiplug_dummy=yes | |
706 fi | |
707 AC_SUBST(AMIDIPLUG_BACKENDS) | |
634 | 708 fi |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
709 |
1387 | 710 if test "x$enable_amidiplug" = "xyes"; then |
711 INPUT_PLUGINS="$INPUT_PLUGINS amidi-plug" | |
712 fi | |
713 | |
714 | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
715 dnl *** TiMidity input plugin (note: should appear somewhere after the amidi-plug check) |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
716 |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
717 AC_ARG_ENABLE(timidity, |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
718 [ --disable-timidity disable timidity plugin. (default=enabled)], |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
719 [enable_timidity=$enableval], |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
720 [ |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
721 if test "x$ap_disable_timidity" = "xyes"; then |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
722 enable_timidity=no |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
723 else |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
724 enable_timidity=yes |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
725 fi |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
726 ] |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
727 ) |
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
728 |
634 | 729 if test "$enable_timidity" = "yes"; then |
730 INPUT_PLUGINS="$INPUT_PLUGINS timidity" | |
731 fi | |
527
68f20f7ac954
[svn] in configure.ac, do not check for ALSA twice if it has been already detected (both alsa output plugin and amidi-plug check its availability)
giacomo
parents:
523
diff
changeset
|
732 |
0 | 733 dnl FreeBSD newpcm driver detection |
734 | |
735 AC_CACHE_CHECK(for FreeBSD newpcm driver, beep_cv_newpcm_driver, | |
736 if test -r "/dev/sndstat"; then | |
737 grep 'newpcm' /dev/sndstat 2>/dev/null 1>/dev/null | |
738 if test "x$?" = "x0"; then | |
739 beep_cv_newpcm_driver="yes" | |
740 else | |
741 beep_cv_newpcm_driver="no" | |
742 fi | |
743 else | |
744 beep_cv_newpcm_driver="no" | |
745 fi | |
746 ) | |
747 | |
748 if test "$beep_cv_newpcm_driver" = "yes"; then | |
749 AC_DEFINE(HAVE_NEWPCM, 1, [Define if you have the FreeBSD newpcm driver]) | |
750 fi | |
751 | |
752 | |
753 AC_CHECK_HEADERS(linux/cdrom.h) | |
754 AC_CHECK_HEADERS(sys/cdio.h) | |
755 AC_CHECK_HEADERS(linux/joystick.h) | |
756 AC_CHECK_HEADERS(unistd.h) | |
757 AC_CHECK_HEADERS(fcntl.h) | |
758 AC_CHECK_HEADERS(sys/ioctl.h) | |
759 AC_CHECK_HEADERS(fnmatch.h) | |
760 AC_CHECK_HEADERS(limits.h) | |
761 AC_CHECK_HEADERS(wchar.h) | |
762 AC_CHECK_HEADERS(fts.h) | |
763 | |
242 | 764 AC_CHECK_FUNCS([mkdtemp getmntinfo strtoul lrintf]) |
0 | 765 |
766 | |
767 if test "${ac_cv_header_linux_cdrom_h}" = "yes" || test "${ac_cv_header_sys_cdio_h}" = "yes" | |
768 then | |
769 case "$host" in | |
770 *-*-sunos* | *-*-solaris* | *-*-linux*) | |
771 AC_DEFINE(BEEP_CDROM_SOLARIS,, [Define if cdrom access is in Solaris style]) | |
772 ;; | |
773 *-*-freebsd*) | |
774 AC_DEFINE(BEEP_CDROM_BSD,, [Define if cdrom access is in BSD style]) | |
775 ;; | |
776 *-*-netbsd* | *-*-openbsd*) | |
777 AC_DEFINE(BEEP_CDROM_BSD,, [Define if cdrom access is in BSD style]) | |
778 AC_DEFINE(BEEP_CDROM_BSD_NETBSD,, [Define if cdrom access uses NetBSD variant]) | |
779 ;; | |
780 *-*darwin*) | |
781 AC_DEFINE(BEEP_CDROM_BSD,, [Define if cdrom access is in BSD style]) | |
782 AC_DEFINE(BEEP_CDROM_BSD_DARWIN,, [Define if cdrom access uses Darwin variant]) | |
783 ;; | |
784 esac | |
785 fi | |
786 | |
787 | |
788 AM_CONDITIONAL(HAVE_CDROM, test "${ac_cv_header_linux_cdrom_h}" = "yes" || test "${ac_cv_header_sys_cdio_h}" = "yes") | |
789 AM_CONDITIONAL(HAVE_LINUX_JOYSTICK,test "${ac_cv_header_linux_joystick_h}" = "yes") | |
790 | |
791 if test -n "$GCC" | |
792 then | |
995
e4089d6b0fcf
[svn] Reduce amount of emitted GCC 4.1 warnings to 6. For that boring rainy afternoon, remove the two -Wno statements in CFLAGS (configure.ac) and you will see the actual amount.
chainsaw
parents:
978
diff
changeset
|
793 CFLAGS="$CFLAGS -Wall -Wno-strict-aliasing -Wno-unused-parameter -Wpointer-arith -finline-functions -ffast-math" |
0 | 794 case "$CFLAGS" in |
795 -g*) ;; | |
796 *\ -g*) ;; | |
797 *) CFLAGS="$CFLAGS -fomit-frame-pointer" ;; | |
798 esac | |
799 case "$host" in | |
800 *-*-freebsd*) | |
801 ;; | |
802 *) | |
803 CFLAGS="$CFLAGS -funroll-all-loops" | |
804 ;; | |
805 esac | |
806 fi | |
807 | |
808 AC_MSG_CHECKING(if __ELF__ is defined) | |
809 AC_EGREP_CPP(yes, | |
810 [#ifdef __ELF__ | |
811 yes | |
812 #endif | |
813 ], | |
814 [is_elf=yes], | |
815 [is_elf=no] | |
816 ) | |
817 AC_MSG_RESULT([${is_elf}]) | |
818 | |
819 | |
820 have_solaris=no | |
821 have_sun=no | |
822 ARCH_DEFINES="" | |
823 case "$host" in | |
824 *-*-openbsd* | *-*-netbsd*) | |
825 have_sun=yes | |
826 if test "${is_elf}" = "no" | |
827 then | |
828 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) | |
829 fi | |
758
f9e8807ea6e5
[svn] - Initial port of the bsd/sun audio output plugin from XMMS. Needs testing.
nenolod
parents:
756
diff
changeset
|
830 OUTPUT_PLUGINS="$OUTPUT_PLUGINS sun" |
0 | 831 ;; |
832 *-*-darwin*) | |
833 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) | |
834 ;; | |
835 *-hpux-*) | |
836 ARCH_DEFINES="-DHPUX" | |
837 ;; | |
838 *-*-solaris* | *-*-sunos*) | |
839 have_solaris=yes | |
840 ;; | |
841 esac | |
842 | |
843 arch_type=other | |
844 x86_asm=no | |
845 case "$host" in | |
846 i386-*-* | i486-*-* | i586-*-* | i686-*-* | i86pc-*-*) | |
847 arch_type=ix86 | |
848 case "$host" in | |
849 *-*-netbsd* | *-*openbsd*) | |
850 ;; | |
851 *) | |
852 ARCH_DEFINES="-DI386_ASSEM" | |
853 x86_asm=yes | |
854 ;; | |
855 esac | |
856 ;; | |
857 esac | |
858 | |
688 | 859 dnl *** Scrobbler *** |
860 | |
861 scrobbler="yes" | |
862 | |
863 dnl Checks for libmusicbrainz | |
692 | 864 PKG_CHECK_MODULES(MUSICBRAINZ, [libmusicbrainz >= 2.0.0], , [scrobbler="no"]) |
688 | 865 |
866 dnl libcurl check | |
867 | |
868 my_cv_curl_vers=NONE | |
869 dnl check is the plain-text version of the required version | |
870 check="7.9.7" | |
871 dnl check_hex must be UPPERCASE if any hex letters are present | |
872 check_hex="070907" | |
873 | |
874 AC_MSG_CHECKING([for curl >= $check]) | |
875 | |
960 | 876 PKG_CHECK_MODULES(CURL, [libcurl >= 7.9.7], , [scrobbler="no"]) |
688 | 877 |
878 if test "x$scrobbler" = "xyes"; then | |
879 GENERAL_PLUGINS="$GENERAL_PLUGINS scrobbler" | |
880 fi | |
881 | |
882 AC_SUBST(CURL_CFLAGS) | |
883 AC_SUBST(CURL_LIBS) | |
884 AC_SUBST(MUSICBRAINZ_LIBS) | |
885 | |
886 dnl *** End of Scrobbler checks *** | |
0 | 887 |
888 AC_SUBST(ARCH_DEFINES) | |
889 AM_CONDITIONAL(ARCH_X86, test "x$arch_type" = "xix86") | |
890 AM_CONDITIONAL(USE_X86ASM, test "x$x86_asm" = xyes) | |
891 AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes) | |
892 AM_CONDITIONAL(HAVE_SUN, test "x$have_sun" = xyes) | |
893 | |
894 plugindir=$libdir/audacious | |
895 AC_SUBST(plugindir) | |
896 | |
897 if test "x$enable_one_plugin_dir" = "xyes"; then | |
898 pluginsubs="\\\"Plugins\\\"" | |
899 INPUT_PLUGIN_DIR=Plugins | |
900 OUTPUT_PLUGIN_DIR=Plugins | |
901 EFFECT_PLUGIN_DIR=Plugins | |
902 GENERAL_PLUGIN_DIR=Plugins | |
903 VISUALIZATION_PLUGIN_DIR=Plugins | |
904 else | |
905 pluginsubs="\\\"Output\\\",\\\"Input\\\",\\\"Effect\\\",\\\"General\\\",\\\"Visualization\\\"" | |
906 INPUT_PLUGIN_DIR=Input | |
907 OUTPUT_PLUGIN_DIR=Output | |
908 EFFECT_PLUGIN_DIR=Effect | |
909 GENERAL_PLUGIN_DIR=General | |
910 VISUALIZATION_PLUGIN_DIR=Visualization | |
911 fi | |
912 | |
913 AC_SUBST(INPUT_PLUGIN_DIR) | |
914 AC_SUBST(OUTPUT_PLUGIN_DIR) | |
915 AC_SUBST(EFFECT_PLUGIN_DIR) | |
916 AC_SUBST(GENERAL_PLUGIN_DIR) | |
917 AC_SUBST(VISUALIZATION_PLUGIN_DIR) | |
918 AC_SUBST(pluginsubs) | |
919 | |
1421 | 920 dnl XXX Work around some autoconf bugs. |
921 if [ "$prefix" = "NONE" ]; then | |
922 prefix="${ac_default_prefix}" | |
923 fi | |
924 | |
1418
0d6d938bc936
[svn] - work around a possible autoconf bug causing datadir to be blank
nenolod
parents:
1408
diff
changeset
|
925 if [ ! $datadir ]; then |
0d6d938bc936
[svn] - work around a possible autoconf bug causing datadir to be blank
nenolod
parents:
1408
diff
changeset
|
926 datadir=${prefix}/share |
0d6d938bc936
[svn] - work around a possible autoconf bug causing datadir to be blank
nenolod
parents:
1408
diff
changeset
|
927 fi |
0d6d938bc936
[svn] - work around a possible autoconf bug causing datadir to be blank
nenolod
parents:
1408
diff
changeset
|
928 |
0 | 929 localedir=$datadir/locale |
930 AC_SUBST(localedir) | |
931 | |
932 BEEP_DEFINES="$CFLAGS -DDATA_DIR=\\\"$datadir/audacious\\\" -DPLUGIN_DIR=\\\"$plugindir\\\" -DPLUGINSUBS=$pluginsubs -DLOCALEDIR=\\\"$localedir\\\"" | |
933 CFLAGS="$CFLAGS $EXTRA_CFLAGS" | |
934 | |
935 if test "$enable_user_plugin_dir" = "no"; then | |
936 AC_DEFINE(DISABLE_USER_PLUGIN_DIR,, [Define to disable per user plugin directory]) | |
937 fi | |
938 | |
939 AC_SUBST(BEEP_DEFINES) | |
940 | |
941 AC_SUBST(beepdir) | |
942 AC_SUBST(plugindir) | |
943 | |
634 | 944 AC_SUBST(EFFECT_PLUGINS) |
945 AC_SUBST(GENERAL_PLUGINS) | |
946 AC_SUBST(INPUT_PLUGINS) | |
947 AC_SUBST(OUTPUT_PLUGINS) | |
948 AC_SUBST(VISUALIZATION_PLUGINS) | |
38 | 949 |
0 | 950 AC_CONFIG_FILES([ |
951 audacious.1 | |
952 audacious.spec | |
953 audacious.pc | |
954 audacious/audacious.desktop | |
955 audacious/images/Makefile | |
956 libaudacious/Makefile | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
957 libguess/Makefile |
62 | 958 Plugins/Makefile |
959 Plugins/Output/Makefile | |
960 Plugins/Output/OSS/Makefile | |
961 Plugins/Output/esd/Makefile | |
962 Plugins/Output/alsa/Makefile | |
325
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
963 Plugins/Output/jack/Makefile |
810
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
964 Plugins/Output/arts/Makefile |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
965 Plugins/Output/arts/arts_helper/Makefile |
62 | 966 Plugins/Output/disk_writer/Makefile |
759 | 967 Plugins/Output/sun/Makefile |
62 | 968 Plugins/Input/Makefile |
969 Plugins/Input/mpg123/Makefile | |
970 Plugins/Input/aac/Makefile | |
1025
2b42e48a688e
[svn] - fix a potential crash in our read callback (for VFS)
nenolod
parents:
1023
diff
changeset
|
971 Plugins/Input/aac/mp4ff/Makefile |
62 | 972 Plugins/Input/aac/libfaad2/Makefile |
973 Plugins/Input/aac/src/Makefile | |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
974 Plugins/Input/modplug/Makefile |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
975 Plugins/Input/modplug/archive/Makefile |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
976 Plugins/Input/modplug/gui/Makefile |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
977 Plugins/Input/musepack/Makefile |
62 | 978 Plugins/Input/tonegen/Makefile |
979 Plugins/Input/vorbis/Makefile | |
980 Plugins/Input/cdaudio/Makefile | |
981 Plugins/Input/wav/Makefile | |
982 Plugins/Input/flac/Makefile | |
983 Plugins/Input/flac/plugin_common/Makefile | |
269
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
984 Plugins/Input/sid/Makefile |
111
9d6a24d21322
[svn] Update configure to generate the makefile for the SPC decoder...
nenolod
parents:
89
diff
changeset
|
985 Plugins/Input/console/Makefile |
139 | 986 Plugins/Input/wma/Makefile |
987 Plugins/Input/wma/libffwma/Makefile | |
285
d1762728ea4b
[svn] Timidity support, via external contractor dai+audacious@cdr.jp.
nenolod
parents:
283
diff
changeset
|
988 Plugins/Input/timidity/Makefile |
d1762728ea4b
[svn] Timidity support, via external contractor dai+audacious@cdr.jp.
nenolod
parents:
283
diff
changeset
|
989 Plugins/Input/timidity/libtimidity/Makefile |
d1762728ea4b
[svn] Timidity support, via external contractor dai+audacious@cdr.jp.
nenolod
parents:
283
diff
changeset
|
990 Plugins/Input/timidity/src/Makefile |
332
07576d3ed844
[svn] Sexypsf input plugin; patch by dai in bug #395.
chainsaw
parents:
325
diff
changeset
|
991 Plugins/Input/sexypsf/Makefile |
359 | 992 Plugins/Input/adplug/Makefile |
993 Plugins/Input/adplug/core/Makefile | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
994 Plugins/Input/amidi-plug/Makefile |
1387 | 995 Plugins/Input/amidi-plug/pcfg/Makefile |
996 Plugins/Input/amidi-plug/backend-alsa/Makefile | |
997 Plugins/Input/amidi-plug/backend-fluidsynth/Makefile | |
998 Plugins/Input/amidi-plug/backend-dummy/Makefile | |
62 | 999 Plugins/Visualization/Makefile |
1000 Plugins/Visualization/blur_scope/Makefile | |
116 | 1001 Plugins/General/Makefile |
1002 Plugins/General/song_change/Makefile | |
157 | 1003 Plugins/General/lirc/Makefile |
688 | 1004 Plugins/General/scrobbler/Makefile |
277 | 1005 Plugins/Effect/Makefile |
937
6158ee7d8b06
[svn] Port AudioCompress (AGC) effect plugin from XMMS, as requested by Junics on SorceryNet.
chainsaw
parents:
920
diff
changeset
|
1006 Plugins/Effect/audiocompress/Makefile |
277 | 1007 Plugins/Effect/ladspa/Makefile |
920
999d1af32ab4
[svn] Extra_stereo effect plugin ported by deitarion. Some last pointer-related touchups by nemo & me.
chainsaw
parents:
885
diff
changeset
|
1008 Plugins/Effect/stereo_plugin/Makefile |
812
f9a1ddb72432
[svn] - add voice_removal plugin. Ported by: Thomas Cort <linuxgeek -at- gmail.com>, tcort @ #audacious.
nenolod
parents:
810
diff
changeset
|
1009 Plugins/Effect/voice_removal/Makefile |
0 | 1010 po/Makefile.in |
1011 intl/Makefile | |
1012 icons/Makefile | |
1013 skin/Makefile | |
562
5cdadcf74ec3
[svn] needed requirements for objective-based buildsystem (automake replacement)
nenolod
parents:
539
diff
changeset
|
1014 mk/rules.mk |
0 | 1015 ]) |
1016 | |
1017 AC_OUTPUT | |
1018 | |
1019 | |
1020 echo | |
1021 echo "Configuration:" | |
1022 echo | |
1023 echo " Install path: ${prefix}" | |
1024 | |
1025 if test "$BEEP_PATH" != "no"; then | |
38 | 1026 echo " Current Audacious executable: $BEEP_PATH" |
0 | 1027 fi |
1028 | |
1029 echo " Configuration path: \$HOME/$rc_path" | |
1030 echo | |
1031 echo " Use one plugin dir: $enable_one_plugin_dir" | |
1032 echo " Allow user plugin dir: $enable_user_plugin_dir" | |
1033 echo | |
1034 echo " XMMS Legacy" | |
1035 echo " -----------" | |
1036 echo " Equalization (works only with mpg123) $use_xmms_eq" | |
1037 echo | |
1038 echo " GNOME support" | |
1039 echo " -------------" | |
1040 echo " GConf support $enable_gconf" | |
1041 echo " VFS support $enable_gnomevfs" | |
1042 echo | |
1043 echo " Output Plugins" | |
1044 echo " --------------" | |
1045 echo " Open Sound System (oss): $have_oss" | |
1046 echo " Advanced Linux Sound Arch. (alsa): $have_alsa" | |
1047 echo " Enlightenment Sound Daemon (esd): $have_esd" | |
325
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
1048 echo " Jack Audio Connection Kit (jack): $have_jack" |
810
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
1049 echo " Analog Realtime Synthesizer (arts): $have_arts" |
758
f9e8807ea6e5
[svn] - Initial port of the bsd/sun audio output plugin from XMMS. Needs testing.
nenolod
parents:
756
diff
changeset
|
1050 echo " BSD/SUN audio output (sun): $have_sun" |
0 | 1051 echo |
1052 echo " Input Plugins" | |
1053 echo " -------------" | |
1054 echo " MPEG 1/2/3 (mpg123): $enable_mp3" | |
2 | 1055 echo " MPEG 4 Audio (AAC): $enable_aac" |
260
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
1056 echo " Windows Media Audio (wma): $enable_wma" |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
1057 echo " .mpc playback (musepack): $enable_musepack" |
1366
f66048e606f0
[svn] Show whether modplug will actually be built (wrong var was being displayed).
chainsaw
parents:
1353
diff
changeset
|
1058 echo " Module decoder (modplug): $have_modplug" |
1387 | 1059 echo " MIDI modular plugin (amidi-plug): $enable_amidiplug" |
1060 echo " -> ALSA backend: $enable_amidiplug_alsa" | |
1061 echo " -> FluidSynth backend: $enable_amidiplug_fluidsynth" | |
1062 echo " -> dummy backend: $enable_amidiplug_dummy" | |
285
d1762728ea4b
[svn] Timidity support, via external contractor dai+audacious@cdr.jp.
nenolod
parents:
283
diff
changeset
|
1063 echo " MIDI to WAVE converter (timidity): $enable_timidity" |
0 | 1064 echo " CD Digital Audio (cdda): yes" |
1065 echo " Microsoft WAV (wav): yes" | |
184
740c072f8e23
[svn] List sndfile extensions in the plugin configuration table.
chainsaw
parents:
165
diff
changeset
|
1066 echo " + sndfile extensions: $enable_sndfile" |
11 | 1067 echo " Tone Generator: yes" |
0 | 1068 echo " Ogg Vorbis (vorbis): $have_oggvorbis" |
270
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
1069 echo " Free Lossless Audio Codec (flac): $have_flac" |
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
1070 echo " Commodore 64 audio (sid): $have_sidplay" |
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
1071 echo " Game music (spc, nsf & gbs): yes" |
343
7b71e0dbb62d
[svn] Replace a tab with spaces to make Mikachu happy.
chainsaw
parents:
332
diff
changeset
|
1072 echo " PlayStation audio (sexypsf): yes" |
359 | 1073 echo " AdLib synthesizer (adplug): $have_adplug" |
270
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
1074 echo |
116 | 1075 echo " General" |
1076 echo " -------" | |
1077 echo " Song Change: yes" | |
157 | 1078 echo " LIRC: $have_lirc" |
688 | 1079 echo " AudioScrobbler Client: $scrobbler" |
270
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
1080 echo |
277 | 1081 echo " Effect" |
1082 echo " ------" | |
937
6158ee7d8b06
[svn] Port AudioCompress (AGC) effect plugin from XMMS, as requested by Junics on SorceryNet.
chainsaw
parents:
920
diff
changeset
|
1083 echo " AudioCompressor (AGC): yes" |
277 | 1084 echo " LADSPA effects host (ladspa): yes" |
812
f9a1ddb72432
[svn] - add voice_removal plugin. Ported by: Thomas Cort <linuxgeek -at- gmail.com>, tcort @ #audacious.
nenolod
parents:
810
diff
changeset
|
1085 echo " Voice Removal: yes" |
277 | 1086 echo |
0 | 1087 echo " Visualization" |
1088 echo " -------------" | |
1089 echo " Blur Scope: yes" | |
1090 echo | |
1091 | |
1092 if test "$beep_cv_lib_xlibs_threadsafe" = "no"; then | |
32 | 1093 echo "Note: You need to have thread-safe xlibs to use Audacious." |
0 | 1094 echo "If you are using libc5 thread aware Xlibs just skip this." |
1095 echo "" | |
1096 echo "If you don't have those libs and you are on a libc5 system get them at:" | |
1097 echo "ftp://ftp.dent.med.uni-muenchen.de/pub/wmglo/" | |
1098 fi | |
1099 | |
1100 if test "$BEEP_PATH" != "no" && test "$prefix/bin/audacious" != "$BEEP_PATH" ; then | |
1101 echo "" | |
1102 echo "Note: Configure has discovered that you already have Audacious installed" | |
1103 echo "and it does not match with the given --prefix. You have Audacious installed " | |
1104 echo "in $(dirname $BEEP_PATH) and you chose $prefix/bin." | |
1105 echo | |
1106 echo "If you don't want two copies of Audacious installed, rerun configure with" | |
1107 echo "the --prefix option set to the location of the old Audacious, or uninstall" | |
1108 echo "the old Audacious." | |
1109 fi | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
1110 |
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
1111 if test "x$ap_disable_timidity" = "xyes" && test "x$enable_timidity" = "xno"; then |
1387 | 1112 echo "Note: an ALSA-supported hardware midi synth or a FluidSynth software synth" |
1113 echo "was detected in configuration; in order to use it, the amidi-plug input" | |
1114 echo "plugin will be compiled in place of timidity. If you wish to compile timidity" | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
1115 echo "anyway, simply use --enable-timidity in configuration." |
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
1116 echo "" |
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
1117 fi |