source: configure.ac @ 180eeca

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

plugins/wavesurfer: moved to own branch

  • 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_INSTALL
35
36AUBIO_CFLAGS=
37
38dnl Enable double precision (no)
39AC_ARG_ENABLE(double,
40  AC_HELP_STRING([--enable-double],[compile in double precision [[default=no]]]),
41  with_double_precision="yes",
42  with_double_precision="no")
43if test "$with_double_precision" = "yes"
44then
45  AC_DEFINE(HAVE_AUBIO_DOUBLE,1,[Define to enable double precision])
46fi
47
48dnl Enable debugging (no)
49AC_ARG_ENABLE(debug,
50  AC_HELP_STRING([--enable-debug],[compile in debug mode [[default=no]]]),
51  with_debug="yes",
52  with_debug="no")
53if test "$with_debug" = "yes"
54then
55  AC_DEFINE(DEBUG,1,[Define to enable debug])
56  AUBIO_CFLAGS="$AUBIO_CFLAGS -g"
57fi
58
59dnl Enable full warnings (yes)
60AC_ARG_ENABLE(warnings,
61  AC_HELP_STRING([--enable-warnings],[compile with all gcc warnings [[default=yes]]]),
62  with_warnme="no",
63  with_warnme="yes")
64if test "$with_warnme" = "yes"
65then
66  dnl Check for -Wextra support to allow compilation on gcc <= 3.4
67  AC_CACHE_CHECK([for -Wextra option to $CC], ac_cv_cc_wextra,
68  [old_CFLAGS="$CFLAGS"
69  CFLAGS="$CFLAGS -Wextra"
70  AC_COMPILE_IFELSE([void foo (void) {}],
71          ac_cv_cc_wextra=yes, ac_cv_cc_wextra=no)
72  CFLAGS="$old_CFLAGS"
73  ])
74  if test "$ac_cv_cc_wextra" = "yes"
75  then
76    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall -Wextra"
77  else
78    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall"
79  fi
80fi
81
82dnl fail on compilation warnings
83AC_ARG_ENABLE(errorfail,
84  AC_HELP_STRING([--enable-errorfail],[fail on compilation warnings [[default=no]]]),
85  AUBIO_CFLAGS="$AUBIO_CFLAGS -Werror -Wmissing-prototypes -Wmissing-declarations -Wno-unused-parameter",
86  with_errorfail="no")
87
88dnl add gcov/lcov profiling and coverage flags
89AC_ARG_ENABLE(lcov,
90  AC_HELP_STRING([--enable-lcov],[compile with gcov/lcov profiling flags [[default=no]]]),
91  AUBIO_CFLAGS="$AUBIO_CFLAGS -fprofile-arcs -ftest-coverage",
92  with_lcov="no")
93
94dnl Check for libtool
95AC_LIBTOOL_DLOPEN
96dnl AC_DISABLE_STATIC
97dnl allow cross compiling
98AC_LIBTOOL_WIN32_DLL
99AC_PROG_LIBTOOL
100
101AC_CONFIG_HEADERS(src/config.h)
102AC_CONFIG_FILES(aubio.pc)
103
104AM_CONDITIONAL(MINGW, false)
105AM_CONDITIONAL(DARWIN, false)
106case "${host}" in
107*mingw* | *cygwin*)
108  mingw32_support="yes"
109  AC_CHECK_HEADER(windows.h)
110  AM_CONDITIONAL(MINGW, true)
111  LDFLAGS="$LDFLAGS -no-undefined"
112  ;;
113*darwin* | *rhapsody* | *macosx*)
114  AC_ISC_POSIX
115  AM_CONDITIONAL(DARWIN, true)
116  ;;
117*)
118  AC_ISC_POSIX
119  ;;
120esac
121
122dnl Check for required libraries
123AC_CHECK_LIB(pthread, pthread_create)
124
125dnl Check for header files
126AC_CHECK_HEADERS([string.h stdlib.h stdio.h math.h limits.h errno.h stdarg.h unistd.h signal.h],,)
127AC_CHECK_HEADERS(fftw3.h,,AC_MSG_ERROR([Ouch! missing fftw3.h header]))
128AC_ARG_ENABLE(complex,
129  AC_HELP_STRING([--enable-complex],[compile with complex.h [[default=auto]]]),
130  [with_complex=$enableval],
131  with_complex="no")
132if test "$with_complex" = "yes"; then
133  AC_CHECK_HEADERS(complex.h,,AC_MSG_WARN([Ouch! missing complex.h header]))
134fi
135
136dnl Check for __VAR_ARGS__ support
137AC_CACHE_CHECK(for C99 __VA_ARGS__ macro,
138    ac_cv_varargs_macros,
139AC_TRY_COMPILE([
140  #include <stdio.h>
141  #define AUBIO_ERR(...)                       fprintf(stderr, __VA_ARGS__)
142],
143[
144  AUBIO_ERR("%s\n", "ERR");
145],
146        ac_cv_varargs_macros=yes,
147        ac_cv_varargs_macros=no)
148)
149if test "$ac_cv_varargs_macros" = "yes"; then
150    AC_DEFINE(HAVE_C99_VARARGS_MACROS, 1,
151            [Defined when c99 style varargs macros are supported])
152fi
153
154dnl Check for pkg-config
155AC_PATH_PROG(PKG_CONFIG,pkg-config,no)
156
157PKG_CHECK_MODULES(SNDFILE,     sndfile >= 1.0.4,       HAVE_SNDFILE=1)
158if test "${HAVE_SNDFILE}" = "1"; then
159  AC_DEFINE(HAVE_SNDFILE,1,[Define to enable libsndfile support])
160fi
161
162dnl Enable samplerate support (auto)
163AC_ARG_ENABLE(samplerate,
164  AC_HELP_STRING([--enable-samplerate],[compile with samplerate [[default=auto]]]),
165  [with_samplerate=$enableval],
166  with_samplerate="yes")
167if test "$with_samplerate" = "yes"; then
168  PKG_CHECK_MODULES(SAMPLERATE, samplerate  >= 0.0.15,  HAVE_SAMPLERATE=1,
169                    HAVE_SAMPLERATE=0)
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    examples/Makefile
260    tests/Makefile
261    tests/src/Makefile
262    sounds/Makefile
263    swig/Makefile
264    python/Makefile
265    python/aubio/Makefile
266    interfaces/java/Makefile
267    interfaces/java/aubio/Makefile
268    plugins/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.