source: configure.ac @ 32c0133

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

disable -Werror by default, rename gcc warning options to warnings and errorfail
disable -Werror by default, rename gcc warning options to warnings and errorfail

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