source: configure.ac @ 729a3c0

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

add support for ooura so that aubio can be build without fftw

  • Property mode set to 100644
File size: 8.3 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
156PKG_CHECK_MODULES(SNDFILE,     sndfile >= 1.0.4,       HAVE_SNDFILE=1)
157if test "${HAVE_SNDFILE}" = "1"; then
158  AC_DEFINE(HAVE_SNDFILE,1,[Define to enable libsndfile support])
159fi
160
161dnl Enable samplerate support (auto)
162AC_ARG_ENABLE(samplerate,
163  AC_HELP_STRING([--enable-samplerate],[compile with samplerate [[default=auto]]]),
164  [with_samplerate=$enableval],
165  with_samplerate="yes")
166if test "$with_samplerate" = "yes"; then
167  PKG_CHECK_MODULES(SAMPLERATE, samplerate  >= 0.0.15,  HAVE_SAMPLERATE=1,
168                    HAVE_SAMPLERATE=0)
169  if test "${HAVE_SAMPLERATE}" = "1"; then
170    AC_DEFINE(HAVE_SAMPLERATE,1,[Define to enable libsamplerate support])
171  fi
172fi
173
174dnl Check for fftw3 (required)
175dnl if we compile in double precsion, default to fftw3, else fftw3f
176
177AC_ARG_ENABLE(fftw3,
178  AC_HELP_STRING([--enable-fftw3],[compile with fftw3 [[default=auto]]]),
179  [with_fftw3=$enableval],
180  with_fftw3="yes")
181
182if test "$with_double_precision" = "yes"; then
183    default_fftw3f="no"
184else
185    default_fftw3f=$with_fftw3
186fi
187
188AC_ARG_ENABLE(fftw3f,
189  AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
190  [with_fftw3f=$enableval],
191  [with_fftw3f=$default_fftw3f])
192
193# check if we have fftw3f
194if test "$with_fftw3f" = "yes"; then
195  PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     HAVE_FFTW3F=1, HAVE_FFTW3F=0)
196else
197# check if we have fftw3
198if test "$with_fftw3" = "yes"; then
199  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1, HAVE_FFTW3=0)
200fi
201fi
202
203if test "${HAVE_FFTW3}" = "1"; then
204  AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
205fi
206if test "${HAVE_FFTW3F}" = "1"; then
207  AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
208  AC_DEFINE(HAVE_FFTW3F,1,[Define to enable fftw3f support])
209fi
210
211dnl Enable jack support (auto)
212AC_ARG_ENABLE(jack,
213  AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
214  [with_jack=$enableval],
215  with_jack="yes")
216if test "$with_jack" = "yes"
217then
218  PKG_CHECK_MODULES(JACK,       jack  >= 0.15.0,     HAVE_JACK=1, HAVE_JACK=0)
219  if test "${HAVE_JACK}" = "1"; then
220    AC_DEFINE(HAVE_JACK,1,[Define to enable jack support])
221  fi
222fi
223
224dnl Enable lash support
225AC_ARG_ENABLE(lash,
226  AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]),
227  [with_lash=$enableval],
228  with_lash="yes")
229if test "$with_lash" = "yes"
230then
231  PKG_CHECK_MODULES(LASH,   lash-1.0 >= 0.5.0,   HAVE_LASH=1, HAVE_LASH=0)
232  if test "${HAVE_LASH}" = "1"; then
233    AC_DEFINE(HAVE_LASH,1,[Define to enable lash support])
234  fi
235fi
236 
237dnl Enable unit tests
238AC_ARG_ENABLE(testprogs,
239  AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=no]]]),
240  [with_testprogs=$enableval],
241  with_testprogs="no")
242AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no")
243
244AC_SUBST(AUBIO_CFLAGS)
245AC_SUBST(AUBIO_LIBS)
246
247dnl Check for swig and python
248dnl should check for swig version and python headers
249AC_PATH_PROG(SWIG,swig,no)
250AM_CONDITIONAL(SWIGFOUND, test "${SWIG}" != "no")
251AM_PATH_PYTHON
252AM_CONDITIONAL(PYTHONFOUND, test "${PYTHON}" != "no")
253
254dnl Check for docbook-to-man
255AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
256AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
257
258dnl Create Makefiles
259AC_OUTPUT([
260    Makefile
261    src/Makefile
262    examples/Makefile
263    tests/Makefile
264    tests/src/Makefile
265    sounds/Makefile
266    swig/Makefile
267    python/Makefile
268    python/aubio/Makefile
269    doc/Makefile
270  ])
271
272dnl Print summary
273echo
274echo "**************************************************************"
275echo "Summary:"
276if test "${HAVE_FFTW3F}" = "1"; then
277  echo "FFT:                     using fftw3f"
278else
279if test "${HAVE_FFTW3}" = "1"; then
280  echo "Fft:                     using fftw3"
281else
282  echo "Fft:                     using ooura"
283fi
284fi
285if test "${HAVE_SNDFILE}" = "1"; then
286  echo "Libsndfile:              yes"
287else
288  echo "Libsndfile:              no"
289fi
290if test "${HAVE_SAMPLERATE}" = "1"; then
291  echo "Libsamplerate:           yes"
292else
293  echo "Libsamplerate:           no"
294fi
295if test "${HAVE_JACK}" = "1"; then
296  echo "JACK:                    yes"
297else
298  echo "JACK:                    no"
299fi
300if test "${HAVE_LASH}" = "1"; then
301  echo "Lash:                    yes"
302else
303  echo "Lash:                    no"
304fi
305echo "**************************************************************"
306echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}
Note: See TracBrowser for help on using the repository browser.