source: configure.ac @ cd60b5c

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

configure.ac: add --enable-sndfile

  • Property mode set to 100644
File size: 8.5 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
[e24b5f3]19dnl Enable silent rules, use with make V=0
[18738ad]20dnl AM_SILENT_RULES
[e24b5f3]21
[16109b3]22dnl Maintainer mode
[5215c01]23AM_MAINTAINER_MODE
[96fb8ad]24
[16109b3]25dnl Guess the host
26AC_CANONICAL_HOST
[96fb8ad]27
[ee0a1f3]28dnl Check for programs
29AC_PROG_CC
[00c522b]30AM_PROG_CC_C_O dnl compiling with per-target flag
[ee0a1f3]31if test "$ac_cv_prog_cc" = "no" ; then
32   AC_MSG_ERROR([*** No C compiler found !])
33fi
34AC_PROG_INSTALL
35
[17db1cd]36AUBIO_CFLAGS=
37
[5ddcdf2]38AC_CHECK_LIB(m, floorf)
39AUBIO_LIBS="-lm"
40
[66760af]41dnl Enable double precision (no)
42AC_ARG_ENABLE(double,
43  AC_HELP_STRING([--enable-double],[compile in double precision [[default=no]]]),
44  with_double_precision="yes",
45  with_double_precision="no")
46if test "$with_double_precision" = "yes"
47then
48  AC_DEFINE(HAVE_AUBIO_DOUBLE,1,[Define to enable double precision])
49fi
50
[16109b3]51dnl Enable debugging (no)
[96fb8ad]52AC_ARG_ENABLE(debug,
[ec0d43c]53  AC_HELP_STRING([--enable-debug],[compile in debug mode [[default=no]]]),
[96fb8ad]54  with_debug="yes",
55  with_debug="no")
56if test "$with_debug" = "yes"
57then
58  AC_DEFINE(DEBUG,1,[Define to enable debug])
[098bd92]59  AUBIO_CFLAGS="$AUBIO_CFLAGS -g"
[96fb8ad]60fi
61
[16109b3]62dnl Enable full warnings (yes)
[f43867f]63AC_ARG_ENABLE(warnings,
[ec0d43c]64  AC_HELP_STRING([--enable-warnings],[compile with all gcc warnings [[default=yes]]]),
[96fb8ad]65  with_warnme="no",
66  with_warnme="yes")
67if test "$with_warnme" = "yes"
68then
[ee0a1f3]69  dnl Check for -Wextra support to allow compilation on gcc <= 3.4
70  AC_CACHE_CHECK([for -Wextra option to $CC], ac_cv_cc_wextra,
71  [old_CFLAGS="$CFLAGS"
72  CFLAGS="$CFLAGS -Wextra"
73  AC_COMPILE_IFELSE([void foo (void) {}],
74          ac_cv_cc_wextra=yes, ac_cv_cc_wextra=no)
[17db1cd]75  CFLAGS="$old_CFLAGS"
[ee0a1f3]76  ])
77  if test "$ac_cv_cc_wextra" = "yes"
78  then
[17db1cd]79    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall -Wextra"
[ee0a1f3]80  else
[17db1cd]81    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall"
[ee0a1f3]82  fi
[96fb8ad]83fi
84
[ec0d43c]85dnl fail on compilation warnings
[f43867f]86AC_ARG_ENABLE(errorfail,
[ec0d43c]87  AC_HELP_STRING([--enable-errorfail],[fail on compilation warnings [[default=no]]]),
[f43867f]88  AUBIO_CFLAGS="$AUBIO_CFLAGS -Werror -Wmissing-prototypes -Wmissing-declarations -Wno-unused-parameter",
[ec0d43c]89  with_errorfail="no")
90
91dnl add gcov/lcov profiling and coverage flags
92AC_ARG_ENABLE(lcov,
93  AC_HELP_STRING([--enable-lcov],[compile with gcov/lcov profiling flags [[default=no]]]),
94  AUBIO_CFLAGS="$AUBIO_CFLAGS -fprofile-arcs -ftest-coverage",
95  with_lcov="no")
[96fb8ad]96
97dnl Check for libtool
98AC_LIBTOOL_DLOPEN
99dnl AC_DISABLE_STATIC
[fce58d9e]100dnl allow cross compiling
101AC_LIBTOOL_WIN32_DLL
[96fb8ad]102AC_PROG_LIBTOOL
103
104AC_CONFIG_HEADERS(src/config.h)
105AC_CONFIG_FILES(aubio.pc)
106
[be929a5]107AM_CONDITIONAL(MINGW, false)
108AM_CONDITIONAL(DARWIN, false)
[651cac8]109case "${host}" in
[cbea730]110*mingw* | *cygwin*)
[96fb8ad]111  mingw32_support="yes"
112  AC_CHECK_HEADER(windows.h)
[be929a5]113  AM_CONDITIONAL(MINGW, true)
[cbea730]114  LDFLAGS="$LDFLAGS -no-undefined"
[96fb8ad]115  ;;
[cbea730]116*darwin* | *rhapsody* | *macosx*)
[d17f63e]117  AC_ISC_POSIX
[be929a5]118  AM_CONDITIONAL(DARWIN, true)
[d17f63e]119  ;;
[96fb8ad]120*)
121  AC_ISC_POSIX
122  ;;
123esac
124
[3050cb8]125dnl Check for required libraries
[96fb8ad]126AC_CHECK_LIB(pthread, pthread_create)
127
128dnl Check for header files
[10a5413]129AC_CHECK_HEADERS([string.h stdlib.h stdio.h math.h limits.h errno.h stdarg.h unistd.h signal.h],,)
[237f632]130AC_ARG_ENABLE(complex,
131  AC_HELP_STRING([--enable-complex],[compile with complex.h [[default=auto]]]),
132  [with_complex=$enableval],
[62b8ab2]133  with_complex="no")
[237f632]134if test "$with_complex" = "yes"; then
135  AC_CHECK_HEADERS(complex.h,,AC_MSG_WARN([Ouch! missing complex.h header]))
136fi
[96fb8ad]137
[16109b3]138dnl Check for __VAR_ARGS__ support
[5215c01]139AC_CACHE_CHECK(for C99 __VA_ARGS__ macro,
140    ac_cv_varargs_macros,
141AC_TRY_COMPILE([
142  #include <stdio.h>
143  #define AUBIO_ERR(...)                       fprintf(stderr, __VA_ARGS__)
144],
145[
146  AUBIO_ERR("%s\n", "ERR");
147],
148        ac_cv_varargs_macros=yes,
149        ac_cv_varargs_macros=no)
150)
151if test "$ac_cv_varargs_macros" = "yes"; then
152    AC_DEFINE(HAVE_C99_VARARGS_MACROS, 1,
153            [Defined when c99 style varargs macros are supported])
154fi
155
[9906b3f]156AC_ARG_ENABLE(sndfile,
157  AC_HELP_STRING([--enable-sndfile],[compile with sndfile [[default=auto]]]),
158  [with_sndfile=$enableval],
159  with_sndfile="yes")
160if test "$with_sndfile" = "yes"; then
161  PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.4, HAVE_SNDFILE=1, HAVE_SNDFILE=0)
162  if test "${HAVE_SNDFILE}" = "1"; then
163    AC_DEFINE(HAVE_SNDFILE,1,[Define to enable libsndfile support])
164  fi
[588ee77]165fi
[96fb8ad]166
[588ee77]167dnl Enable samplerate support (auto)
168AC_ARG_ENABLE(samplerate,
169  AC_HELP_STRING([--enable-samplerate],[compile with samplerate [[default=auto]]]),
170  [with_samplerate=$enableval],
171  with_samplerate="yes")
172if test "$with_samplerate" = "yes"; then
[740f06b]173  PKG_CHECK_MODULES(SAMPLERATE, samplerate  >= 0.0.15,  HAVE_SAMPLERATE=1,
174                    HAVE_SAMPLERATE=0)
[588ee77]175  if test "${HAVE_SAMPLERATE}" = "1"; then
176    AC_DEFINE(HAVE_SAMPLERATE,1,[Define to enable libsamplerate support])
177  fi
[96fb8ad]178fi
179
[16109b3]180dnl Check for fftw3 (required)
[240e416]181dnl if we compile in double precsion, default to fftw3, else fftw3f
[729a3c0]182
183AC_ARG_ENABLE(fftw3,
184  AC_HELP_STRING([--enable-fftw3],[compile with fftw3 [[default=auto]]]),
185  [with_fftw3=$enableval],
186  with_fftw3="yes")
187
[240e416]188if test "$with_double_precision" = "yes"; then
189    default_fftw3f="no"
190else
[729a3c0]191    default_fftw3f=$with_fftw3
[240e416]192fi
[729a3c0]193
[96fb8ad]194AC_ARG_ENABLE(fftw3f,
[dc27a81]195  AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
196  [with_fftw3f=$enableval],
[240e416]197  [with_fftw3f=$default_fftw3f])
[729a3c0]198
199# check if we have fftw3f
[96fb8ad]200if test "$with_fftw3f" = "yes"; then
[b511fa9]201  PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     HAVE_FFTW3F=1, HAVE_FFTW3F=0)
[e50b695]202else
[729a3c0]203# check if we have fftw3
204if test "$with_fftw3" = "yes"; then
205  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1, HAVE_FFTW3=0)
[dc27a81]206fi
[e50b695]207fi
[729a3c0]208
[b511fa9]209if test "${HAVE_FFTW3}" = "1"; then
210  AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
[96fb8ad]211fi
[b511fa9]212if test "${HAVE_FFTW3F}" = "1"; then
[729a3c0]213  AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
[b511fa9]214  AC_DEFINE(HAVE_FFTW3F,1,[Define to enable fftw3f support])
[96fb8ad]215fi
216
[16109b3]217dnl Enable jack support (auto)
[96fb8ad]218AC_ARG_ENABLE(jack,
[dc27a81]219  AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
220  [with_jack=$enableval],
221  with_jack="yes")
[96fb8ad]222if test "$with_jack" = "yes"
223then
[b511fa9]224  PKG_CHECK_MODULES(JACK,       jack  >= 0.15.0,     HAVE_JACK=1, HAVE_JACK=0)
225  if test "${HAVE_JACK}" = "1"; then
226    AC_DEFINE(HAVE_JACK,1,[Define to enable jack support])
[16109b3]227  fi
[96fb8ad]228fi
229
[a814968]230dnl Enable lash support
231AC_ARG_ENABLE(lash,
232  AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]),
233  [with_lash=$enableval],
234  with_lash="yes")
235if test "$with_lash" = "yes"
[96fb8ad]236then
[b511fa9]237  PKG_CHECK_MODULES(LASH,   lash-1.0 >= 0.5.0,   HAVE_LASH=1, HAVE_LASH=0)
238  if test "${HAVE_LASH}" = "1"; then
[883deec]239    AC_DEFINE(HAVE_LASH,1,[Define to enable lash support])
[16109b3]240  fi
[96fb8ad]241fi
242 
[16109b3]243dnl Enable unit tests
[5215c01]244AC_ARG_ENABLE(testprogs,
245  AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=no]]]),
246  [with_testprogs=$enableval],
247  with_testprogs="no")
248AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no")
249
[5a405dd]250AC_SUBST(AUBIO_CFLAGS)
[5ddcdf2]251AC_SUBST(AUBIO_LIBS)
[5a405dd]252
[16109b3]253dnl Check for swig and python
[3050cb8]254dnl should check for swig version and python headers
255AC_PATH_PROG(SWIG,swig,no)
256AM_CONDITIONAL(SWIGFOUND, test "${SWIG}" != "no")
257AM_PATH_PYTHON
258AM_CONDITIONAL(PYTHONFOUND, test "${PYTHON}" != "no")
[d09cad2]259
[16109b3]260dnl Check for docbook-to-man
[3050cb8]261AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
262AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
263
[16109b3]264dnl Create Makefiles
[96fb8ad]265AC_OUTPUT([
[16109b3]266    Makefile
267    src/Makefile
268    examples/Makefile
[de2a8af]269    tests/Makefile
270    tests/src/Makefile
[16109b3]271    sounds/Makefile
272    swig/Makefile
273    python/Makefile
274    python/aubio/Makefile
275    doc/Makefile
276  ])
277
278dnl Print summary
[96fb8ad]279echo
280echo "**************************************************************"
281echo "Summary:"
[b511fa9]282if test "${HAVE_FFTW3F}" = "1"; then
[729a3c0]283  echo "FFT:                     using fftw3f"
[96fb8ad]284else
[b511fa9]285if test "${HAVE_FFTW3}" = "1"; then
[729a3c0]286  echo "Fft:                     using fftw3"
[96fb8ad]287else
[729a3c0]288  echo "Fft:                     using ooura"
[96fb8ad]289fi
290fi
[588ee77]291if test "${HAVE_SNDFILE}" = "1"; then
[96fb8ad]292  echo "Libsndfile:              yes"
293else
294  echo "Libsndfile:              no"
295fi
[b511fa9]296if test "${HAVE_SAMPLERATE}" = "1"; then
[96fb8ad]297  echo "Libsamplerate:           yes"
298else
299  echo "Libsamplerate:           no"
300fi
[b511fa9]301if test "${HAVE_JACK}" = "1"; then
[96fb8ad]302  echo "JACK:                    yes"
303else
304  echo "JACK:                    no"
305fi
[b511fa9]306if test "${HAVE_LASH}" = "1"; then
[a814968]307  echo "Lash:                    yes"
308else
309  echo "Lash:                    no"
310fi
[96fb8ad]311echo "**************************************************************"
312echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}
Note: See TracBrowser for help on using the repository browser.