source: configure.ac @ ddfecbc

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

configure.ac: add check for CXX

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