source: configure.ac @ 823fa09

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

add -no-undefined on cygwin and mingw, define CPPFLAGS on darwin
add -no-undefined on cygwin and mingw, define CPPFLAGS on darwin

  • Property mode set to 100644
File size: 8.2 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 "${build_os}" in
84*mingw* | *cygwin*)
85  mingw32_support="yes"
86  AC_CHECK_HEADER(windows.h)
87  AM_CONDITIONAL(MINGW, true)
88  LDFLAGS="$LDFLAGS -no-undefined"
89  ;;
90*darwin* | *rhapsody* | *macosx*)
91  dnl on macosx, cosf went to -lmx
92  LDFLAGS="$LDFLAGS -lmx"
93  dnl as long double doesn't sit well with -Wall -Werror
94  AUBIO_CFLAGS="$AUBIO_CFLAGS -Wno-long-double"
95  dnl Workaround darwin autoconf bug
96  CPPFLAGS="$CPPFLAGS -I${prefix}/include"
97  AC_ISC_POSIX
98  AM_CONDITIONAL(DARWIN, true)
99  ;;
100*)
101  AC_ISC_POSIX
102  ;;
103esac
104
105dnl Check for required libraries
106AC_CHECK_LIB(pthread, pthread_create)
107
108dnl Check for header files
109AC_HEADER_STDC
110AC_CHECK_HEADERS([string.h stdlib.h stdio.h math.h errno.h stdarg.h unistd.h signal.h],,)
111AC_CHECK_HEADERS(fftw3.h,,AC_MSG_ERROR([Ouch! missing fftw3.h header]))
112AC_ARG_ENABLE(complex,
113  AC_HELP_STRING([--enable-complex],[compile with complex.h [[default=auto]]]),
114  [with_complex=$enableval],
115  with_complex="yes")
116if test "$with_complex" = "yes"; then
117  AC_CHECK_HEADERS(complex.h,,AC_MSG_WARN([Ouch! missing complex.h header]))
118fi
119
120dnl Check for __VAR_ARGS__ support
121AC_CACHE_CHECK(for C99 __VA_ARGS__ macro,
122    ac_cv_varargs_macros,
123AC_TRY_COMPILE([
124  #include <stdio.h>
125  #define AUBIO_ERR(...)                       fprintf(stderr, __VA_ARGS__)
126],
127[
128  AUBIO_ERR("%s\n", "ERR");
129],
130        ac_cv_varargs_macros=yes,
131        ac_cv_varargs_macros=no)
132)
133if test "$ac_cv_varargs_macros" = "yes"; then
134    AC_DEFINE(HAVE_C99_VARARGS_MACROS, 1,
135            [Defined when c99 style varargs macros are supported])
136fi
137
138dnl Check for pkg-config
139AC_PATH_PROG(PKG_CONFIG,pkg-config,no)
140
141PKG_CHECK_MODULES(SNDLIB,     sndfile >= 1.0.4,       SNDLIB_SUPPORT=1)
142PKG_CHECK_MODULES(SAMPLERATE, samplerate  >= 0.0.15,  SAMPLERATE_SUPPORT=1)
143
144if test "${SNDLIB_SUPPORT}" = "1"; then
145  AC_DEFINE(SNDLIB_SUPPORT,1,[Define to enable libsndfile support])
146fi
147
148dnl Check for fftw3 (required)
149AC_ARG_ENABLE(fftw3f,
150  AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
151  [with_fftw3f=$enableval],
152  with_fftw3f="yes")
153if test "$with_fftw3f" = "yes"; then
154  PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     FFTW3F_SUPPORT=1, FFTW3F_SUPPORT=0)
155else
156  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     FFTW3_SUPPORT=1)
157fi
158if test "${FFTW3F_SUPPORT}" = "0"; then
159  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     FFTW3_SUPPORT=1)
160fi
161if test "${FFTW3_SUPPORT}" = "1"; then
162  AC_DEFINE(FFTW3_SUPPORT,1,[Define to enable fftw3 support])
163fi
164if test "${FFTW3F_SUPPORT}" = "1"; then
165  AC_DEFINE(FFTW3F_SUPPORT,1,[Define to enable fftw3f support])
166fi
167
168dnl Enable jack support (auto)
169AC_ARG_ENABLE(jack,
170  AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
171  [with_jack=$enableval],
172  with_jack="yes")
173if test "$with_jack" = "yes"
174then
175  PKG_CHECK_MODULES(JACK,       jack  >= 0.15.0,     JACK_SUPPORT=1, JACK_SUPPORT=0)
176  if test "${JACK_SUPPORT}" = "1"; then
177    AC_DEFINE(JACK_SUPPORT,1,[Define to enable jack support])
178  fi
179fi
180
181dnl Enable alsa support (auto)
182AC_ARG_ENABLE(alsa,
183  AC_HELP_STRING([--enable-alsa],[compile with alsa [[default=auto]]]),
184  [with_alsa=$enableval],
185  with_alsa="yes")
186if test "$with_alsa" = "yes"
187then
188  if test "$with_jack" = "yes"
189  then
190    PKG_CHECK_MODULES(ALSA,      alsa >= 0.0.9,      ALSA_SUPPORT=1, ALSA_SUPPORT=0)
191    if test "${ALSA_SUPPORT}" = "1"; then
192      AC_DEFINE(ALSA_SUPPORT,1,[Define to enable alsa support])
193    fi
194  else
195    AC_MSG_WARN([Disabling alsa as jack was not found])
196  fi
197fi
198
199dnl Enable lash support
200AC_ARG_ENABLE(lash,
201  AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]),
202  [with_lash=$enableval],
203  with_lash="yes")
204if test "$with_lash" = "yes"
205then
206  PKG_CHECK_MODULES(LASH,   lash-1.0 >= 0.5.0,   LASH_SUPPORT=1, LASH_SUPPORT=0)
207  if test "${LASH_SUPPORT}" = "1"; then
208    LASH_CFLAGS+="-DLASH_SUPPORT"
209  fi
210fi
211 
212dnl Enable unit tests
213AC_ARG_ENABLE(testprogs,
214  AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=no]]]),
215  [with_testprogs=$enableval],
216  with_testprogs="no")
217AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no")
218
219AC_SUBST(AUBIO_CFLAGS)
220
221dnl Check for swig and python
222dnl should check for swig version and python headers
223AC_PATH_PROG(SWIG,swig,no)
224AM_CONDITIONAL(SWIGFOUND, test "${SWIG}" != "no")
225AM_PATH_PYTHON
226AM_CONDITIONAL(PYTHONFOUND, test "${PYTHON}" != "no")
227
228dnl Check for docbook-to-man
229AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
230AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
231
232dnl Check for Puredata
233AC_CHECK_HEADER(m_pd.h,PUREDATA=y,AC_MSG_WARN([Puredata header not found.]))
234AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y")
235
236dnl Create Makefiles
237AC_OUTPUT([
238    Makefile
239    src/Makefile
240    ext/Makefile
241    examples/Makefile
242    examples/tests/Makefile
243    sounds/Makefile
244    swig/Makefile
245    python/Makefile
246    python/aubio/Makefile
247    plugins/Makefile
248    plugins/audacity/Makefile
249    plugins/audacity/plug-ins/Makefile
250    plugins/wavesurfer/Makefile
251    plugins/puredata/Makefile
252    doc/Makefile
253  ])
254
255dnl Print summary
256echo
257echo "**************************************************************"
258echo "Summary:"
259if test "${FFTW3F_SUPPORT}" = "1"; then
260  echo "Fftw3:                   yes (using fftw3f)"
261else
262if test "${FFTW3_SUPPORT}" = "1"; then
263  echo "Fftw3:                   yes (not using fftw3f)"
264else
265  echo "Fftw3:                   no (that should not happen)"
266fi
267fi
268if test "${SNDLIB_SUPPORT}" = "1"; then
269  echo "Libsndfile:              yes"
270else
271  echo "Libsndfile:              no"
272fi
273if test "${SAMPLERATE_SUPPORT}" = "1"; then
274  echo "Libsamplerate:           yes"
275else
276  echo "Libsamplerate:           no"
277fi
278if test "${JACK_SUPPORT}" = "1"; then
279  echo "JACK:                    yes"
280else
281  echo "JACK:                    no"
282fi
283if test "${ALSA_SUPPORT}" = "1"; then
284  echo "ALSA midi:               yes"
285else
286  echo "ALSA midi:               no"
287fi
288if test "${LASH_SUPPORT}" = "1"; then
289  echo "Lash:                    yes"
290else
291  echo "Lash:                    no"
292fi
293if test "${PUREDATA}" = "y"; then
294  echo "PureData:                yes"
295else
296  echo "PureData:                no"
297fi
298echo "**************************************************************"
299echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}
Note: See TracBrowser for help on using the repository browser.