Mercurial > audlegacy
annotate configure.ac @ 1787:d1ef4890fb44 trunk
[svn] - update hints file
author | nenolod |
---|---|
date | Wed, 04 Oct 2006 18:21:40 -0700 |
parents | 6b9e1c2b2b32 |
children | 628e908d78b6 |
rev | line source |
---|---|
0 | 1 dnl Process this file with autoconf to produce a configure script. |
2 | |
1755 | 3 AC_INIT([audacious], [1.2.0-rc2], [bugs+audacious@atheme.org]) |
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 dnl Check for GTK/GLib/GThread/Pango | |
83 | |
535 | 84 PKG_CHECK_MODULES(GTK, [glib-2.0 >= 2.6.0 gtk+-2.0 >= 2.6.0 gthread-2.0 pango], |
85 [ADD_PC_REQUIRES([glib-2.0 >= 2.6.0, gtk+-2.0 >= 2.6.0])], | |
0 | 86 [AC_MSG_ERROR([Cannot find glib2/gtk2/pango])] |
87 ) | |
88 | |
89 dnl Check for libglade | |
90 | |
91 PKG_CHECK_MODULES(LIBGLADE, [libglade-2.0 >= 2.3.1], | |
92 [], | |
93 [AC_MSG_ERROR([Cannot find libglade])] | |
94 ) | |
95 | |
967
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
96 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
|
97 if test "x$TAGLIB_CONFIG" = "xno" ; then |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
98 AC_MSG_ERROR([Cannot find taglib]) |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
99 else |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
100 TAGLIB_CFLAGS=[`$TAGLIB_CONFIG --cflags`] |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
101 TAGLIB_LIBS=[`$TAGLIB_CONFIG --libs`] |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
102 fi |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
103 AC_SUBST(TAGLIB_CFLAGS) |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
104 AC_SUBST(TAGLIB_LIBS) |
55757f96ef5d
[svn] Force dependance on taglib now used by mpg123 and musepack.
nemo
parents:
960
diff
changeset
|
105 |
0 | 106 # Check if socklen_t is defined |
107 | |
108 AC_CACHE_CHECK(for socklen_t, beep_cv_type_socklen_t, | |
109 [AC_TRY_COMPILE( | |
110 [#include <sys/types.h> | |
111 #include <sys/socket.h>], | |
112 [socklen_t s;], | |
113 [beep_cv_type_socklen_t=yes], | |
114 [beep_cv_type_socklen_t=no] | |
115 ) | |
116 ] | |
117 ) | |
118 | |
119 if test "$beep_cv_type_socklen_t" = "no"; then | |
120 AC_DEFINE(socklen_t, int, [Define to int if the socklen_t type is missing]) | |
121 fi | |
122 | |
978 | 123 dnl IPv6 support |
124 dnl ======================== | |
125 AC_ARG_ENABLE(ipv6, | |
126 [ --enable-ipv6 enable IPv6 support (default=no)], | |
127 enable_ipv6=$enableval, enable_ipv6=no) | |
128 if test "x$enable_ipv6" = xyes; then | |
129 AC_DEFINE(USE_IPV6,, [Define if building with IPv6 support] ) | |
130 fi | |
131 AM_CONDITIONAL(USE_IPV6,test "x$enable_ipv6" = xyes) | |
132 AC_SUBST(USE_IPV6) | |
133 | |
1622 | 134 dnl plugin stuff |
135 dnl ======================== | |
136 | |
137 dnl Ok, first we find out what flags we need to use. | |
138 AC_MSG_CHECKING([for what extension and flags to use for plugin compilation]) | |
139 case "$target" in | |
140 *-apple-*) | |
1657
81e057e03c1f
[svn] - ensure that the module symtable is consistantly unique on Mach-O bundles
nenolod
parents:
1656
diff
changeset
|
141 AC_MSG_RESULT([Mac OS X: -fPIC -bundle -fno-common -flat_namespace -undefined suppress, .dylib]) |
1624
d863bca9b6d7
[svn] - PICFLAGS should not call -shared/-bundle as some versions of GCC will misinterpret that. Only PICLDFLAGS should.
nenolod
parents:
1622
diff
changeset
|
142 PICFLAGS="-fPIC -DPIC" |
1657
81e057e03c1f
[svn] - ensure that the module symtable is consistantly unique on Mach-O bundles
nenolod
parents:
1656
diff
changeset
|
143 PICLDFLAGS="-fPIC -DPIC -bundle -fno-common -flat_namespace -undefined suppress" |
1630 | 144 LIBLDFLAGS="-dynamiclib" |
145 AUDLDFLAGS="" | |
1622 | 146 SHARED_SUFFIX=".dylib" |
147 ;; | |
148 *) | |
149 AC_MSG_RESULT([libdl-compatible: -fPIC -DPIC -shared, .so]) | |
1624
d863bca9b6d7
[svn] - PICFLAGS should not call -shared/-bundle as some versions of GCC will misinterpret that. Only PICLDFLAGS should.
nenolod
parents:
1622
diff
changeset
|
150 PICFLAGS="-fPIC -DPIC" |
1622 | 151 PICLDFLAGS="-fPIC -DPIC -shared" |
1630 | 152 LIBLDFLAGS="-fPIC -DPIC -shared" |
153 AUDLDFLAGS="-Wl,-export-dynamic -Wl,-rpath=\${libdir}" | |
1622 | 154 SHARED_SUFFIX=".so" |
155 ;; | |
156 esac | |
157 AC_SUBST(PICFLAGS) | |
1626 | 158 AC_SUBST(PICLDFLAGS) |
1630 | 159 AC_SUBST(LIBLDFLAGS) |
160 AC_SUBST(AUDLDFLAGS) | |
1622 | 161 AC_SUBST(SHARED_SUFFIX) |
1632 | 162 AC_DEFINE_UNQUOTED(SHARED_SUFFIX, "${SHARED_SUFFIX}", |
1631 | 163 [Define the shared module suffix extension on your platform.]) |
1622 | 164 |
165 AC_MSG_CHECKING([if you are running Apple-GCC]) | |
166 case "$target" in | |
167 *-apple-*) | |
168 AC_MSG_RESULT([yes, sorry you poor bastard]) | |
169 LDFLAGS="$LDFLAGS -Wl,-framework -Wl,CoreFoundation -Wl,-framework -Wl,CoreServices" | |
170 ;; | |
171 *) | |
172 AC_MSG_RESULT([no]) | |
173 ;; | |
174 esac | |
175 | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
176 dnl chardet support |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
177 dnl ======================== |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
178 AC_ARG_ENABLE(chardet, |
1758
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1755
diff
changeset
|
179 [ --enable-chardet enable character set detection support (default=no)], |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
180 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
|
181 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
|
182 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
|
183 AC_CHECK_LIB(guess, guess_jp, [SUBDIR_GUESS=[''] CHARDET_LIBS=['-lguess']], [SUBDIR_GUESS=['libguess'] CHARDET_LIBS=['../libguess/libguess.a']]) |
1613
9becbe564217
[svn] - chardet patch for Russian language witten by Valentine Sinitsyn.
yaz
parents:
1603
diff
changeset
|
184 AC_CHECK_LIB(rcd, rcdGetRussianCharset, [CHARDET_LIBS=["$CHARDET_LIBS -lrcd"]], [SUBDIR_GUESS=["$SUBDIR_GUESS librcd"] CHARDET_LIBS=["$CHARDET_LIBS ../librcd/librcd.a"]]) |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
185 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
|
186 fi |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
187 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
|
188 AC_SUBST(USE_CHARDET) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
189 AC_SUBST(CHARDET_LIBS) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
190 AC_SUBST(SUBDIR_GUESS) |
0 | 191 |
192 dnl GConf support | |
193 | |
194 AC_ARG_ENABLE( gconf, | |
195 [ --enable-gconf enable GConf support (default=disabled)], | |
196 [enable_gconf=$enableval], | |
197 [enable_gconf="no"] | |
198 ) | |
199 | |
200 if test "$enable_gconf" = "yes"; then | |
201 PKG_CHECK_MODULES(GCONF, [gconf-2.0 >= 2.6.0], | |
202 [ | |
203 AC_DEFINE(HAVE_GCONF, , [Define if building with GConf support]) | |
204 ADD_PC_REQUIRES([gconf-2.0 >= 2.6.0]) | |
205 ], | |
206 [AC_MSG_ERROR([Cannot find GConf])] | |
207 ) | |
208 fi | |
209 | |
727 | 210 if test "$enable_gconf" = "yes"; then |
211 CONFIGDB_BACKEND="gconf" | |
212 else | |
213 CONFIGDB_BACKEND="rcfile" | |
214 fi | |
0 | 215 |
727 | 216 AC_SUBST(CONFIGDB_BACKEND) |
0 | 217 |
218 dnl GnomeVFS support | |
219 | |
220 AC_ARG_ENABLE( gnome-vfs, | |
221 [ --enable-gnome-vfs enable GnomeVFS support (default=disabled)], | |
222 [enable_gnomevfs=$enableval], | |
223 [enable_gnomevfs="no"] | |
224 ) | |
225 | |
226 if test "$enable_gnomevfs" = "yes"; then | |
227 PKG_CHECK_MODULES(GNOMEVFS, [gnome-vfs-2.0 >= 2.6.0], | |
228 [ | |
229 AC_DEFINE(HAVE_GNOME_VFS, , [Define if building with GnomeVFS support]) | |
230 ADD_PC_REQUIRES([gnome-vfs-2.0 >= 2.6.0]) | |
231 ], | |
232 [AC_MSG_ERROR([Cannot find GnomeVFS])] | |
233 ) | |
234 fi | |
235 | |
726 | 236 if test "$enable_gnomevfs" = "yes"; then |
237 VFS_BACKEND="gnome" | |
238 else | |
239 VFS_BACKEND="stdio" | |
240 fi | |
0 | 241 |
727 | 242 AC_SUBST(VFS_BACKEND) |
243 | |
0 | 244 AC_CHECK_HEADERS(linux/cdrom.h) |
245 AC_CHECK_HEADERS(sys/cdio.h) | |
1675
cc5952675fca
[svn] Fixes for NetBSD by Jonathan Schleifer <js@h3c.de>
chainsaw
parents:
1671
diff
changeset
|
246 AC_CHECK_HEADERS(sys/cdrio.h) |
0 | 247 AC_CHECK_HEADERS(linux/joystick.h) |
248 AC_CHECK_HEADERS(unistd.h) | |
249 AC_CHECK_HEADERS(fcntl.h) | |
250 AC_CHECK_HEADERS(sys/ioctl.h) | |
251 AC_CHECK_HEADERS(fnmatch.h) | |
252 AC_CHECK_HEADERS(limits.h) | |
253 AC_CHECK_HEADERS(wchar.h) | |
254 AC_CHECK_HEADERS(fts.h) | |
255 | |
1675
cc5952675fca
[svn] Fixes for NetBSD by Jonathan Schleifer <js@h3c.de>
chainsaw
parents:
1671
diff
changeset
|
256 AC_CHECK_FUNCS([mkdtemp getmntinfo statvfs strtoul lrintf]) |
0 | 257 |
258 AM_CONDITIONAL(HAVE_CDROM, test "${ac_cv_header_linux_cdrom_h}" = "yes" || test "${ac_cv_header_sys_cdio_h}" = "yes") | |
259 AM_CONDITIONAL(HAVE_LINUX_JOYSTICK,test "${ac_cv_header_linux_joystick_h}" = "yes") | |
260 | |
261 AC_MSG_CHECKING(if __ELF__ is defined) | |
262 AC_EGREP_CPP(yes, | |
263 [#ifdef __ELF__ | |
264 yes | |
265 #endif | |
266 ], | |
267 [is_elf=yes], | |
268 [is_elf=no] | |
269 ) | |
270 AC_MSG_RESULT([${is_elf}]) | |
271 | |
272 have_solaris=no | |
273 have_sun=no | |
274 ARCH_DEFINES="" | |
275 case "$host" in | |
276 *-*-openbsd* | *-*-netbsd*) | |
277 have_sun=yes | |
278 if test "${is_elf}" = "no" | |
279 then | |
280 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) | |
281 fi | |
758
f9e8807ea6e5
[svn] - Initial port of the bsd/sun audio output plugin from XMMS. Needs testing.
nenolod
parents:
756
diff
changeset
|
282 OUTPUT_PLUGINS="$OUTPUT_PLUGINS sun" |
0 | 283 ;; |
284 *-*-darwin*) | |
285 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) | |
286 ;; | |
287 *-hpux-*) | |
288 ARCH_DEFINES="-DHPUX" | |
289 ;; | |
290 *-*-solaris* | *-*-sunos*) | |
291 have_solaris=yes | |
292 ;; | |
293 esac | |
294 | |
295 arch_type=other | |
296 x86_asm=no | |
297 case "$host" in | |
298 i386-*-* | i486-*-* | i586-*-* | i686-*-* | i86pc-*-*) | |
299 arch_type=ix86 | |
300 case "$host" in | |
301 *-*-netbsd* | *-*openbsd*) | |
302 ;; | |
303 *) | |
304 ARCH_DEFINES="-DI386_ASSEM" | |
305 x86_asm=yes | |
306 ;; | |
307 esac | |
308 ;; | |
309 esac | |
310 | |
311 AC_SUBST(ARCH_DEFINES) | |
1518
0c5dc8ffcc42
[svn] - hook up paranormal -- client interface code doesn't exist yet though
nenolod
parents:
1503
diff
changeset
|
312 |
0c5dc8ffcc42
[svn] - hook up paranormal -- client interface code doesn't exist yet though
nenolod
parents:
1503
diff
changeset
|
313 dnl XXX delete ASAP -nenolod |
0 | 314 AM_CONDITIONAL(ARCH_X86, test "x$arch_type" = "xix86") |
315 AM_CONDITIONAL(USE_X86ASM, test "x$x86_asm" = xyes) | |
316 AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes) | |
317 AM_CONDITIONAL(HAVE_SUN, test "x$have_sun" = xyes) | |
318 | |
1425 | 319 plugindir="$libdir/audacious" |
0 | 320 AC_SUBST(plugindir) |
321 | |
322 if test "x$enable_one_plugin_dir" = "xyes"; then | |
323 pluginsubs="\\\"Plugins\\\"" | |
324 INPUT_PLUGIN_DIR=Plugins | |
325 OUTPUT_PLUGIN_DIR=Plugins | |
326 EFFECT_PLUGIN_DIR=Plugins | |
327 GENERAL_PLUGIN_DIR=Plugins | |
328 VISUALIZATION_PLUGIN_DIR=Plugins | |
1561 | 329 CONTAINER_PLUGIN_DIR=Plugins |
0 | 330 else |
1561 | 331 pluginsubs="\\\"Output\\\",\\\"Input\\\",\\\"Effect\\\",\\\"General\\\",\\\"Visualization\\\",\\\"Container\\\"" |
0 | 332 INPUT_PLUGIN_DIR=Input |
333 OUTPUT_PLUGIN_DIR=Output | |
334 EFFECT_PLUGIN_DIR=Effect | |
335 GENERAL_PLUGIN_DIR=General | |
336 VISUALIZATION_PLUGIN_DIR=Visualization | |
1561 | 337 CONTAINER_PLUGIN_DIR=Container |
0 | 338 fi |
339 | |
340 AC_SUBST(INPUT_PLUGIN_DIR) | |
341 AC_SUBST(OUTPUT_PLUGIN_DIR) | |
342 AC_SUBST(EFFECT_PLUGIN_DIR) | |
343 AC_SUBST(GENERAL_PLUGIN_DIR) | |
344 AC_SUBST(VISUALIZATION_PLUGIN_DIR) | |
1561 | 345 AC_SUBST(CONTAINER_PLUGIN_DIR) |
0 | 346 AC_SUBST(pluginsubs) |
347 | |
1421 | 348 dnl XXX Work around some autoconf bugs. |
1422 | 349 if test "$prefix" = "NONE"; then |
1421 | 350 prefix="${ac_default_prefix}" |
351 fi | |
352 | |
1425 | 353 if test -z "$datadir"; then |
354 datadir="${prefix}/share" | |
1418
0d6d938bc936
[svn] - work around a possible autoconf bug causing datadir to be blank
nenolod
parents:
1408
diff
changeset
|
355 fi |
0d6d938bc936
[svn] - work around a possible autoconf bug causing datadir to be blank
nenolod
parents:
1408
diff
changeset
|
356 |
1425 | 357 localedir="$datadir/locale" |
0 | 358 AC_SUBST(localedir) |
359 | |
360 BEEP_DEFINES="$CFLAGS -DDATA_DIR=\\\"$datadir/audacious\\\" -DPLUGIN_DIR=\\\"$plugindir\\\" -DPLUGINSUBS=$pluginsubs -DLOCALEDIR=\\\"$localedir\\\"" | |
361 CFLAGS="$CFLAGS $EXTRA_CFLAGS" | |
362 | |
363 if test "$enable_user_plugin_dir" = "no"; then | |
364 AC_DEFINE(DISABLE_USER_PLUGIN_DIR,, [Define to disable per user plugin directory]) | |
365 fi | |
366 | |
367 AC_SUBST(BEEP_DEFINES) | |
368 | |
1747
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
369 AC_ARG_ENABLE(xspf, |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
370 [ --disable-xspf disable XSPF support. (default=enabled)], |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
371 [have_xspf=$enableval], [have_xspf=yes]) |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
372 |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
373 AM_PATH_XML2(2.0.0, , [ |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
374 AC_MSG_WARN([*** libxml2 is not installed. Paranormal nor XSPF support will not be built. ***]) |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
375 have_xspf="no" |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
376 ]) |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
377 |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
378 if test "$have_xspf" = "yes"; then |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
379 AC_DEFINE(HAVE_XSPF_PLAYLIST, 1, [Define if XSPF playlists are available.]) |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
380 fi |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
381 |
0 | 382 AC_SUBST(beepdir) |
383 AC_SUBST(plugindir) | |
384 | |
634 | 385 AC_SUBST(EFFECT_PLUGINS) |
386 AC_SUBST(GENERAL_PLUGINS) | |
387 AC_SUBST(INPUT_PLUGINS) | |
388 AC_SUBST(OUTPUT_PLUGINS) | |
389 AC_SUBST(VISUALIZATION_PLUGINS) | |
1562 | 390 AC_SUBST(CONTAINER_PLUGINS) |
38 | 391 |
0 | 392 AC_CONFIG_FILES([ |
1656
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
393 audacious.1 |
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
394 audacious.spec |
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
395 audacious.pc |
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
396 audacious/audacious.desktop |
0 | 397 audacious/images/Makefile |
1656
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
398 libaudacious/Makefile |
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
399 libguess/Makefile |
1613
9becbe564217
[svn] - chardet patch for Russian language witten by Valentine Sinitsyn.
yaz
parents:
1603
diff
changeset
|
400 librcd/Makefile |
1656
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
401 po/Makefile.in |
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
402 intl/Makefile |
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
403 icons/Makefile |
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
404 skin/Makefile |
562
5cdadcf74ec3
[svn] needed requirements for objective-based buildsystem (automake replacement)
nenolod
parents:
539
diff
changeset
|
405 mk/rules.mk |
0 | 406 ]) |
407 | |
408 AC_OUTPUT | |
409 | |
410 | |
411 echo | |
412 echo "Configuration:" | |
413 echo | |
414 echo " Install path: ${prefix}" | |
415 | |
416 if test "$BEEP_PATH" != "no"; then | |
38 | 417 echo " Current Audacious executable: $BEEP_PATH" |
0 | 418 fi |
419 | |
420 echo " Configuration path: \$HOME/$rc_path" | |
421 echo | |
422 echo " Use one plugin dir: $enable_one_plugin_dir" | |
423 echo " Allow user plugin dir: $enable_user_plugin_dir" | |
424 echo | |
425 echo " GNOME support" | |
426 echo " -------------" | |
427 echo " GConf support $enable_gconf" | |
428 echo " VFS support $enable_gnomevfs" | |
429 echo | |
430 | |
431 if test "$beep_cv_lib_xlibs_threadsafe" = "no"; then | |
32 | 432 echo "Note: You need to have thread-safe xlibs to use Audacious." |
0 | 433 echo "If you are using libc5 thread aware Xlibs just skip this." |
434 echo "" | |
435 echo "If you don't have those libs and you are on a libc5 system get them at:" | |
436 echo "ftp://ftp.dent.med.uni-muenchen.de/pub/wmglo/" | |
437 fi | |
438 | |
439 if test "$BEEP_PATH" != "no" && test "$prefix/bin/audacious" != "$BEEP_PATH" ; then | |
440 echo "" | |
441 echo "Note: Configure has discovered that you already have Audacious installed" | |
442 echo "and it does not match with the given --prefix. You have Audacious installed " | |
443 echo "in $(dirname $BEEP_PATH) and you chose $prefix/bin." | |
444 echo | |
445 echo "If you don't want two copies of Audacious installed, rerun configure with" | |
446 echo "the --prefix option set to the location of the old Audacious, or uninstall" | |
447 echo "the old Audacious." | |
448 fi |