1 | dnl Process this file with autoconf to produce a configure script |
---|
2 | |
---|
3 | dnl Init autoconf |
---|
4 | AC_INIT(src/aubio.h) |
---|
5 | |
---|
6 | dnl Package name and version |
---|
7 | PACKAGE=aubio |
---|
8 | . $srcdir/VERSION |
---|
9 | AUBIO_VERSION=${AUBIO_MAJOR_VERSION}.${AUBIO_MINOR_VERSION}.${AUBIO_PATCH_VERSION}${AUBIO_VERSION_STATUS} |
---|
10 | VERSION=${AUBIO_VERSION} |
---|
11 | |
---|
12 | dnl Shared library version |
---|
13 | SHARED_VERSION_INFO=${LIBAUBIO_LT_CUR}:${LIBAUBIO_LT_REV}:${LIBAUBIO_LT_AGE} |
---|
14 | AC_SUBST(SHARED_VERSION_INFO) |
---|
15 | |
---|
16 | dnl Init automake |
---|
17 | AM_INIT_AUTOMAKE(${PACKAGE}, ${VERSION}) |
---|
18 | |
---|
19 | dnl Maintainer mode |
---|
20 | AM_MAINTAINER_MODE |
---|
21 | |
---|
22 | dnl Guess the host |
---|
23 | AC_CANONICAL_HOST |
---|
24 | |
---|
25 | dnl Check for programs |
---|
26 | AC_PROG_CC |
---|
27 | AM_PROG_CC_C_O dnl compiling with per-target flag |
---|
28 | if test "$ac_cv_prog_cc" = "no" ; then |
---|
29 | AC_MSG_ERROR([*** No C compiler found !]) |
---|
30 | fi |
---|
31 | AC_PROG_INSTALL |
---|
32 | |
---|
33 | AUBIO_CFLAGS= |
---|
34 | |
---|
35 | dnl Enable debugging (no) |
---|
36 | AC_ARG_ENABLE(debug, |
---|
37 | AC_HELP_STRING([--enable-debug],[compile in debug mode [[default=no]]]), |
---|
38 | with_debug="yes", |
---|
39 | with_debug="no") |
---|
40 | if test "$with_debug" = "yes" |
---|
41 | then |
---|
42 | AC_DEFINE(DEBUG,1,[Define to enable debug]) |
---|
43 | AUBIO_CFLAGS="$AUBIO_CFLAGS -g" |
---|
44 | fi |
---|
45 | |
---|
46 | dnl Enable full warnings (yes) |
---|
47 | AC_ARG_ENABLE(warnings, |
---|
48 | AC_HELP_STRING([--enable-warnings],[compile with all gcc warnings [[default=yes]]]), |
---|
49 | with_warnme="no", |
---|
50 | with_warnme="yes") |
---|
51 | if test "$with_warnme" = "yes" |
---|
52 | then |
---|
53 | dnl Check for -Wextra support to allow compilation on gcc <= 3.4 |
---|
54 | AC_CACHE_CHECK([for -Wextra option to $CC], ac_cv_cc_wextra, |
---|
55 | [old_CFLAGS="$CFLAGS" |
---|
56 | CFLAGS="$CFLAGS -Wextra" |
---|
57 | AC_COMPILE_IFELSE([void foo (void) {}], |
---|
58 | ac_cv_cc_wextra=yes, ac_cv_cc_wextra=no) |
---|
59 | CFLAGS="$old_CFLAGS" |
---|
60 | ]) |
---|
61 | if test "$ac_cv_cc_wextra" = "yes" |
---|
62 | then |
---|
63 | AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall -Wextra" |
---|
64 | else |
---|
65 | AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall" |
---|
66 | fi |
---|
67 | fi |
---|
68 | |
---|
69 | dnl fail on compilation warnings |
---|
70 | AC_ARG_ENABLE(errorfail, |
---|
71 | AC_HELP_STRING([--enable-errorfail],[fail on compilation warnings [[default=no]]]), |
---|
72 | AUBIO_CFLAGS="$AUBIO_CFLAGS -Werror -Wmissing-prototypes -Wmissing-declarations -Wno-unused-parameter", |
---|
73 | with_errorfail="no") |
---|
74 | |
---|
75 | dnl add gcov/lcov profiling and coverage flags |
---|
76 | AC_ARG_ENABLE(lcov, |
---|
77 | AC_HELP_STRING([--enable-lcov],[compile with gcov/lcov profiling flags [[default=no]]]), |
---|
78 | AUBIO_CFLAGS="$AUBIO_CFLAGS -fprofile-arcs -ftest-coverage", |
---|
79 | with_lcov="no") |
---|
80 | |
---|
81 | dnl Check for libtool |
---|
82 | AC_LIBTOOL_DLOPEN |
---|
83 | dnl AC_DISABLE_STATIC |
---|
84 | AC_PROG_LIBTOOL |
---|
85 | |
---|
86 | AC_CONFIG_HEADERS(src/config.h) |
---|
87 | AC_CONFIG_FILES(aubio.pc) |
---|
88 | |
---|
89 | AM_CONDITIONAL(MINGW, false) |
---|
90 | AM_CONDITIONAL(DARWIN, false) |
---|
91 | case "${build_os}" in |
---|
92 | *mingw* | *cygwin*) |
---|
93 | mingw32_support="yes" |
---|
94 | AC_CHECK_HEADER(windows.h) |
---|
95 | AM_CONDITIONAL(MINGW, true) |
---|
96 | LDFLAGS="$LDFLAGS -no-undefined" |
---|
97 | ;; |
---|
98 | *darwin* | *rhapsody* | *macosx*) |
---|
99 | dnl on macosx, cosf went to -lmx |
---|
100 | LDFLAGS="$LDFLAGS -lmx" |
---|
101 | dnl as long double doesn't sit well with -Wall -Werror |
---|
102 | AUBIO_CFLAGS="$AUBIO_CFLAGS -Wno-long-double" |
---|
103 | dnl Workaround darwin autoconf bug |
---|
104 | CPPFLAGS="$CPPFLAGS -I${prefix}/include" |
---|
105 | AC_ISC_POSIX |
---|
106 | AM_CONDITIONAL(DARWIN, true) |
---|
107 | ;; |
---|
108 | *) |
---|
109 | AC_ISC_POSIX |
---|
110 | ;; |
---|
111 | esac |
---|
112 | |
---|
113 | dnl Check for required libraries |
---|
114 | AC_CHECK_LIB(pthread, pthread_create) |
---|
115 | |
---|
116 | dnl Check for header files |
---|
117 | AC_HEADER_STDC |
---|
118 | AC_CHECK_HEADERS([string.h stdlib.h stdio.h math.h errno.h stdarg.h unistd.h signal.h],,) |
---|
119 | AC_CHECK_HEADERS(fftw3.h,,AC_MSG_ERROR([Ouch! missing fftw3.h header])) |
---|
120 | AC_ARG_ENABLE(complex, |
---|
121 | AC_HELP_STRING([--enable-complex],[compile with complex.h [[default=auto]]]), |
---|
122 | [with_complex=$enableval], |
---|
123 | with_complex="yes") |
---|
124 | if test "$with_complex" = "yes"; then |
---|
125 | AC_CHECK_HEADERS(complex.h,,AC_MSG_WARN([Ouch! missing complex.h header])) |
---|
126 | fi |
---|
127 | |
---|
128 | dnl Check for __VAR_ARGS__ support |
---|
129 | AC_CACHE_CHECK(for C99 __VA_ARGS__ macro, |
---|
130 | ac_cv_varargs_macros, |
---|
131 | AC_TRY_COMPILE([ |
---|
132 | #include <stdio.h> |
---|
133 | #define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__) |
---|
134 | ], |
---|
135 | [ |
---|
136 | AUBIO_ERR("%s\n", "ERR"); |
---|
137 | ], |
---|
138 | ac_cv_varargs_macros=yes, |
---|
139 | ac_cv_varargs_macros=no) |
---|
140 | ) |
---|
141 | if test "$ac_cv_varargs_macros" = "yes"; then |
---|
142 | AC_DEFINE(HAVE_C99_VARARGS_MACROS, 1, |
---|
143 | [Defined when c99 style varargs macros are supported]) |
---|
144 | fi |
---|
145 | |
---|
146 | dnl Check for pkg-config |
---|
147 | AC_PATH_PROG(PKG_CONFIG,pkg-config,no) |
---|
148 | |
---|
149 | PKG_CHECK_MODULES(SNDLIB, sndfile >= 1.0.4, SNDLIB_SUPPORT=1) |
---|
150 | PKG_CHECK_MODULES(SAMPLERATE, samplerate >= 0.0.15, SAMPLERATE_SUPPORT=1) |
---|
151 | |
---|
152 | if test "${SNDLIB_SUPPORT}" = "1"; then |
---|
153 | AC_DEFINE(SNDLIB_SUPPORT,1,[Define to enable libsndfile support]) |
---|
154 | fi |
---|
155 | |
---|
156 | dnl Check for fftw3 (required) |
---|
157 | AC_ARG_ENABLE(fftw3f, |
---|
158 | AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]), |
---|
159 | [with_fftw3f=$enableval], |
---|
160 | with_fftw3f="yes") |
---|
161 | if test "$with_fftw3f" = "yes"; then |
---|
162 | PKG_CHECK_MODULES(FFTWLIB, fftw3f >= 3.0.0, FFTW3F_SUPPORT=1, FFTW3F_SUPPORT=0) |
---|
163 | else |
---|
164 | PKG_CHECK_MODULES(FFTWLIB, fftw3 >= 3.0.0, FFTW3_SUPPORT=1) |
---|
165 | fi |
---|
166 | if test "${FFTW3F_SUPPORT}" = "0"; then |
---|
167 | PKG_CHECK_MODULES(FFTWLIB, fftw3 >= 3.0.0, FFTW3_SUPPORT=1) |
---|
168 | fi |
---|
169 | if test "${FFTW3_SUPPORT}" = "1"; then |
---|
170 | AC_DEFINE(FFTW3_SUPPORT,1,[Define to enable fftw3 support]) |
---|
171 | fi |
---|
172 | if test "${FFTW3F_SUPPORT}" = "1"; then |
---|
173 | AC_DEFINE(FFTW3F_SUPPORT,1,[Define to enable fftw3f support]) |
---|
174 | fi |
---|
175 | |
---|
176 | dnl Enable jack support (auto) |
---|
177 | AC_ARG_ENABLE(jack, |
---|
178 | AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]), |
---|
179 | [with_jack=$enableval], |
---|
180 | with_jack="yes") |
---|
181 | if test "$with_jack" = "yes" |
---|
182 | then |
---|
183 | PKG_CHECK_MODULES(JACK, jack >= 0.15.0, JACK_SUPPORT=1, JACK_SUPPORT=0) |
---|
184 | if test "${JACK_SUPPORT}" = "1"; then |
---|
185 | AC_DEFINE(JACK_SUPPORT,1,[Define to enable jack support]) |
---|
186 | fi |
---|
187 | fi |
---|
188 | |
---|
189 | dnl Enable alsa support (auto) |
---|
190 | AC_ARG_ENABLE(alsa, |
---|
191 | AC_HELP_STRING([--enable-alsa],[compile with alsa [[default=auto]]]), |
---|
192 | [with_alsa=$enableval], |
---|
193 | with_alsa="yes") |
---|
194 | if test "$with_alsa" = "yes" |
---|
195 | then |
---|
196 | if test "$with_jack" = "yes" |
---|
197 | then |
---|
198 | PKG_CHECK_MODULES(ALSA, alsa >= 0.0.9, ALSA_SUPPORT=1, ALSA_SUPPORT=0) |
---|
199 | if test "${ALSA_SUPPORT}" = "1"; then |
---|
200 | AC_DEFINE(ALSA_SUPPORT,1,[Define to enable alsa support]) |
---|
201 | fi |
---|
202 | else |
---|
203 | AC_MSG_WARN([Disabling alsa as jack was not found]) |
---|
204 | fi |
---|
205 | fi |
---|
206 | |
---|
207 | dnl Enable lash support |
---|
208 | AC_ARG_ENABLE(lash, |
---|
209 | AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]), |
---|
210 | [with_lash=$enableval], |
---|
211 | with_lash="yes") |
---|
212 | if test "$with_lash" = "yes" |
---|
213 | then |
---|
214 | PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.5.0, LASH_SUPPORT=1, LASH_SUPPORT=0) |
---|
215 | if test "${LASH_SUPPORT}" = "1"; then |
---|
216 | LASH_CFLAGS+="-DLASH_SUPPORT" |
---|
217 | fi |
---|
218 | fi |
---|
219 | |
---|
220 | dnl Enable unit tests |
---|
221 | AC_ARG_ENABLE(testprogs, |
---|
222 | AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=no]]]), |
---|
223 | [with_testprogs=$enableval], |
---|
224 | with_testprogs="no") |
---|
225 | AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no") |
---|
226 | |
---|
227 | AC_SUBST(AUBIO_CFLAGS) |
---|
228 | |
---|
229 | dnl Check for swig and python |
---|
230 | dnl should check for swig version and python headers |
---|
231 | AC_PATH_PROG(SWIG,swig,no) |
---|
232 | AM_CONDITIONAL(SWIGFOUND, test "${SWIG}" != "no") |
---|
233 | AM_PATH_PYTHON |
---|
234 | AM_CONDITIONAL(PYTHONFOUND, test "${PYTHON}" != "no") |
---|
235 | |
---|
236 | dnl Check for docbook-to-man |
---|
237 | AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no) |
---|
238 | AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no") |
---|
239 | |
---|
240 | dnl Check for Puredata |
---|
241 | AC_CHECK_HEADER(m_pd.h,PUREDATA=y,AC_MSG_WARN([Puredata header not found.])) |
---|
242 | AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y") |
---|
243 | |
---|
244 | dnl Create Makefiles |
---|
245 | AC_OUTPUT([ |
---|
246 | Makefile |
---|
247 | src/Makefile |
---|
248 | ext/Makefile |
---|
249 | examples/Makefile |
---|
250 | tests/Makefile |
---|
251 | tests/src/Makefile |
---|
252 | sounds/Makefile |
---|
253 | swig/Makefile |
---|
254 | python/Makefile |
---|
255 | python/aubio/Makefile |
---|
256 | plugins/Makefile |
---|
257 | plugins/audacity/Makefile |
---|
258 | plugins/audacity/plug-ins/Makefile |
---|
259 | plugins/wavesurfer/Makefile |
---|
260 | plugins/puredata/Makefile |
---|
261 | doc/Makefile |
---|
262 | ]) |
---|
263 | |
---|
264 | dnl Print summary |
---|
265 | echo |
---|
266 | echo "**************************************************************" |
---|
267 | echo "Summary:" |
---|
268 | if test "${FFTW3F_SUPPORT}" = "1"; then |
---|
269 | echo "Fftw3: yes (using fftw3f)" |
---|
270 | else |
---|
271 | if test "${FFTW3_SUPPORT}" = "1"; then |
---|
272 | echo "Fftw3: yes (not using fftw3f)" |
---|
273 | else |
---|
274 | echo "Fftw3: no (that should not happen)" |
---|
275 | fi |
---|
276 | fi |
---|
277 | if test "${SNDLIB_SUPPORT}" = "1"; then |
---|
278 | echo "Libsndfile: yes" |
---|
279 | else |
---|
280 | echo "Libsndfile: no" |
---|
281 | fi |
---|
282 | if test "${SAMPLERATE_SUPPORT}" = "1"; then |
---|
283 | echo "Libsamplerate: yes" |
---|
284 | else |
---|
285 | echo "Libsamplerate: no" |
---|
286 | fi |
---|
287 | if test "${JACK_SUPPORT}" = "1"; then |
---|
288 | echo "JACK: yes" |
---|
289 | else |
---|
290 | echo "JACK: no" |
---|
291 | fi |
---|
292 | if test "${ALSA_SUPPORT}" = "1"; then |
---|
293 | echo "ALSA midi: yes" |
---|
294 | else |
---|
295 | echo "ALSA midi: no" |
---|
296 | fi |
---|
297 | if test "${LASH_SUPPORT}" = "1"; then |
---|
298 | echo "Lash: yes" |
---|
299 | else |
---|
300 | echo "Lash: no" |
---|
301 | fi |
---|
302 | if test "${PUREDATA}" = "y"; then |
---|
303 | echo "PureData: yes" |
---|
304 | else |
---|
305 | echo "PureData: no" |
---|
306 | fi |
---|
307 | echo "**************************************************************" |
---|
308 | echo Configuration completed successfully. Type \'make\' to build ${PACKAGE} |
---|