Mercurial > audlegacy
annotate configure.ac @ 2634:704437e446d2 trunk
[svn] - fixes for mowgli pre-GIT.
author | nenolod |
---|---|
date | Tue, 20 Mar 2007 23:58:31 -0700 |
parents | eefcf9c62175 |
children | f6c7271df7de |
rev | line source |
---|---|
0 | 1 dnl Process this file with autoconf to produce a configure script. |
2619 | 2 AC_INIT([audacious], [1.4.0], [bugs+audacious@atheme.org]) |
1420 | 3 AC_PREREQ([2.59]) |
0 | 4 |
5 AC_CANONICAL_HOST | |
6 AC_CANONICAL_TARGET | |
7 | |
8 AC_CONFIG_HEADERS([config.h]) | |
9 | |
10 dnl libbeep | |
11 LIBBEEP_MAJOR_VERSION=2 | |
12 LIBBEEP_MINOR_VERSION=0 | |
13 LIBBEEP_MICRO_VERSION=0 | |
14 LIBBEEP_VERSION=$LIBBEEP_MAJOR_VERSION.$LIBBEEP_MINOR_VERSION.$LIBBEEP_MICRO_VERSION | |
15 AC_SUBST(LIBBEEP_MAJOR_VERSION) | |
16 AC_SUBST(LIBBEEP_MINOR_VERSION) | |
17 AC_SUBST(LIBBEEP_MICRO_VERSION) | |
18 | |
38 | 19 dnl XXX kludge for FreeBSD |
20 if test -d "/usr/X11R6/include"; then | |
21 CPPFLAGS="$CPPFLAGS -I/usr/X11R6/include" | |
22 fi | |
0 | 23 |
2324
2ab9ef1e9544
[svn] - remove leftover remnants of automake from buildsystem
nenolod
parents:
2323
diff
changeset
|
24 dnl OMK bootstrap |
2ab9ef1e9544
[svn] - remove leftover remnants of automake from buildsystem
nenolod
parents:
2323
diff
changeset
|
25 AC_SUBST([PACKAGE], [AC_PACKAGE_TARNAME]) |
2ab9ef1e9544
[svn] - remove leftover remnants of automake from buildsystem
nenolod
parents:
2323
diff
changeset
|
26 AC_SUBST([VERSION], [AC_PACKAGE_VERSION]) |
2ab9ef1e9544
[svn] - remove leftover remnants of automake from buildsystem
nenolod
parents:
2323
diff
changeset
|
27 |
2ab9ef1e9544
[svn] - remove leftover remnants of automake from buildsystem
nenolod
parents:
2323
diff
changeset
|
28 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) |
2ab9ef1e9544
[svn] - remove leftover remnants of automake from buildsystem
nenolod
parents:
2323
diff
changeset
|
29 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]) |
756 | 30 |
0 | 31 dnl GNU gettext |
32 | |
33 AM_GNU_GETTEXT | |
34 AM_GNU_GETTEXT_VERSION([0.12.1]) | |
35 | |
36 | |
37 dnl Check for C compiler | |
38 | |
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
|
39 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
|
40 AC_PROG_CXX |
0 | 41 AC_ISC_POSIX |
42 AC_C_BIGENDIAN | |
43 | |
2316 | 44 test x"$GCC" = x"yes" && CFLAGS="$CFLAGS -Wall -pipe" |
2315 | 45 |
0 | 46 dnl Check for assembler |
47 | |
48 AM_PROG_AS | |
49 | |
50 dnl Checks for various programs | |
51 | |
52 AC_PROG_INSTALL | |
53 AC_PROG_LN_S | |
54 AC_PROG_MAKE_SET | |
55 | |
750 | 56 AC_PATH_PROG(RM, rm) |
57 AC_PATH_PROG(MV, mv) | |
58 AC_PATH_PROG(CP, cp) | |
59 AC_PATH_PROG(AR, ar) | |
60 AC_PATH_PROG(RANLIB, ranlib) | |
61 | |
0 | 62 dnl Path settings |
63 | |
64 AC_PATH_PROG(BEEP_PATH, audacious, no) | |
65 | |
66 AC_ARG_WITH(rc-path, | |
2318 | 67 [ --with-rc-path=path Resource and configuration path for audacious relative to $HOME. (deprecated, use XDG)], |
0 | 68 [rc_path=$withval], |
2302
a73097e58abb
[svn] Revert stupid commit by js, because that does not make us XDG basedir compliant.
kiyoshi
parents:
2301
diff
changeset
|
69 [rc_path=.audacious] |
0 | 70 ) |
71 AC_DEFINE_UNQUOTED(BMP_RCPATH, "$rc_path", | |
535 | 72 [Resource and configuration path for audacious relative to $HOME.] |
0 | 73 ) |
2325
63c9a2724e73
[svn] - revert r3646 because it is not a user-friendly method of transitioning.
nenolod
parents:
2324
diff
changeset
|
74 AC_DEFINE(DOTAUDACIOUS_COMPAT, 1, [Enable compatibility for $HOME/.audacious]) |
0 | 75 AC_SUBST(BMP_RCPATH) |
76 | |
77 AC_ARG_ENABLE(one-plugin-dir, | |
78 [ --enable-one-plugin-dir Use a single plugin dir [default=no]], | |
79 [enable_one_plugin_dir=$enableval], | |
80 [enable_one_plugin_dir=no] | |
81 ) | |
82 | |
83 AC_ARG_ENABLE(user-plugin-dir, | |
84 [ --disable-user-plugin-dir disable per-user plugin dir], | |
85 [enable_user_plugin_dir=$enableval], | |
86 [enable_user_plugin_dir=yes] | |
87 ) | |
88 | |
89 dnl Check for GTK/GLib/GThread/Pango | |
90 | |
535 | 91 PKG_CHECK_MODULES(GTK, [glib-2.0 >= 2.6.0 gtk+-2.0 >= 2.6.0 gthread-2.0 pango], |
92 [ADD_PC_REQUIRES([glib-2.0 >= 2.6.0, gtk+-2.0 >= 2.6.0])], | |
0 | 93 [AC_MSG_ERROR([Cannot find glib2/gtk2/pango])] |
94 ) | |
95 | |
2631
a2afa6ca7294
[svn] - integrate libmowgli requirement into buildsystem
nenolod
parents:
2619
diff
changeset
|
96 dnl Check for GLib. |
2503
10692383c103
[svn] first try for libid3tag integration. this improved libid3tag supports vfs operations and is capable of adding id3v2 tag to files which doesn't have id3v2 tag ever.
yaz
parents:
2359
diff
changeset
|
97 |
10692383c103
[svn] first try for libid3tag integration. this improved libid3tag supports vfs operations and is capable of adding id3v2 tag to files which doesn't have id3v2 tag ever.
yaz
parents:
2359
diff
changeset
|
98 PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.6.0], |
10692383c103
[svn] first try for libid3tag integration. this improved libid3tag supports vfs operations and is capable of adding id3v2 tag to files which doesn't have id3v2 tag ever.
yaz
parents:
2359
diff
changeset
|
99 [ADD_PC_REQUIRES([glib-2.0 >= 2.6.0])], |
10692383c103
[svn] first try for libid3tag integration. this improved libid3tag supports vfs operations and is capable of adding id3v2 tag to files which doesn't have id3v2 tag ever.
yaz
parents:
2359
diff
changeset
|
100 [AC_MSG_ERROR([Cannot find glib2])] |
10692383c103
[svn] first try for libid3tag integration. this improved libid3tag supports vfs operations and is capable of adding id3v2 tag to files which doesn't have id3v2 tag ever.
yaz
parents:
2359
diff
changeset
|
101 ) |
10692383c103
[svn] first try for libid3tag integration. this improved libid3tag supports vfs operations and is capable of adding id3v2 tag to files which doesn't have id3v2 tag ever.
yaz
parents:
2359
diff
changeset
|
102 |
2631
a2afa6ca7294
[svn] - integrate libmowgli requirement into buildsystem
nenolod
parents:
2619
diff
changeset
|
103 dnl Check for libmowgli. |
a2afa6ca7294
[svn] - integrate libmowgli requirement into buildsystem
nenolod
parents:
2619
diff
changeset
|
104 |
2632 | 105 PKG_CHECK_MODULES(MOWGLI, [libmowgli >= 0.1], |
106 [ADD_PC_REQUIRES([libmowgli >= 0.1])], | |
2631
a2afa6ca7294
[svn] - integrate libmowgli requirement into buildsystem
nenolod
parents:
2619
diff
changeset
|
107 [AC_MSG_ERROR([Cannot find libmowgli: try http://sacredspiral.co.uk/~nenolod/mowgli])] |
a2afa6ca7294
[svn] - integrate libmowgli requirement into buildsystem
nenolod
parents:
2619
diff
changeset
|
108 ) |
a2afa6ca7294
[svn] - integrate libmowgli requirement into buildsystem
nenolod
parents:
2619
diff
changeset
|
109 |
0 | 110 dnl Check for libglade |
111 | |
112 PKG_CHECK_MODULES(LIBGLADE, [libglade-2.0 >= 2.3.1], | |
113 [], | |
114 [AC_MSG_ERROR([Cannot find libglade])] | |
115 ) | |
116 | |
117 # Check if socklen_t is defined | |
118 | |
119 AC_CACHE_CHECK(for socklen_t, beep_cv_type_socklen_t, | |
120 [AC_TRY_COMPILE( | |
121 [#include <sys/types.h> | |
122 #include <sys/socket.h>], | |
123 [socklen_t s;], | |
124 [beep_cv_type_socklen_t=yes], | |
125 [beep_cv_type_socklen_t=no] | |
126 ) | |
127 ] | |
128 ) | |
129 | |
130 if test "$beep_cv_type_socklen_t" = "no"; then | |
131 AC_DEFINE(socklen_t, int, [Define to int if the socklen_t type is missing]) | |
132 fi | |
133 | |
978 | 134 dnl IPv6 support |
135 dnl ======================== | |
136 AC_ARG_ENABLE(ipv6, | |
137 [ --enable-ipv6 enable IPv6 support (default=no)], | |
138 enable_ipv6=$enableval, enable_ipv6=no) | |
139 if test "x$enable_ipv6" = xyes; then | |
140 AC_DEFINE(USE_IPV6,, [Define if building with IPv6 support] ) | |
141 fi | |
142 AM_CONDITIONAL(USE_IPV6,test "x$enable_ipv6" = xyes) | |
143 AC_SUBST(USE_IPV6) | |
144 | |
1892
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
145 dnl rpath stuff |
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
146 dnl ======================== |
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
147 AC_ARG_ENABLE(rpath, |
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
148 [ --disable-rpath disable hardcoded rpath (default=enabled)], |
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
149 enable_rpath=$enableval, enable_rpath=yes) |
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
150 |
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
151 if test "x$enable_rpath" = xyes; then |
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
152 RPATH_VAL="-Wl,-rpath=\${libdir}" |
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
153 fi |
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
154 |
1622 | 155 dnl plugin stuff |
156 dnl ======================== | |
157 | |
158 dnl Ok, first we find out what flags we need to use. | |
159 AC_MSG_CHECKING([for what extension and flags to use for plugin compilation]) | |
160 case "$target" in | |
161 *-apple-*) | |
1657
81e057e03c1f
[svn] - ensure that the module symtable is consistantly unique on Mach-O bundles
nenolod
parents:
1656
diff
changeset
|
162 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
|
163 PICFLAGS="-fPIC -DPIC" |
1657
81e057e03c1f
[svn] - ensure that the module symtable is consistantly unique on Mach-O bundles
nenolod
parents:
1656
diff
changeset
|
164 PICLDFLAGS="-fPIC -DPIC -bundle -fno-common -flat_namespace -undefined suppress" |
1630 | 165 LIBLDFLAGS="-dynamiclib" |
166 AUDLDFLAGS="" | |
1622 | 167 SHARED_SUFFIX=".dylib" |
168 ;; | |
169 *) | |
170 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
|
171 PICFLAGS="-fPIC -DPIC" |
1622 | 172 PICLDFLAGS="-fPIC -DPIC -shared" |
1630 | 173 LIBLDFLAGS="-fPIC -DPIC -shared" |
1892
9d53c0faac1b
[svn] - add --disable-rpath option to disable hardbinding an rpath to the audacious binaries
nenolod
parents:
1879
diff
changeset
|
174 AUDLDFLAGS="-Wl,-export-dynamic $RPATH_VAL" |
1622 | 175 SHARED_SUFFIX=".so" |
176 ;; | |
177 esac | |
178 AC_SUBST(PICFLAGS) | |
1626 | 179 AC_SUBST(PICLDFLAGS) |
1630 | 180 AC_SUBST(LIBLDFLAGS) |
181 AC_SUBST(AUDLDFLAGS) | |
1622 | 182 AC_SUBST(SHARED_SUFFIX) |
1632 | 183 AC_DEFINE_UNQUOTED(SHARED_SUFFIX, "${SHARED_SUFFIX}", |
1631 | 184 [Define the shared module suffix extension on your platform.]) |
1622 | 185 |
186 AC_MSG_CHECKING([if you are running Apple-GCC]) | |
187 case "$target" in | |
188 *-apple-*) | |
189 AC_MSG_RESULT([yes, sorry you poor bastard]) | |
190 LDFLAGS="$LDFLAGS -Wl,-framework -Wl,CoreFoundation -Wl,-framework -Wl,CoreServices" | |
191 ;; | |
192 *) | |
193 AC_MSG_RESULT([no]) | |
194 ;; | |
195 esac | |
196 | |
2559 | 197 dnl libguess always compiled in |
198 dnl ======================== | |
199 SUBDIR_GUESS="libguess librcd" | |
200 CHARDET_LIBS="../libguess/libguess.a ../librcd/librcd.a" | |
201 | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
202 dnl chardet support |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
203 dnl ======================== |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
204 AC_ARG_ENABLE(chardet, |
1758
6b9e1c2b2b32
[svn] - fix for gconf_value_get_string() does not accept null string.
yaz
parents:
1755
diff
changeset
|
205 [ --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
|
206 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
|
207 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
|
208 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
|
209 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
|
210 fi |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
211 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
|
212 AC_SUBST(USE_CHARDET) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
213 AC_SUBST(CHARDET_LIBS) |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1029
diff
changeset
|
214 AC_SUBST(SUBDIR_GUESS) |
0 | 215 |
2538
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
216 dnl libsamplerate support |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
217 dnl ======================== |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
218 AC_ARG_ENABLE(samplerate, |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
219 [ --enable-samplerate enable libsamplerate support (default=no)], |
2543
535bc24a9eb1
[svn] - make configure script show the configuration status of sampling rate conversion.
yaz
parents:
2540
diff
changeset
|
220 [enable_samplerate=$enableval], [enable_samplerate=no]) |
535bc24a9eb1
[svn] - make configure script show the configuration status of sampling rate conversion.
yaz
parents:
2540
diff
changeset
|
221 if test "x$enable_samplerate" = "xyes"; then |
2538
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
222 AC_DEFINE(USE_SRC, 1, [Define if libsamplerate enabled] ) |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
223 PKG_CHECK_MODULES(samplerate, samplerate) |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
224 AC_SUBST(USE_SRC) |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
225 AC_SUBST(samplerate_CFLAGS) |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
226 AC_SUBST(samplerate_LIBS) |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
227 AC_CHECK_LIB(samplerate, src_process,,AC_MSG_ERROR([*** Unable to find libsamplerate library!])) |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
228 fi |
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2535
diff
changeset
|
229 |
2168
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
230 dnl regex support (gnu/oniguruma/pcre) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
231 dnl ======================== |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
232 REGEX_LIBS= |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
233 REGEX_CFLAGS= |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
234 AC_ARG_WITH(regexlib, |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
235 [ |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
236 --with-regexlib[[=gnu/oniguruma/pcre]] use the chosen regex library (default: gnu) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
237 ], |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
238 [case "${withval}" in |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
239 gnu) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
240 AC_DEFINE(USE_REGEX_GNU,[1],[If this macro is defined, use GNU regex library.]) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
241 ;; |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
242 pcre) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
243 PKG_CHECK_MODULES(LIBPCRE, [libpcre >= 6.7], |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
244 [ |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
245 AC_DEFINE(USE_REGEX_PCRE,[1],[If this macro is defined, use PCRE regex library.]) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
246 REGEX_LIBS="-lpcreposix $LIBPCRE_LIBS" |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
247 REGEX_CFLAGS=$LIBPCRE_CFLAGS |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
248 ], |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
249 [AC_MSG_ERROR([Cannot find PCRE])] |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
250 ) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
251 ;; |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
252 oniguruma) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
253 AC_CHECK_LIB( onig , onig_new , |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
254 [ |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
255 AC_DEFINE(USE_REGEX_ONIGURUMA,[1],[If this macro is defined, use Oniguruma regex library.]) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
256 REGEX_LIBS=['-lonig'] |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
257 ], |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
258 [AC_MSG_ERROR([Cannot find Oniguruma])] |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
259 ) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
260 ;; |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
261 *) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
262 AC_DEFINE(USE_REGEX_GNU,[1],[If this macro is defined, use GNU regex library.]) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
263 ;; |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
264 esac],AC_DEFINE(USE_REGEX_GNU,[1],[If this macro is defined, use GNU regex library.])) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
265 |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
266 AC_SUBST(REGEX_LIBS) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
267 AC_SUBST(REGEX_CFLAGS) |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
268 |
caaf4b1a8487
[svn] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding
giacomo
parents:
2106
diff
changeset
|
269 |
0 | 270 dnl GConf support |
271 | |
2535 | 272 PKG_CHECK_MODULES(LIBMCS, [libmcs >= 0.1], |
273 [ | |
274 AC_DEFINE(HAVE_MCS, , [Define if building with libmcs support]) | |
275 ADD_PC_REQUIRES([libmcs >= 0.1]) | |
276 ], | |
277 [AC_MSG_ERROR([Cannot find libmcs])] | |
278 ) | |
0 | 279 |
280 AC_CHECK_HEADERS(unistd.h) | |
281 AC_CHECK_HEADERS(fcntl.h) | |
282 AC_CHECK_HEADERS(sys/ioctl.h) | |
283 AC_CHECK_HEADERS(fnmatch.h) | |
284 AC_CHECK_HEADERS(limits.h) | |
285 AC_CHECK_HEADERS(wchar.h) | |
286 AC_CHECK_HEADERS(fts.h) | |
287 | |
1675
cc5952675fca
[svn] Fixes for NetBSD by Jonathan Schleifer <js@h3c.de>
chainsaw
parents:
1671
diff
changeset
|
288 AC_CHECK_FUNCS([mkdtemp getmntinfo statvfs strtoul lrintf]) |
0 | 289 |
290 AC_MSG_CHECKING(if __ELF__ is defined) | |
291 AC_EGREP_CPP(yes, | |
292 [#ifdef __ELF__ | |
293 yes | |
294 #endif | |
295 ], | |
296 [is_elf=yes], | |
297 [is_elf=no] | |
298 ) | |
299 AC_MSG_RESULT([${is_elf}]) | |
300 | |
301 have_solaris=no | |
302 have_sun=no | |
303 ARCH_DEFINES="" | |
304 case "$host" in | |
2018
58ea18909fe7
[svn] - MirBSD support from <bsiegert -at- gmx.de>
nenolod
parents:
2005
diff
changeset
|
305 *-*-openbsd* | *-*-netbsd* | *-*-mirbsd*) |
0 | 306 have_sun=yes |
307 if test "${is_elf}" = "no" | |
308 then | |
309 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) | |
310 fi | |
311 ;; | |
312 *-*-darwin*) | |
313 AC_DEFINE(SYMBOL_PREFIX, "_", [Define to symbol prefix, if any]) | |
314 ;; | |
315 *-hpux-*) | |
316 ARCH_DEFINES="-DHPUX" | |
317 ;; | |
318 *-*-solaris* | *-*-sunos*) | |
319 have_solaris=yes | |
320 ;; | |
321 esac | |
322 | |
323 arch_type=other | |
324 x86_asm=no | |
325 case "$host" in | |
326 i386-*-* | i486-*-* | i586-*-* | i686-*-* | i86pc-*-*) | |
327 arch_type=ix86 | |
328 case "$host" in | |
329 *-*-netbsd* | *-*openbsd*) | |
330 ;; | |
331 *) | |
332 ARCH_DEFINES="-DI386_ASSEM" | |
333 x86_asm=yes | |
334 ;; | |
335 esac | |
336 ;; | |
337 esac | |
338 | |
339 AC_SUBST(ARCH_DEFINES) | |
1518
0c5dc8ffcc42
[svn] - hook up paranormal -- client interface code doesn't exist yet though
nenolod
parents:
1503
diff
changeset
|
340 |
0c5dc8ffcc42
[svn] - hook up paranormal -- client interface code doesn't exist yet though
nenolod
parents:
1503
diff
changeset
|
341 dnl XXX delete ASAP -nenolod |
0 | 342 AM_CONDITIONAL(ARCH_X86, test "x$arch_type" = "xix86") |
343 AM_CONDITIONAL(USE_X86ASM, test "x$x86_asm" = xyes) | |
344 AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes) | |
345 AM_CONDITIONAL(HAVE_SUN, test "x$have_sun" = xyes) | |
346 | |
1425 | 347 plugindir="$libdir/audacious" |
0 | 348 AC_SUBST(plugindir) |
349 | |
350 if test "x$enable_one_plugin_dir" = "xyes"; then | |
351 pluginsubs="\\\"Plugins\\\"" | |
352 INPUT_PLUGIN_DIR=Plugins | |
353 OUTPUT_PLUGIN_DIR=Plugins | |
354 EFFECT_PLUGIN_DIR=Plugins | |
355 GENERAL_PLUGIN_DIR=Plugins | |
356 VISUALIZATION_PLUGIN_DIR=Plugins | |
1561 | 357 CONTAINER_PLUGIN_DIR=Plugins |
0 | 358 else |
1561 | 359 pluginsubs="\\\"Output\\\",\\\"Input\\\",\\\"Effect\\\",\\\"General\\\",\\\"Visualization\\\",\\\"Container\\\"" |
0 | 360 INPUT_PLUGIN_DIR=Input |
361 OUTPUT_PLUGIN_DIR=Output | |
362 EFFECT_PLUGIN_DIR=Effect | |
363 GENERAL_PLUGIN_DIR=General | |
364 VISUALIZATION_PLUGIN_DIR=Visualization | |
1561 | 365 CONTAINER_PLUGIN_DIR=Container |
0 | 366 fi |
367 | |
368 AC_SUBST(INPUT_PLUGIN_DIR) | |
369 AC_SUBST(OUTPUT_PLUGIN_DIR) | |
370 AC_SUBST(EFFECT_PLUGIN_DIR) | |
371 AC_SUBST(GENERAL_PLUGIN_DIR) | |
372 AC_SUBST(VISUALIZATION_PLUGIN_DIR) | |
1561 | 373 AC_SUBST(CONTAINER_PLUGIN_DIR) |
0 | 374 AC_SUBST(pluginsubs) |
375 | |
1421 | 376 dnl XXX Work around some autoconf bugs. |
1422 | 377 if test "$prefix" = "NONE"; then |
1421 | 378 prefix="${ac_default_prefix}" |
379 fi | |
380 | |
1425 | 381 if test -z "$datadir"; then |
382 datadir="${prefix}/share" | |
1418
0d6d938bc936
[svn] - work around a possible autoconf bug causing datadir to be blank
nenolod
parents:
1408
diff
changeset
|
383 fi |
0d6d938bc936
[svn] - work around a possible autoconf bug causing datadir to be blank
nenolod
parents:
1408
diff
changeset
|
384 |
1425 | 385 localedir="$datadir/locale" |
0 | 386 AC_SUBST(localedir) |
387 | |
388 BEEP_DEFINES="$CFLAGS -DDATA_DIR=\\\"$datadir/audacious\\\" -DPLUGIN_DIR=\\\"$plugindir\\\" -DPLUGINSUBS=$pluginsubs -DLOCALEDIR=\\\"$localedir\\\"" | |
389 CFLAGS="$CFLAGS $EXTRA_CFLAGS" | |
390 | |
391 if test "$enable_user_plugin_dir" = "no"; then | |
392 AC_DEFINE(DISABLE_USER_PLUGIN_DIR,, [Define to disable per user plugin directory]) | |
393 fi | |
394 | |
395 AC_SUBST(BEEP_DEFINES) | |
396 | |
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
|
397 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
|
398 [ --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
|
399 [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
|
400 |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
401 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
|
402 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
|
403 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
|
404 ]) |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
405 |
44ed31f63ee4
[svn] - add back a test for libxml2, that way we'll still use xspf as default if available
nenolod
parents:
1746
diff
changeset
|
406 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
|
407 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
|
408 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
|
409 |
0 | 410 AC_SUBST(beepdir) |
411 AC_SUBST(plugindir) | |
412 | |
413 AC_CONFIG_FILES([ | |
1656
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
414 audacious.pc |
2323 | 415 mk/rules.mk |
416 man/audtool.1 | |
417 man/audacious.1 | |
2313 | 418 src/audacious/audacious.desktop |
1656
d05836d18d42
[svn] Hook PulseAudio into the build system and clean it up a little.
chainsaw
parents:
1632
diff
changeset
|
419 po/Makefile.in |
0 | 420 ]) |
421 | |
422 AC_OUTPUT | |
423 | |
424 | |
425 echo | |
426 echo "Configuration:" | |
427 echo | |
428 echo " Install path: ${prefix}" | |
429 | |
430 if test "$BEEP_PATH" != "no"; then | |
38 | 431 echo " Current Audacious executable: $BEEP_PATH" |
0 | 432 fi |
433 | |
2359
75598f596c92
[svn] - support for libmcs (pass --enable-mcs to configure)
nenolod
parents:
2325
diff
changeset
|
434 echo " Legacy configuration path: \$HOME/$rc_path" |
0 | 435 echo |
436 echo " Use one plugin dir: $enable_one_plugin_dir" | |
437 echo " Allow user plugin dir: $enable_user_plugin_dir" | |
2540 | 438 echo |
439 echo " Sample rate upconversion: $enable_samplerate" | |
0 | 440 echo |
441 | |
442 if test "$beep_cv_lib_xlibs_threadsafe" = "no"; then | |
32 | 443 echo "Note: You need to have thread-safe xlibs to use Audacious." |
0 | 444 echo "If you are using libc5 thread aware Xlibs just skip this." |
445 echo "" | |
446 echo "If you don't have those libs and you are on a libc5 system get them at:" | |
447 echo "ftp://ftp.dent.med.uni-muenchen.de/pub/wmglo/" | |
448 fi | |
449 | |
450 if test "$BEEP_PATH" != "no" && test "$prefix/bin/audacious" != "$BEEP_PATH" ; then | |
451 echo "" | |
452 echo "Note: Configure has discovered that you already have Audacious installed" | |
453 echo "and it does not match with the given --prefix. You have Audacious installed " | |
454 echo "in $(dirname $BEEP_PATH) and you chose $prefix/bin." | |
455 echo | |
456 echo "If you don't want two copies of Audacious installed, rerun configure with" | |
457 echo "the --prefix option set to the location of the old Audacious, or uninstall" | |
458 echo "the old Audacious." | |
459 fi |