source: configure.ac @ 4435ea6e

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

configure.ac: add --enable-sndfile

  • Property mode set to 100644
File size: 8.5 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 Enable silent rules, use with make V=0
20dnl AM_SILENT_RULES
21
22dnl Maintainer mode
23AM_MAINTAINER_MODE
24
25dnl Guess the host
26AC_CANONICAL_HOST
27
28dnl Check for programs
29AC_PROG_CC
30AM_PROG_CC_C_O dnl compiling with per-target flag
31if test "$ac_cv_prog_cc" = "no" ; then
32   AC_MSG_ERROR([*** No C compiler found !])
33fi
34AC_PROG_INSTALL
35
36AUBIO_CFLAGS=
37
38AC_CHECK_LIB(m, floorf)
39AUBIO_LIBS="-lm"
40
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
51dnl Enable debugging (no)
52AC_ARG_ENABLE(debug,
53  AC_HELP_STRING([--enable-debug],[compile in debug mode [[default=no]]]),
54  with_debug="yes",
55  with_debug="no")
56if test "$with_debug" = "yes"
57then
58  AC_DEFINE(DEBUG,1,[Define to enable debug])
59  AUBIO_CFLAGS="$AUBIO_CFLAGS -g"
60fi
61
62dnl Enable full warnings (yes)
63AC_ARG_ENABLE(warnings,
64  AC_HELP_STRING([--enable-warnings],[compile with all gcc warnings [[default=yes]]]),
65  with_warnme="no",
66  with_warnme="yes")
67if test "$with_warnme" = "yes"
68then
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)
75  CFLAGS="$old_CFLAGS"
76  ])
77  if test "$ac_cv_cc_wextra" = "yes"
78  then
79    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall -Wextra"
80  else
81    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall"
82  fi
83fi
84
85dnl fail on compilation warnings
86AC_ARG_ENABLE(errorfail,
87  AC_HELP_STRING([--enable-errorfail],[fail on compilation warnings [[default=no]]]),
88  AUBIO_CFLAGS="$AUBIO_CFLAGS -Werror -Wmissing-prototypes -Wmissing-declarations -Wno-unused-parameter",
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")
96
97dnl Check for libtool
98AC_LIBTOOL_DLOPEN
99dnl AC_DISABLE_STATIC
100dnl allow cross compiling
101AC_LIBTOOL_WIN32_DLL
102AC_PROG_LIBTOOL
103
104AC_CONFIG_HEADERS(src/config.h)
105AC_CONFIG_FILES(aubio.pc)
106
107AM_CONDITIONAL(MINGW, false)
108AM_CONDITIONAL(DARWIN, false)
109case "${host}" in
110*mingw* | *cygwin*)
111  mingw32_support="yes"
112  AC_CHECK_HEADER(windows.h)
113  AM_CONDITIONAL(MINGW, true)
114  LDFLAGS="$LDFLAGS -no-undefined"
115  ;;
116*darwin* | *rhapsody* | *macosx*)
117  AC_ISC_POSIX
118  AM_CONDITIONAL(DARWIN, true)
119  ;;
120*)
121  AC_ISC_POSIX
122  ;;
123esac
124
125dnl Check for required libraries
126AC_CHECK_LIB(pthread, pthread_create)
127
128dnl Check for header files
129AC_CHECK_HEADERS([string.h stdlib.h stdio.h math.h limits.h errno.h stdarg.h unistd.h signal.h],,)
130AC_ARG_ENABLE(complex,
131  AC_HELP_STRING([--enable-complex],[compile with complex.h [[default=auto]]]),
132  [with_complex=$enableval],
133  with_complex="no")
134if test "$with_complex" = "yes"; then
135  AC_CHECK_HEADERS(complex.h,,AC_MSG_WARN([Ouch! missing complex.h header]))
136fi
137
138dnl Check for __VAR_ARGS__ support
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
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
165fi
166
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
173  PKG_CHECK_MODULES(SAMPLERATE, samplerate  >= 0.0.15,  HAVE_SAMPLERATE=1,
174                    HAVE_SAMPLERATE=0)
175  if test "${HAVE_SAMPLERATE}" = "1"; then
176    AC_DEFINE(HAVE_SAMPLERATE,1,[Define to enable libsamplerate support])
177  fi
178fi
179
180dnl Check for fftw3 (required)
181dnl if we compile in double precsion, default to fftw3, else fftw3f
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
188if test "$with_double_precision" = "yes"; then
189    default_fftw3f="no"
190else
191    default_fftw3f=$with_fftw3
192fi
193
194AC_ARG_ENABLE(fftw3f,
195  AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
196  [with_fftw3f=$enableval],
197  [with_fftw3f=$default_fftw3f])
198
199# check if we have fftw3f
200if test "$with_fftw3f" = "yes"; then
201  PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     HAVE_FFTW3F=1, HAVE_FFTW3F=0)
202else
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)
206fi
207fi
208
209if test "${HAVE_FFTW3}" = "1"; then
210  AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
211fi
212if test "${HAVE_FFTW3F}" = "1"; then
213  AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
214  AC_DEFINE(HAVE_FFTW3F,1,[Define to enable fftw3f support])
215fi
216
217dnl Enable jack support (auto)
218AC_ARG_ENABLE(jack,
219  AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
220  [with_jack=$enableval],
221  with_jack="yes")
222if test "$with_jack" = "yes"
223then
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])
227  fi
228fi
229
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"
236then
237  PKG_CHECK_MODULES(LASH,   lash-1.0 >= 0.5.0,   HAVE_LASH=1, HAVE_LASH=0)
238  if test "${HAVE_LASH}" = "1"; then
239    AC_DEFINE(HAVE_LASH,1,[Define to enable lash support])
240  fi
241fi
242 
243dnl Enable unit tests
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
250AC_SUBST(AUBIO_CFLAGS)
251AC_SUBST(AUBIO_LIBS)
252
253dnl Check for swig and python
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")
259
260dnl Check for docbook-to-man
261AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
262AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
263
264dnl Create Makefiles
265AC_OUTPUT([
266    Makefile
267    src/Makefile
268    examples/Makefile
269    tests/Makefile
270    tests/src/Makefile
271    sounds/Makefile
272    swig/Makefile
273    python/Makefile
274    python/aubio/Makefile
275    doc/Makefile
276  ])
277
278dnl Print summary
279echo
280echo "**************************************************************"
281echo "Summary:"
282if test "${HAVE_FFTW3F}" = "1"; then
283  echo "FFT:                     using fftw3f"
284else
285if test "${HAVE_FFTW3}" = "1"; then
286  echo "Fft:                     using fftw3"
287else
288  echo "Fft:                     using ooura"
289fi
290fi
291if test "${HAVE_SNDFILE}" = "1"; then
292  echo "Libsndfile:              yes"
293else
294  echo "Libsndfile:              no"
295fi
296if test "${HAVE_SAMPLERATE}" = "1"; then
297  echo "Libsamplerate:           yes"
298else
299  echo "Libsamplerate:           no"
300fi
301if test "${HAVE_JACK}" = "1"; then
302  echo "JACK:                    yes"
303else
304  echo "JACK:                    no"
305fi
306if test "${HAVE_LASH}" = "1"; then
307  echo "Lash:                    yes"
308else
309  echo "Lash:                    no"
310fi
311echo "**************************************************************"
312echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}
Note: See TracBrowser for help on using the repository browser.