source: configure.ac @ 31a5c0e8

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

configure.ac: make libsamplerate optional

  • 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
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(SNDFILE,     sndfile >= 1.0.4,       HAVE_SNDFILE=1)
146if test "${HAVE_SNDFILE}" = "1"; then
147  AC_DEFINE(HAVE_SNDFILE,1,[Define to enable libsndfile support])
148fi
149
150dnl Enable samplerate support (auto)
151AC_ARG_ENABLE(samplerate,
152  AC_HELP_STRING([--enable-samplerate],[compile with samplerate [[default=auto]]]),
153  [with_samplerate=$enableval],
154  with_samplerate="yes")
155if test "$with_samplerate" = "yes"; then
156  PKG_CHECK_MODULES(SAMPLERATE, samplerate  >= 0.0.15,  HAVE_SAMPLERATE=1)
157  if test "${HAVE_SAMPLERATE}" = "1"; then
158    AC_DEFINE(HAVE_SAMPLERATE,1,[Define to enable libsamplerate support])
159  fi
160fi
161
162dnl Check for fftw3 (required)
163AC_ARG_ENABLE(fftw3f,
164  AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
165  [with_fftw3f=$enableval],
166  with_fftw3f="yes")
167if test "$with_fftw3f" = "yes"; then
168  PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     HAVE_FFTW3F=1, HAVE_FFTW3F=0)
169else
170  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1)
171fi
172if test "${HAVE_FFTW3F}" = "0"; then
173  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1)
174fi
175if test "${HAVE_FFTW3}" = "1"; then
176  AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
177fi
178if test "${HAVE_FFTW3F}" = "1"; then
179  AC_DEFINE(HAVE_FFTW3F,1,[Define to enable fftw3f support])
180fi
181
182dnl Enable jack support (auto)
183AC_ARG_ENABLE(jack,
184  AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
185  [with_jack=$enableval],
186  with_jack="yes")
187if test "$with_jack" = "yes"
188then
189  PKG_CHECK_MODULES(JACK,       jack  >= 0.15.0,     HAVE_JACK=1, HAVE_JACK=0)
190  if test "${HAVE_JACK}" = "1"; then
191    AC_DEFINE(HAVE_JACK,1,[Define to enable jack support])
192  fi
193fi
194
195dnl Enable lash support
196AC_ARG_ENABLE(lash,
197  AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]),
198  [with_lash=$enableval],
199  with_lash="yes")
200if test "$with_lash" = "yes"
201then
202  PKG_CHECK_MODULES(LASH,   lash-1.0 >= 0.5.0,   HAVE_LASH=1, HAVE_LASH=0)
203  if test "${HAVE_LASH}" = "1"; then
204    LASH_CFLAGS+="-DHAVE_LASH"
205  fi
206fi
207 
208dnl Enable unit tests
209AC_ARG_ENABLE(testprogs,
210  AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=no]]]),
211  [with_testprogs=$enableval],
212  with_testprogs="no")
213AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no")
214
215AC_SUBST(AUBIO_CFLAGS)
216
217dnl Check for swig and python
218dnl should check for swig version and python headers
219AC_PATH_PROG(SWIG,swig,no)
220AM_CONDITIONAL(SWIGFOUND, test "${SWIG}" != "no")
221AM_PATH_PYTHON
222AM_CONDITIONAL(PYTHONFOUND, test "${PYTHON}" != "no")
223
224dnl Check for docbook-to-man
225AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
226AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
227
228dnl Check for Puredata
229AC_CHECK_HEADER(m_pd.h,PUREDATA=y,AC_MSG_WARN([Puredata header not found.]))
230AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y")
231
232dnl Check for Java
233AC_CHECK_HEADER(jni.h,JAVAHEADERS=y,AC_MSG_WARN([Java header jni.h not found.]))
234AM_CONDITIONAL(JAVAFOUND, test "${JAVAHEADERS}" = "y")
235
236dnl Create Makefiles
237AC_OUTPUT([
238    Makefile
239    src/Makefile
240    ext/Makefile
241    cpp/Makefile
242    examples/Makefile
243    tests/Makefile
244    tests/src/Makefile
245    tests/cpp/Makefile
246    sounds/Makefile
247    swig/Makefile
248    python/Makefile
249    python/aubio/Makefile
250    java/Makefile
251    java/aubio/Makefile
252    plugins/Makefile
253    plugins/audacity/Makefile
254    plugins/audacity/plug-ins/Makefile
255    plugins/wavesurfer/Makefile
256    plugins/puredata/Makefile
257    doc/Makefile
258  ])
259
260dnl Print summary
261echo
262echo "**************************************************************"
263echo "Summary:"
264if test "${HAVE_FFTW3F}" = "1"; then
265  echo "Fftw3:                   yes (using fftw3f)"
266else
267if test "${HAVE_FFTW3}" = "1"; then
268  echo "Fftw3:                   yes (not using fftw3f)"
269else
270  echo "Fftw3:                   no (that should not happen)"
271fi
272fi
273if test "${HAVE_SNDFILE}" = "1"; then
274  echo "Libsndfile:              yes"
275else
276  echo "Libsndfile:              no"
277fi
278if test "${HAVE_SAMPLERATE}" = "1"; then
279  echo "Libsamplerate:           yes"
280else
281  echo "Libsamplerate:           no"
282fi
283if test "${HAVE_JACK}" = "1"; then
284  echo "JACK:                    yes"
285else
286  echo "JACK:                    no"
287fi
288if test "${HAVE_LASH}" = "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.