source: configure.ac @ f1b925e

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

configure.ac: add option to compile in double precision

  • Property mode set to 100644
File size: 8.7 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)
176AC_ARG_ENABLE(fftw3f,
177  AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
178  [with_fftw3f=$enableval],
179  with_fftw3f="yes")
180if test "$with_fftw3f" = "yes"; then
181  PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     HAVE_FFTW3F=1, HAVE_FFTW3F=0)
182else
183  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1)
184fi
185if test "${HAVE_FFTW3F}" = "0"; then
186  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1)
187fi
188if test "${HAVE_FFTW3}" = "1"; then
189  AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
190fi
191if test "${HAVE_FFTW3F}" = "1"; then
192  AC_DEFINE(HAVE_FFTW3F,1,[Define to enable fftw3f support])
193fi
194
195dnl Enable jack support (auto)
196AC_ARG_ENABLE(jack,
197  AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
198  [with_jack=$enableval],
199  with_jack="yes")
200if test "$with_jack" = "yes"
201then
202  PKG_CHECK_MODULES(JACK,       jack  >= 0.15.0,     HAVE_JACK=1, HAVE_JACK=0)
203  if test "${HAVE_JACK}" = "1"; then
204    AC_DEFINE(HAVE_JACK,1,[Define to enable jack support])
205  fi
206fi
207
208dnl Enable lash support
209AC_ARG_ENABLE(lash,
210  AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]),
211  [with_lash=$enableval],
212  with_lash="yes")
213if test "$with_lash" = "yes"
214then
215  PKG_CHECK_MODULES(LASH,   lash-1.0 >= 0.5.0,   HAVE_LASH=1, HAVE_LASH=0)
216  if test "${HAVE_LASH}" = "1"; then
217    LASH_CFLAGS+="-DHAVE_LASH"
218  fi
219fi
220 
221dnl Enable unit tests
222AC_ARG_ENABLE(testprogs,
223  AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=no]]]),
224  [with_testprogs=$enableval],
225  with_testprogs="no")
226AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no")
227
228AC_SUBST(AUBIO_CFLAGS)
229
230dnl Check for swig and python
231dnl should check for swig version and python headers
232AC_PATH_PROG(SWIG,swig,no)
233AM_CONDITIONAL(SWIGFOUND, test "${SWIG}" != "no")
234AM_PATH_PYTHON
235AM_CONDITIONAL(PYTHONFOUND, test "${PYTHON}" != "no")
236
237dnl Check for docbook-to-man
238AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
239AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
240
241dnl Check for Puredata
242AC_CHECK_HEADER(m_pd.h,PUREDATA=y,AC_MSG_WARN([Puredata header not found.]))
243AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y")
244
245dnl Check for Java
246AC_CHECK_HEADER(jni.h,JAVAHEADERS=y,AC_MSG_WARN([Java header jni.h not found.]))
247AM_CONDITIONAL(JAVAFOUND, test "${JAVAHEADERS}" = "y")
248
249dnl Create Makefiles
250AC_OUTPUT([
251    Makefile
252    src/Makefile
253    ext/Makefile
254    examples/Makefile
255    tests/Makefile
256    tests/src/Makefile
257    tests/cpp/Makefile
258    sounds/Makefile
259    swig/Makefile
260    python/Makefile
261    python/aubio/Makefile
262    interfaces/java/Makefile
263    interfaces/java/aubio/Makefile
264    interfaces/cpp/Makefile
265    plugins/Makefile
266    plugins/audacity/Makefile
267    plugins/audacity/plug-ins/Makefile
268    plugins/wavesurfer/Makefile
269    plugins/puredata/Makefile
270    doc/Makefile
271  ])
272
273dnl Print summary
274echo
275echo "**************************************************************"
276echo "Summary:"
277if test "${HAVE_FFTW3F}" = "1"; then
278  echo "Fftw3:                   yes (using fftw3f)"
279else
280if test "${HAVE_FFTW3}" = "1"; then
281  echo "Fftw3:                   yes (not using fftw3f)"
282else
283  echo "Fftw3:                   no (that should not happen)"
284fi
285fi
286if test "${HAVE_SNDFILE}" = "1"; then
287  echo "Libsndfile:              yes"
288else
289  echo "Libsndfile:              no"
290fi
291if test "${HAVE_SAMPLERATE}" = "1"; then
292  echo "Libsamplerate:           yes"
293else
294  echo "Libsamplerate:           no"
295fi
296if test "${HAVE_JACK}" = "1"; then
297  echo "JACK:                    yes"
298else
299  echo "JACK:                    no"
300fi
301if test "${HAVE_LASH}" = "1"; then
302  echo "Lash:                    yes"
303else
304  echo "Lash:                    no"
305fi
306if test "${PUREDATA}" = "y"; then
307  echo "PureData:                yes"
308else
309  echo "PureData:                no"
310fi
311echo "**************************************************************"
312echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}
Note: See TracBrowser for help on using the repository browser.