Mercurial > audlegacy
annotate configure.ac @ 1289:4d3a98c0495d trunk
[svn] - ISO spec says we should use 330 not 332 in the 19th bandInfo slot (fix via flump3dec)
author | nenolod |
---|---|
date | Sun, 18 Jun 2006 02:00:00 -0700 |
parents | 3a2b28206f12 |
children | a698348c5155 |
rev | line source |
---|---|
0 | 1 dnl Process this file with autoconf to produce a configure script. |
2 | |
1008
4071ef3fc59c
[svn] - version bump: 1.1.0 (since we're getting close to releasing the reference package)
nenolod
parents:
1004
diff
changeset
|
3 AC_INIT(audacious, 1.1.0) |
0 | 4 AC_PREREQ(2.5) |
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 | |
35 AC_LANG([C]) | |
2 | 36 AC_LANG([C++]) |
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] ) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
196 AC_CHECK_LIB(guess, guess_jp, [SUBDIR_GUESS=['']], [SUBDIR_GUESS=['libguess']]) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
197 CHARDET_LIBS=['-lguess'] |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
198 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
|
199 fi |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
200 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
|
201 AC_SUBST(USE_CHARDET) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
202 AC_SUBST(CHARDET_LIBS) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
203 AC_SUBST(SUBDIR_GUESS) |
0 | 204 |
205 dnl GConf support | |
206 | |
207 AC_ARG_ENABLE( gconf, | |
208 [ --enable-gconf enable GConf support (default=disabled)], | |
209 [enable_gconf=$enableval], | |
210 [enable_gconf="no"] | |
211 ) | |
212 | |
213 if test "$enable_gconf" = "yes"; then | |
214 PKG_CHECK_MODULES(GCONF, [gconf-2.0 >= 2.6.0], | |
215 [ | |
216 AC_DEFINE(HAVE_GCONF, , [Define if building with GConf support]) | |
217 ADD_PC_REQUIRES([gconf-2.0 >= 2.6.0]) | |
218 ], | |
219 [AC_MSG_ERROR([Cannot find GConf])] | |
220 ) | |
221 fi | |
222 | |
727 | 223 if test "$enable_gconf" = "yes"; then |
224 CONFIGDB_BACKEND="gconf" | |
225 else | |
226 CONFIGDB_BACKEND="rcfile" | |
227 fi | |
0 | 228 |
727 | 229 AC_SUBST(CONFIGDB_BACKEND) |
0 | 230 |
231 dnl GnomeVFS support | |
232 | |
233 AC_ARG_ENABLE( gnome-vfs, | |
234 [ --enable-gnome-vfs enable GnomeVFS support (default=disabled)], | |
235 [enable_gnomevfs=$enableval], | |
236 [enable_gnomevfs="no"] | |
237 ) | |
238 | |
239 if test "$enable_gnomevfs" = "yes"; then | |
240 PKG_CHECK_MODULES(GNOMEVFS, [gnome-vfs-2.0 >= 2.6.0], | |
241 [ | |
242 AC_DEFINE(HAVE_GNOME_VFS, , [Define if building with GnomeVFS support]) | |
243 ADD_PC_REQUIRES([gnome-vfs-2.0 >= 2.6.0]) | |
244 ], | |
245 [AC_MSG_ERROR([Cannot find GnomeVFS])] | |
246 ) | |
247 fi | |
248 | |
726 | 249 if test "$enable_gnomevfs" = "yes"; then |
250 VFS_BACKEND="gnome" | |
251 else | |
252 VFS_BACKEND="stdio" | |
253 fi | |
0 | 254 |
727 | 255 AC_SUBST(VFS_BACKEND) |
256 | |
0 | 257 dnl Check for esound |
258 | |
259 AC_ARG_ENABLE( esd, | |
260 [ --disable-esd disable esound output plugin [default=enabled]], | |
261 [enable_esd=$enableval], | |
262 [enable_esd="yes"] | |
263 ) | |
264 | |
265 if test "$enable_esd" = "yes"; then | |
266 PKG_CHECK_MODULES(ESD, [esound >= 0.2], | |
634 | 267 [have_esd=yes |
268 OUTPUT_PLUGINS="$OUTPUT_PLUGINS esd"], | |
0 | 269 [have_esd=no] |
270 ) | |
271 else | |
272 AC_MSG_RESULT([*** esound plugin disabled per user request ***]) | |
273 have_esd=no | |
274 fi | |
275 | |
276 dnl *** MP3 | |
277 | |
278 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
|
279 [ --disable-mp3 disable mp3 plugin. (default=enabled) ], |
0 | 280 [enable_mp3=$enableval], |
281 [enable_mp3=yes] | |
282 ) | |
283 | |
634 | 284 if test "$enable_mp3" = "yes"; then |
285 INPUT_PLUGINS="$INPUT_PLUGINS mpg123" | |
286 fi | |
0 | 287 |
157 | 288 dnl *** LIRC client libraries |
289 | |
290 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
|
291 [ --disable-lirc disable LIRC plugin (default=enabled)], |
157 | 292 [enable_lirc=$enableval], |
293 [enable_lirc="yes"] | |
294 ) | |
295 | |
296 if test "$enable_lirc" = "yes"; then | |
297 AC_CHECK_LIB([lirc_client],[lirc_init],[have_lirc=yes],[have_lirc=no]) | |
298 else | |
299 AC_MSG_RESULT([*** LIRC plugin disabled per user request ***]) | |
300 have_lirc="no" | |
301 fi | |
634 | 302 |
303 if test "$have_lirc" = "yes"; then | |
304 GENERAL_PLUGINS="$GENERAL_PLUGINS lirc" | |
305 fi | |
157 | 306 |
386 | 307 dnl *** AdPlug requirement (libbinio) |
359 | 308 |
309 AC_ARG_ENABLE(adplug, | |
310 [ --disable-adplug disable AdPlug plugin (default=enabled)], | |
311 [enable_adplug=$enableval], | |
312 [enable_adplug="yes"] | |
313 ) | |
314 | |
386 | 315 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
|
316 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
|
317 PKG_CHECK_MODULES(BINIO,[libbinio >= 1.4],,[have_adplug=no]) |
359 | 318 else |
319 AC_MSG_RESULT([*** AdPlug plugin disabled per user request ***]) | |
320 have_adplug="no" | |
321 fi | |
634 | 322 |
323 if test "$have_adplug" = "yes"; then | |
324 INPUT_PLUGINS="$INPUT_PLUGINS adplug" | |
325 fi | |
359 | 326 |
0 | 327 dnl *** Ogg Vorbis |
328 | |
329 AC_ARG_ENABLE(vorbis, | |
330 [ --disable-vorbis disable Ogg Vorbis input plugin (default=enabled)], | |
331 [enable_vorbis=$enableval], | |
332 [enable_vorbis="yes"] | |
333 ) | |
334 | |
335 if test "$enable_vorbis" = "yes"; then | |
336 PKG_CHECK_MODULES(OGG_VORBIS, [ogg >= 1.0 vorbis >= 1.0 vorbisfile >= 1.0], | |
337 [have_oggvorbis=yes], | |
338 [AC_MSG_ERROR([Cannot find libogg/libvorbis]) | |
339 have_oggvorbis=no] | |
340 ) | |
341 else | |
342 AC_MSG_RESULT([*** Ogg Vorbis plugin disabled per user request ***]) | |
343 have_oggvorbis=no | |
344 fi | |
345 | |
634 | 346 if test "$have_oggvorbis" = "yes"; then |
347 INPUT_PLUGINS="$INPUT_PLUGINS vorbis" | |
348 fi | |
0 | 349 |
2 | 350 dnl *** AAC |
351 | |
352 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
|
353 [ --disable-aac disable aac plugin (default=enabled) ], |
2 | 354 [enable_aac=$enableval], |
355 [enable_aac=yes] | |
356 ) | |
357 | |
706 | 358 if test "$enable_aac" = "yes"; then |
634 | 359 INPUT_PLUGINS="$INPUT_PLUGINS aac" |
360 fi | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
361 |
165 | 362 dnl *** sndfile |
363 | |
364 AC_ARG_ENABLE(sndfile, | |
365 [ --disable-sndfile disable sndfile extensions. [default=enabled] ], | |
366 [enable_sndfile=$enableval], | |
367 [enable_sndfile=yes] | |
368 ) | |
369 | |
370 if test "$enable_sndfile" = "yes"; then | |
371 PKG_CHECK_MODULES(SNDFILE, [sndfile >= 0.19], | |
372 [enable_sndfile=yes], | |
373 [enable_sndfile=no] | |
374 ) | |
375 else | |
376 AC_MSG_RESULT([*** libsndfile extensions disabled per user request ***]) | |
377 enable_sndfile=no | |
378 fi | |
379 | |
634 | 380 if test "$enable_sndfile" = "yes"; then |
725 | 381 WAV_SNDFILE="-sndfile" |
634 | 382 fi |
383 | |
725 | 384 AC_SUBST(WAV_SNDFILE) |
165 | 385 |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
386 dnl *** modplug |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
387 |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
388 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
|
389 [ --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
|
390 [enable_modplug=$enableval], |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
391 [enable_modplug="yes"] |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
392 ) |
32 | 393 |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
394 if test "$enable_modplug" = "yes"; then |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
395 AC_CHECK_LIB([modplug],[XMLinearTable],[have_modplug=yes],[have_modplug=no]) |
32 | 396 else |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
397 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
|
398 have_modplug="no" |
32 | 399 fi |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
400 |
634 | 401 if test "$have_modplug" = "yes"; then |
402 INPUT_PLUGINS="$INPUT_PLUGINS modplug" | |
403 fi | |
32 | 404 |
50 | 405 dnl *** flac |
406 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
|
407 [ --disable-flac disable flac input plugin (default=enabled)],, |
50 | 408 enable_flac="yes") |
409 | |
410 if test "x$enable_flac" = xyes; then | |
411 AM_PATH_LIBFLAC(have_flac=yes, have_flac=no) | |
412 else | |
413 AC_MSG_RESULT([*** flac plugin disabled per user request ***]) | |
414 have_flac=no | |
415 fi | |
634 | 416 |
417 if test "$have_flac" = "yes"; then | |
418 INPUT_PLUGINS="$INPUT_PLUGINS flac" | |
419 fi | |
32 | 420 |
260
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
421 dnl *** WMA |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
422 |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
423 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
|
424 [ --disable-wma disable wma plugin. (default=enabled)], |
260
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
425 [enable_wma=$enableval], |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
426 [enable_wma=yes] |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
427 ) |
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
428 |
634 | 429 if test "$enable_wma" = "yes"; then |
430 INPUT_PLUGINS="$INPUT_PLUGINS wma" | |
431 fi | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
432 |
325
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
433 dnl *** jack output plugin |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
434 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
|
435 [ --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
|
436 enable_jack="yes") |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
437 |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
438 if test "x$enable_jack" = xyes; then |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
439 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
|
440 else |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
441 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
|
442 have_jack=no |
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
443 fi |
634 | 444 |
445 if test "$have_jack" = yes; then | |
446 OUTPUT_PLUGINS="$OUTPUT_PLUGINS jack" | |
447 fi | |
325
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
448 |
810
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
449 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
|
450 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
|
451 [ --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
|
452 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
|
453 |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
454 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
|
455 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
|
456 else |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
457 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
|
458 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
|
459 fi |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
460 |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
461 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
|
462 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
|
463 fi |
e9509e909193
[svn] ported xmms-arts 0.7.1 to audacious and integrated it in the build process
giacomo
parents:
794
diff
changeset
|
464 |
269
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
465 dnl *** sid |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
466 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
|
467 [ --disable-sid disable sid input plugin (default=enabled)],, |
269
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
468 enable_sid="yes") |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
469 |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
470 if test "x$enable_sid" = xyes; then |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
471 AM_PATH_SIDPLAY(have_sidplay=yes, have_sidplay=no) |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
472 else |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
473 AC_MSG_RESULT([*** sid plugin disabled per user request ***]) |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
474 have_sidplay=no |
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
475 fi |
634 | 476 |
477 if test "$have_sidplay" = yes; then | |
478 INPUT_PLUGINS="$INPUT_PLUGINS sid" | |
479 fi | |
269
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
480 |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
481 dnl *** Musepack |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
482 |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
483 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
|
484 [ --disable-musepack disable musepack input plugin (default=enabled)], |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
485 [enable_musepack=$enableval], |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
486 [enable_musepack="yes"] |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
487 ) |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
488 |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
489 if test "$enable_musepack" = "yes"; then |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
490 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
|
491 enable_musepack=no |
293
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 else |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
494 AC_MSG_RESULT([*** Musepack plugin disabled per user request ***]) |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
495 enable_musepack=no |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
496 fi |
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
497 |
634 | 498 if test "$enable_musepack" = "yes"; then |
499 INPUT_PLUGINS="$INPUT_PLUGINS musepack" | |
500 fi | |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
501 |
0 | 502 dnl *** OSS output |
503 | |
504 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
|
505 [ --disable-oss disable the OSS output plugin (default=enabled)], |
0 | 506 [have_oss=$enableval], |
507 [have_oss=yes] | |
508 ) | |
509 | |
510 if test "$have_oss" = "yes"; then | |
511 AC_MSG_CHECKING(for OSS include dir) | |
512 OSS_CFLAGS="" | |
513 if test -f "/etc/oss.conf" ; then | |
514 for i in `cat /etc/oss.conf`; do | |
515 t=`echo $i | sed -e 's/OSSLIBDIR=//'` | |
516 if test "$i" != "$t" ; then | |
517 if test -f "$t/include/sys/soundcard.h" ; then | |
518 OSS_CFLAGS="-I$t/include" | |
519 fi | |
520 fi | |
521 done | |
522 fi | |
523 if test -n "$OSS_CFLAGS" ; then | |
524 AC_MSG_RESULT([$OSS_CFLAGS]) | |
525 else | |
526 AC_MSG_RESULT([not found]) | |
527 fi | |
528 CFLAGS_save=$CFLAGS | |
529 CFLAGS="$CFLAGS $OSS_CFLAGS" | |
530 AC_CHECK_HEADERS(sys/soundcard.h) | |
531 AC_CHECK_HEADERS(machine/soundcard.h) | |
532 CFLAGS=$CFLAGS_save | |
533 | |
534 if test "${ac_cv_header_sys_soundcard_h}" = "yes" || test "${ac_cv_header_machine_soundcard_h}" = "yes"; then | |
535 have_oss=yes | |
536 fi | |
537 fi | |
538 | |
539 if test "$have_oss" = "yes"; then | |
540 AC_DEFINE(HAVE_OSS, 1, [Define if the OSS output plugin should be built]) | |
541 else | |
542 have_oss=no | |
543 fi | |
544 | |
634 | 545 if test "$have_oss" = "yes"; then |
546 OUTPUT_PLUGINS="$OUTPUT_PLUGINS OSS" | |
547 fi | |
0 | 548 |
549 dnl *** ALSA output plugin | |
550 | |
551 AC_ARG_ENABLE(alsa, | |
552 [ --disable-alsa disable ALSA input plugin (default=enabled)], | |
553 [enable_alsa=$enableval], | |
554 [enable_alsa=yes] | |
555 ) | |
556 | |
557 if test "$enable_alsa" = "yes"; then | |
558 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
|
559 [ |
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
|
560 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
|
561 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
|
562 ], |
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
|
563 [ |
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
|
564 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
|
565 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
|
566 ] |
0 | 567 ) |
568 else | |
569 AC_MSG_RESULT([*** ALSA output plugin disabled per user request ***]) | |
570 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
|
571 alsalib_available=check |
0 | 572 fi |
573 | |
635
6a9e1af8ee75
[svn] Check for have_alsa to enable ALSA, and not have_oss.
chainsaw
parents:
634
diff
changeset
|
574 if test "$have_alsa" = "yes"; then |
634 | 575 OUTPUT_PLUGINS="$OUTPUT_PLUGINS alsa" |
576 fi | |
0 | 577 |
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
|
578 dnl *** amidi-plug (note: should appear somewhere after the alsa ouput plugin 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
|
579 |
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
|
580 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
|
581 [ --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
|
582 [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
|
583 [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
|
584 ) |
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
|
585 |
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
|
586 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
|
587 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
|
588 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
|
589 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
|
590 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
|
591 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
|
592 [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
|
593 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
|
594 if test "x$alsalib_available" = "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
|
595 if test "x$enable_amidiplug" = "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
|
596 AM_PATH_AMIDIPLUG(enable_amidiplug=yes, 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
|
597 if test "x$enable_amidiplug" = "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
|
598 ap_disable_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
|
599 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
|
600 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
|
601 enable_amidiplug=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
|
602 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
|
603 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
|
604 AC_MSG_WARN([*** ALSA not found, amidi-plug won't be compiled ***]) |
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
|
605 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
|
606 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
|
607 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
|
608 |
634 | 609 if test "$enable_amidiplug" = "yes"; then |
610 INPUT_PLUGINS="$INPUT_PLUGINS amidi-plug" | |
611 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
|
612 |
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
|
613 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
|
614 |
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
|
615 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
|
616 [ --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
|
617 [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
|
618 [ |
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 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
|
620 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
|
621 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
|
622 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
|
623 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
|
624 ] |
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
|
625 ) |
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
|
626 |
634 | 627 if test "$enable_timidity" = "yes"; then |
628 INPUT_PLUGINS="$INPUT_PLUGINS timidity" | |
629 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
|
630 |
0 | 631 dnl FreeBSD newpcm driver detection |
632 | |
633 AC_CACHE_CHECK(for FreeBSD newpcm driver, beep_cv_newpcm_driver, | |
634 if test -r "/dev/sndstat"; then | |
635 grep 'newpcm' /dev/sndstat 2>/dev/null 1>/dev/null | |
636 if test "x$?" = "x0"; then | |
637 beep_cv_newpcm_driver="yes" | |
638 else | |
639 beep_cv_newpcm_driver="no" | |
640 fi | |
641 else | |
642 beep_cv_newpcm_driver="no" | |
643 fi | |
644 ) | |
645 | |
646 if test "$beep_cv_newpcm_driver" = "yes"; then | |
647 AC_DEFINE(HAVE_NEWPCM, 1, [Define if you have the FreeBSD newpcm driver]) | |
648 fi | |
649 | |
650 | |
651 AC_CHECK_HEADERS(linux/cdrom.h) | |
652 AC_CHECK_HEADERS(sys/cdio.h) | |
653 AC_CHECK_HEADERS(linux/joystick.h) | |
654 AC_CHECK_HEADERS(unistd.h) | |
655 AC_CHECK_HEADERS(fcntl.h) | |
656 AC_CHECK_HEADERS(sys/ioctl.h) | |
657 AC_CHECK_HEADERS(fnmatch.h) | |
658 AC_CHECK_HEADERS(limits.h) | |
659 AC_CHECK_HEADERS(wchar.h) | |
660 AC_CHECK_HEADERS(fts.h) | |
661 | |
242 | 662 AC_CHECK_FUNCS([mkdtemp getmntinfo strtoul lrintf]) |
0 | 663 |
664 | |
665 if test "${ac_cv_header_linux_cdrom_h}" = "yes" || test "${ac_cv_header_sys_cdio_h}" = "yes" | |
666 then | |
667 case "$host" in | |
668 *-*-sunos* | *-*-solaris* | *-*-linux*) | |
669 AC_DEFINE(BEEP_CDROM_SOLARIS,, [Define if cdrom access is in Solaris style]) | |
670 ;; | |
671 *-*-freebsd*) | |
672 AC_DEFINE(BEEP_CDROM_BSD,, [Define if cdrom access is in BSD style]) | |
673 ;; | |
674 *-*-netbsd* | *-*-openbsd*) | |
675 AC_DEFINE(BEEP_CDROM_BSD,, [Define if cdrom access is in BSD style]) | |
676 AC_DEFINE(BEEP_CDROM_BSD_NETBSD,, [Define if cdrom access uses NetBSD variant]) | |
677 ;; | |
678 *-*darwin*) | |
679 AC_DEFINE(BEEP_CDROM_BSD,, [Define if cdrom access is in BSD style]) | |
680 AC_DEFINE(BEEP_CDROM_BSD_DARWIN,, [Define if cdrom access uses Darwin variant]) | |
681 ;; | |
682 esac | |
683 fi | |
684 | |
685 | |
686 AM_CONDITIONAL(HAVE_CDROM, test "${ac_cv_header_linux_cdrom_h}" = "yes" || test "${ac_cv_header_sys_cdio_h}" = "yes") | |
687 AM_CONDITIONAL(HAVE_LINUX_JOYSTICK,test "${ac_cv_header_linux_joystick_h}" = "yes") | |
688 | |
689 if test -n "$GCC" | |
690 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
|
691 CFLAGS="$CFLAGS -Wall -Wno-strict-aliasing -Wno-unused-parameter -Wpointer-arith -finline-functions -ffast-math" |
0 | 692 case "$CFLAGS" in |
693 -g*) ;; | |
694 *\ -g*) ;; | |
695 *) CFLAGS="$CFLAGS -fomit-frame-pointer" ;; | |
696 esac | |
697 case "$host" in | |
698 *-*-freebsd*) | |
699 ;; | |
700 *) | |
701 CFLAGS="$CFLAGS -funroll-all-loops" | |
702 ;; | |
703 esac | |
704 fi | |
705 | |
706 AC_MSG_CHECKING(if __ELF__ is defined) | |
707 AC_EGREP_CPP(yes, | |
708 [#ifdef __ELF__ | |
709 yes | |
710 #endif | |
711 ], | |
712 [is_elf=yes], | |
713 [is_elf=no] | |
714 ) | |
715 AC_MSG_RESULT([${is_elf}]) | |
716 | |
717 | |
718 have_solaris=no | |
719 have_sun=no | |
720 ARCH_DEFINES="" | |
721 case "$host" in | |
722 *-*-openbsd* | *-*-netbsd*) | |
723 have_sun=yes | |
724 if test "${is_elf}" = "no" | |
725 then | |
726 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) | |
727 fi | |
758
f9e8807ea6e5
[svn] - Initial port of the bsd/sun audio output plugin from XMMS. Needs testing.
nenolod
parents:
756
diff
changeset
|
728 OUTPUT_PLUGINS="$OUTPUT_PLUGINS sun" |
0 | 729 ;; |
730 *-*-darwin*) | |
731 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) | |
732 ;; | |
733 *-hpux-*) | |
734 ARCH_DEFINES="-DHPUX" | |
735 ;; | |
736 *-*-solaris* | *-*-sunos*) | |
737 have_solaris=yes | |
738 ;; | |
739 esac | |
740 | |
741 arch_type=other | |
742 x86_asm=no | |
743 case "$host" in | |
744 i386-*-* | i486-*-* | i586-*-* | i686-*-* | i86pc-*-*) | |
745 arch_type=ix86 | |
746 case "$host" in | |
747 *-*-netbsd* | *-*openbsd*) | |
748 ;; | |
749 *) | |
750 ARCH_DEFINES="-DI386_ASSEM" | |
751 x86_asm=yes | |
752 ;; | |
753 esac | |
754 ;; | |
755 esac | |
756 | |
688 | 757 dnl *** Scrobbler *** |
758 | |
759 scrobbler="yes" | |
760 | |
761 dnl Checks for libmusicbrainz | |
692 | 762 PKG_CHECK_MODULES(MUSICBRAINZ, [libmusicbrainz >= 2.0.0], , [scrobbler="no"]) |
688 | 763 |
764 dnl libcurl check | |
765 | |
766 my_cv_curl_vers=NONE | |
767 dnl check is the plain-text version of the required version | |
768 check="7.9.7" | |
769 dnl check_hex must be UPPERCASE if any hex letters are present | |
770 check_hex="070907" | |
771 | |
772 AC_MSG_CHECKING([for curl >= $check]) | |
773 | |
960 | 774 PKG_CHECK_MODULES(CURL, [libcurl >= 7.9.7], , [scrobbler="no"]) |
688 | 775 |
776 if test "x$scrobbler" = "xyes"; then | |
777 GENERAL_PLUGINS="$GENERAL_PLUGINS scrobbler" | |
778 fi | |
779 | |
780 AC_SUBST(CURL_CFLAGS) | |
781 AC_SUBST(CURL_LIBS) | |
782 AC_SUBST(MUSICBRAINZ_LIBS) | |
783 | |
784 dnl *** End of Scrobbler checks *** | |
0 | 785 |
786 AC_SUBST(ARCH_DEFINES) | |
787 AM_CONDITIONAL(ARCH_X86, test "x$arch_type" = "xix86") | |
788 AM_CONDITIONAL(USE_X86ASM, test "x$x86_asm" = xyes) | |
789 AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes) | |
790 AM_CONDITIONAL(HAVE_SUN, test "x$have_sun" = xyes) | |
791 | |
792 plugindir=$libdir/audacious | |
793 AC_SUBST(plugindir) | |
794 | |
795 if test "x$enable_one_plugin_dir" = "xyes"; then | |
796 pluginsubs="\\\"Plugins\\\"" | |
797 INPUT_PLUGIN_DIR=Plugins | |
798 OUTPUT_PLUGIN_DIR=Plugins | |
799 EFFECT_PLUGIN_DIR=Plugins | |
800 GENERAL_PLUGIN_DIR=Plugins | |
801 VISUALIZATION_PLUGIN_DIR=Plugins | |
802 else | |
803 pluginsubs="\\\"Output\\\",\\\"Input\\\",\\\"Effect\\\",\\\"General\\\",\\\"Visualization\\\"" | |
804 INPUT_PLUGIN_DIR=Input | |
805 OUTPUT_PLUGIN_DIR=Output | |
806 EFFECT_PLUGIN_DIR=Effect | |
807 GENERAL_PLUGIN_DIR=General | |
808 VISUALIZATION_PLUGIN_DIR=Visualization | |
809 fi | |
810 | |
811 AC_SUBST(INPUT_PLUGIN_DIR) | |
812 AC_SUBST(OUTPUT_PLUGIN_DIR) | |
813 AC_SUBST(EFFECT_PLUGIN_DIR) | |
814 AC_SUBST(GENERAL_PLUGIN_DIR) | |
815 AC_SUBST(VISUALIZATION_PLUGIN_DIR) | |
816 AC_SUBST(pluginsubs) | |
817 | |
818 localedir=$datadir/locale | |
819 AC_SUBST(localedir) | |
820 | |
821 BEEP_DEFINES="$CFLAGS -DDATA_DIR=\\\"$datadir/audacious\\\" -DPLUGIN_DIR=\\\"$plugindir\\\" -DPLUGINSUBS=$pluginsubs -DLOCALEDIR=\\\"$localedir\\\"" | |
822 CFLAGS="$CFLAGS $EXTRA_CFLAGS" | |
823 | |
824 if test "$enable_user_plugin_dir" = "no"; then | |
825 AC_DEFINE(DISABLE_USER_PLUGIN_DIR,, [Define to disable per user plugin directory]) | |
826 fi | |
827 | |
828 AC_SUBST(BEEP_DEFINES) | |
829 | |
830 AC_SUBST(beepdir) | |
831 AC_SUBST(plugindir) | |
832 | |
634 | 833 AC_SUBST(EFFECT_PLUGINS) |
834 AC_SUBST(GENERAL_PLUGINS) | |
835 AC_SUBST(INPUT_PLUGINS) | |
836 AC_SUBST(OUTPUT_PLUGINS) | |
837 AC_SUBST(VISUALIZATION_PLUGINS) | |
38 | 838 |
0 | 839 AC_CONFIG_FILES([ |
840 audacious.1 | |
841 audacious.spec | |
842 audacious.pc | |
843 audacious/audacious.desktop | |
844 audacious/images/Makefile | |
845 libaudacious/Makefile | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
846 libguess/Makefile |
62 | 847 Plugins/Makefile |
848 Plugins/Output/Makefile | |
849 Plugins/Output/OSS/Makefile | |
850 Plugins/Output/esd/Makefile | |
851 Plugins/Output/alsa/Makefile | |
325
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
852 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
|
853 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
|
854 Plugins/Output/arts/arts_helper/Makefile |
62 | 855 Plugins/Output/disk_writer/Makefile |
759 | 856 Plugins/Output/sun/Makefile |
62 | 857 Plugins/Input/Makefile |
858 Plugins/Input/mpg123/Makefile | |
859 Plugins/Input/aac/Makefile | |
1025
2b42e48a688e
[svn] - fix a potential crash in our read callback (for VFS)
nenolod
parents:
1023
diff
changeset
|
860 Plugins/Input/aac/mp4ff/Makefile |
62 | 861 Plugins/Input/aac/libfaad2/Makefile |
862 Plugins/Input/aac/src/Makefile | |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
863 Plugins/Input/modplug/Makefile |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
864 Plugins/Input/modplug/archive/Makefile |
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
865 Plugins/Input/modplug/gui/Makefile |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
866 Plugins/Input/musepack/Makefile |
62 | 867 Plugins/Input/tonegen/Makefile |
868 Plugins/Input/vorbis/Makefile | |
869 Plugins/Input/cdaudio/Makefile | |
870 Plugins/Input/wav/Makefile | |
871 Plugins/Input/flac/Makefile | |
872 Plugins/Input/flac/plugin_common/Makefile | |
269
1b82a9932b60
[svn] Import sid plugin. Ported from XMMS by giacomo.
chainsaw
parents:
263
diff
changeset
|
873 Plugins/Input/sid/Makefile |
111
9d6a24d21322
[svn] Update configure to generate the makefile for the SPC decoder...
nenolod
parents:
89
diff
changeset
|
874 Plugins/Input/console/Makefile |
139 | 875 Plugins/Input/wma/Makefile |
876 Plugins/Input/wma/libffwma/Makefile | |
285
d1762728ea4b
[svn] Timidity support, via external contractor dai+audacious@cdr.jp.
nenolod
parents:
283
diff
changeset
|
877 Plugins/Input/timidity/Makefile |
d1762728ea4b
[svn] Timidity support, via external contractor dai+audacious@cdr.jp.
nenolod
parents:
283
diff
changeset
|
878 Plugins/Input/timidity/libtimidity/Makefile |
d1762728ea4b
[svn] Timidity support, via external contractor dai+audacious@cdr.jp.
nenolod
parents:
283
diff
changeset
|
879 Plugins/Input/timidity/src/Makefile |
332
07576d3ed844
[svn] Sexypsf input plugin; patch by dai in bug #395.
chainsaw
parents:
325
diff
changeset
|
880 Plugins/Input/sexypsf/Makefile |
359 | 881 Plugins/Input/adplug/Makefile |
882 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
|
883 Plugins/Input/amidi-plug/Makefile |
62 | 884 Plugins/Visualization/Makefile |
885 Plugins/Visualization/blur_scope/Makefile | |
116 | 886 Plugins/General/Makefile |
887 Plugins/General/song_change/Makefile | |
157 | 888 Plugins/General/lirc/Makefile |
688 | 889 Plugins/General/scrobbler/Makefile |
277 | 890 Plugins/Effect/Makefile |
937
6158ee7d8b06
[svn] Port AudioCompress (AGC) effect plugin from XMMS, as requested by Junics on SorceryNet.
chainsaw
parents:
920
diff
changeset
|
891 Plugins/Effect/audiocompress/Makefile |
277 | 892 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
|
893 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
|
894 Plugins/Effect/voice_removal/Makefile |
0 | 895 po/Makefile.in |
896 intl/Makefile | |
897 icons/Makefile | |
898 skin/Makefile | |
562
5cdadcf74ec3
[svn] needed requirements for objective-based buildsystem (automake replacement)
nenolod
parents:
539
diff
changeset
|
899 mk/rules.mk |
0 | 900 ]) |
901 | |
902 AC_OUTPUT | |
903 | |
904 | |
905 echo | |
906 echo "Configuration:" | |
907 echo | |
908 echo " Install path: ${prefix}" | |
909 | |
910 if test "$BEEP_PATH" != "no"; then | |
38 | 911 echo " Current Audacious executable: $BEEP_PATH" |
0 | 912 fi |
913 | |
914 echo " Configuration path: \$HOME/$rc_path" | |
915 echo | |
916 echo " Use one plugin dir: $enable_one_plugin_dir" | |
917 echo " Allow user plugin dir: $enable_user_plugin_dir" | |
918 echo | |
919 echo " XMMS Legacy" | |
920 echo " -----------" | |
921 echo " Equalization (works only with mpg123) $use_xmms_eq" | |
922 echo | |
923 echo " GNOME support" | |
924 echo " -------------" | |
925 echo " GConf support $enable_gconf" | |
926 echo " VFS support $enable_gnomevfs" | |
927 echo | |
928 echo " Output Plugins" | |
929 echo " --------------" | |
930 echo " Open Sound System (oss): $have_oss" | |
931 echo " Advanced Linux Sound Arch. (alsa): $have_alsa" | |
932 echo " Enlightenment Sound Daemon (esd): $have_esd" | |
325
ea321d1dae48
[svn] JACKd output plugin via external contractor james@develia.org.
nenolod
parents:
319
diff
changeset
|
933 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
|
934 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
|
935 echo " BSD/SUN audio output (sun): $have_sun" |
0 | 936 echo |
937 echo " Input Plugins" | |
938 echo " -------------" | |
939 echo " MPEG 1/2/3 (mpg123): $enable_mp3" | |
2 | 940 echo " MPEG 4 Audio (AAC): $enable_aac" |
260
4b1c9d1a469b
[svn] Made WMA support configurable, defaults to on.
chainsaw
parents:
242
diff
changeset
|
941 echo " Windows Media Audio (wma): $enable_wma" |
293
9b191695629c
[svn] Add musepack input plugin & hook into build system.
chainsaw
parents:
285
diff
changeset
|
942 echo " .mpc playback (musepack): $enable_musepack" |
278
37316876ef6e
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
chainsaw
parents:
277
diff
changeset
|
943 echo " Module decoder (modplug): $enable_modplug" |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
944 echo " MIDI hw synth via ALSA (amidi-plug): $enable_amidiplug" |
285
d1762728ea4b
[svn] Timidity support, via external contractor dai+audacious@cdr.jp.
nenolod
parents:
283
diff
changeset
|
945 echo " MIDI to WAVE converter (timidity): $enable_timidity" |
0 | 946 echo " CD Digital Audio (cdda): yes" |
947 echo " Microsoft WAV (wav): yes" | |
184
740c072f8e23
[svn] List sndfile extensions in the plugin configuration table.
chainsaw
parents:
165
diff
changeset
|
948 echo " + sndfile extensions: $enable_sndfile" |
11 | 949 echo " Tone Generator: yes" |
0 | 950 echo " Ogg Vorbis (vorbis): $have_oggvorbis" |
270
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
951 echo " Free Lossless Audio Codec (flac): $have_flac" |
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
952 echo " Commodore 64 audio (sid): $have_sidplay" |
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
953 echo " Game music (spc, nsf & gbs): yes" |
343
7b71e0dbb62d
[svn] Replace a tab with spaces to make Mikachu happy.
chainsaw
parents:
332
diff
changeset
|
954 echo " PlayStation audio (sexypsf): yes" |
359 | 955 echo " AdLib synthesizer (adplug): $have_adplug" |
270
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
956 echo |
116 | 957 echo " General" |
958 echo " -------" | |
959 echo " Song Change: yes" | |
157 | 960 echo " LIRC: $have_lirc" |
688 | 961 echo " AudioScrobbler Client: $scrobbler" |
270
c7efd92ee0e8
[svn] Update plugin descriptions in feature overview.
chainsaw
parents:
269
diff
changeset
|
962 echo |
277 | 963 echo " Effect" |
964 echo " ------" | |
937
6158ee7d8b06
[svn] Port AudioCompress (AGC) effect plugin from XMMS, as requested by Junics on SorceryNet.
chainsaw
parents:
920
diff
changeset
|
965 echo " AudioCompressor (AGC): yes" |
277 | 966 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
|
967 echo " Voice Removal: yes" |
277 | 968 echo |
0 | 969 echo " Visualization" |
970 echo " -------------" | |
971 echo " Blur Scope: yes" | |
972 echo | |
973 | |
974 if test "$beep_cv_lib_xlibs_threadsafe" = "no"; then | |
32 | 975 echo "Note: You need to have thread-safe xlibs to use Audacious." |
0 | 976 echo "If you are using libc5 thread aware Xlibs just skip this." |
977 echo "" | |
978 echo "If you don't have those libs and you are on a libc5 system get them at:" | |
979 echo "ftp://ftp.dent.med.uni-muenchen.de/pub/wmglo/" | |
980 fi | |
981 | |
982 if test "$BEEP_PATH" != "no" && test "$prefix/bin/audacious" != "$BEEP_PATH" ; then | |
983 echo "" | |
984 echo "Note: Configure has discovered that you already have Audacious installed" | |
985 echo "and it does not match with the given --prefix. You have Audacious installed " | |
986 echo "in $(dirname $BEEP_PATH) and you chose $prefix/bin." | |
987 echo | |
988 echo "If you don't want two copies of Audacious installed, rerun configure with" | |
989 echo "the --prefix option set to the location of the old Audacious, or uninstall" | |
990 echo "the old Audacious." | |
991 fi | |
523
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
992 |
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
993 if test "x$ap_disable_timidity" = "xyes" && test "x$enable_timidity" = "xno"; then |
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
994 echo "Note: an ALSA-supported hardware midi synth was detected in configuration;" |
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
995 echo "in order to use it, the amidi-plug (MIDI through ALSA) input plugin" |
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
996 echo "will be compiled in place of timidity. If you wish to compile timidity" |
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
997 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
|
998 echo "" |
42380ff32bad
[svn] updated configure.ac and macros; added amidi-plug and conditions for timidity compilation
giacomo
parents:
487
diff
changeset
|
999 fi |