source: configure.ac @ fed9433

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since fed9433 was fcc3fd2, checked in by Paul Brossier <piem@piem.org>, 16 years ago

Makefile.am, configure.ac: go down into java and tests, make java compilation somewhat conditional (needs improvements)

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