source: configure.ac @ 240e416

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

configure.ac: when compiling with --enable-double, default to fftw3

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