source: configure.ac @ c85c8b6

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

ext/midi: remove all midi stuff borrowed from fluidsynth, now unused

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