source: configure.ac @ 53efdb3

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 53efdb3 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
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
27if test "$ac_cv_prog_cc" = "no" ; then
28   AC_MSG_ERROR([*** No C compiler found !])
29fi
30AC_PROG_INSTALL
31
32AUBIO_CFLAGS=
33
34dnl Enable debugging (no)
35AC_ARG_ENABLE(debug,
36  [  --enable-debug[[=value]]  compile with debug [[default=no]]],
37  with_debug="yes",
38  with_debug="no")
39if test "$with_debug" = "yes"
40then
41  AC_DEFINE(DEBUG,1,[Define to enable debug])
42  AUBIO_CFLAGS="$(AUBIO_CFLAGS) -g"
43fi
44
45dnl Enable full warnings (yes)
46AC_ARG_ENABLE(warnings,
47  [  --enable-warnings[[=value]] compile with all gcc warnings [[default=yes]]],
48  with_warnme="no",
49  with_warnme="yes")
50if test "$with_warnme" = "yes"
51then
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)
58  CFLAGS="$old_CFLAGS"
59  ])
60  if test "$ac_cv_cc_wextra" = "yes"
61  then
62    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall -Wextra"
63  else
64    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall"
65  fi
66fi
67
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")
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
81AM_CONDITIONAL(MINGW, false)
82AM_CONDITIONAL(DARWIN, false)
83case "${host_os}" in
84*mingw*)
85  mingw32_support="yes"
86  AC_CHECK_HEADER(windows.h)
87  AM_CONDITIONAL(MINGW, true)
88  ;;
89*darwin*)
90  dnl on macosx, cosf went to -lmx
91  LDFLAGS="$LDFLAGS -lmx"
92  dnl as long double doesn't sit well with -Wall -Werror
93  AUBIO_CFLAGS="$AUBIO_CFLAGS -Wno-long-double"
94  AC_ISC_POSIX
95  AM_CONDITIONAL(DARWIN, true)
96  ;;
97*)
98  AC_ISC_POSIX
99  ;;
100esac
101
102dnl Check for required libraries
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],,)
108AC_CHECK_HEADERS(fftw3.h  ,,AC_MSG_ERROR([Ouch! missing fftw3.h header]))
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
116
117dnl Check for __VAR_ARGS__ support
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
135dnl Check for pkg-config
136AC_PATH_PROG(PKG_CONFIG,pkg-config,no)
137
138PKG_CHECK_MODULES(SNDLIB,     sndfile >= 1.0.4,       SNDLIB_SUPPORT=1)
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
145dnl Check for fftw3 (required)
146AC_ARG_ENABLE(fftw3f,
147  AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
148  [with_fftw3f=$enableval],
149  with_fftw3f="yes")
150if test "$with_fftw3f" = "yes"; then
151  PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     FFTW3F_SUPPORT=1, FFTW3F_SUPPORT=0)
152else
153  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     FFTW3_SUPPORT=1)
154fi
155if test "${FFTW3F_SUPPORT}" = "0"; then
156  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     FFTW3_SUPPORT=1)
157fi
158if test "${FFTW3_SUPPORT}" = "1"; then
159  AC_DEFINE(FFTW3_SUPPORT,1,[Define to enable fftw3 support])
160fi
161if test "${FFTW3F_SUPPORT}" = "1"; then
162  AC_DEFINE(FFTW3F_SUPPORT,1,[Define to enable fftw3f support])
163fi
164
165dnl Enable jack support (auto)
166AC_ARG_ENABLE(jack,
167  AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
168  [with_jack=$enableval],
169  with_jack="yes")
170if test "$with_jack" = "yes"
171then
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
176fi
177
178dnl Enable alsa support (auto)
179AC_ARG_ENABLE(alsa,
180  AC_HELP_STRING([--enable-alsa],[compile with alsa [[default=auto]]]),
181  [with_alsa=$enableval],
182  with_alsa="yes")
183if test "$with_alsa" = "yes"
184then
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
194fi
195
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"
202then
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"
206  fi
207fi
208 
209dnl Enable unit tests
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
216AC_SUBST(AUBIO_CFLAGS)
217
218dnl Check for swig and python
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")
224
225dnl Check for docbook-to-man
226AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
227AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
228
229dnl Check for Puredata
230AC_CHECK_HEADER(m_pd.h,PUREDATA=y,AC_MSG_WARN([Puredata header not found.]))
231AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y")
232
233dnl Create Makefiles
234AC_OUTPUT([
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
253echo
254echo "**************************************************************"
255echo "Summary:"
256if test "${FFTW3F_SUPPORT}" = "1"; then
257  echo "Fftw3:                   yes (using fftw3f)"
258else
259if test "${FFTW3_SUPPORT}" = "1"; then
260  echo "Fftw3:                   yes (not using fftw3f)"
261else
262  echo "Fftw3:                   no (that should not happen)"
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
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"
294fi
295echo "**************************************************************"
296echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}
Note: See TracBrowser for help on using the repository browser.