source: configure.ac @ 5f9df77

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

configure.ac: fix LASH detection

  • Property mode set to 100644
File size: 8.1 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
38AC_CHECK_LIB(m, floorf)
39AUBIO_LIBS="-lm"
40
41dnl Enable double precision (no)
42AC_ARG_ENABLE(double,
43  AC_HELP_STRING([--enable-double],[compile in double precision [[default=no]]]),
44  with_double_precision="yes",
45  with_double_precision="no")
46if test "$with_double_precision" = "yes"
47then
48  AC_DEFINE(HAVE_AUBIO_DOUBLE,1,[Define to enable double precision])
49fi
50
51dnl Enable debugging (no)
52AC_ARG_ENABLE(debug,
53  AC_HELP_STRING([--enable-debug],[compile in debug mode [[default=no]]]),
54  with_debug="yes",
55  with_debug="no")
56if test "$with_debug" = "yes"
57then
58  AC_DEFINE(DEBUG,1,[Define to enable debug])
59  AUBIO_CFLAGS="$AUBIO_CFLAGS -g"
60fi
61
62dnl Enable full warnings (yes)
63AC_ARG_ENABLE(warnings,
64  AC_HELP_STRING([--enable-warnings],[compile with all gcc warnings [[default=yes]]]),
65  with_warnme="no",
66  with_warnme="yes")
67if test "$with_warnme" = "yes"
68then
69  dnl Check for -Wextra support to allow compilation on gcc <= 3.4
70  AC_CACHE_CHECK([for -Wextra option to $CC], ac_cv_cc_wextra,
71  [old_CFLAGS="$CFLAGS"
72  CFLAGS="$CFLAGS -Wextra"
73  AC_COMPILE_IFELSE([void foo (void) {}],
74          ac_cv_cc_wextra=yes, ac_cv_cc_wextra=no)
75  CFLAGS="$old_CFLAGS"
76  ])
77  if test "$ac_cv_cc_wextra" = "yes"
78  then
79    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall -Wextra"
80  else
81    AUBIO_CFLAGS="$AUBIO_CFLAGS -Wall"
82  fi
83fi
84
85dnl fail on compilation warnings
86AC_ARG_ENABLE(errorfail,
87  AC_HELP_STRING([--enable-errorfail],[fail on compilation warnings [[default=no]]]),
88  AUBIO_CFLAGS="$AUBIO_CFLAGS -Werror -Wmissing-prototypes -Wmissing-declarations -Wno-unused-parameter",
89  with_errorfail="no")
90
91dnl add gcov/lcov profiling and coverage flags
92AC_ARG_ENABLE(lcov,
93  AC_HELP_STRING([--enable-lcov],[compile with gcov/lcov profiling flags [[default=no]]]),
94  AUBIO_CFLAGS="$AUBIO_CFLAGS -fprofile-arcs -ftest-coverage",
95  with_lcov="no")
96
97dnl Check for libtool
98AC_LIBTOOL_DLOPEN
99dnl AC_DISABLE_STATIC
100dnl allow cross compiling
101AC_LIBTOOL_WIN32_DLL
102AC_PROG_LIBTOOL
103
104AC_CONFIG_HEADERS(src/config.h)
105AC_CONFIG_FILES(aubio.pc)
106
107AM_CONDITIONAL(MINGW, false)
108AM_CONDITIONAL(DARWIN, false)
109case "${host}" in
110*mingw* | *cygwin*)
111  mingw32_support="yes"
112  AC_CHECK_HEADER(windows.h)
113  AM_CONDITIONAL(MINGW, true)
114  LDFLAGS="$LDFLAGS -no-undefined"
115  ;;
116*darwin* | *rhapsody* | *macosx*)
117  AC_ISC_POSIX
118  AM_CONDITIONAL(DARWIN, true)
119  ;;
120*)
121  AC_ISC_POSIX
122  ;;
123esac
124
125dnl Check for required libraries
126AC_CHECK_LIB(pthread, pthread_create)
127
128dnl Check for header files
129AC_CHECK_HEADERS([string.h stdlib.h stdio.h math.h limits.h errno.h stdarg.h unistd.h signal.h],,)
130AC_ARG_ENABLE(complex,
131  AC_HELP_STRING([--enable-complex],[compile with complex.h [[default=auto]]]),
132  [with_complex=$enableval],
133  with_complex="no")
134if test "$with_complex" = "yes"; then
135  AC_CHECK_HEADERS(complex.h,,AC_MSG_WARN([Ouch! missing complex.h header]))
136fi
137
138dnl Check for __VAR_ARGS__ support
139AC_CACHE_CHECK(for C99 __VA_ARGS__ macro,
140    ac_cv_varargs_macros,
141AC_TRY_COMPILE([
142  #include <stdio.h>
143  #define AUBIO_ERR(...)                       fprintf(stderr, __VA_ARGS__)
144],
145[
146  AUBIO_ERR("%s\n", "ERR");
147],
148        ac_cv_varargs_macros=yes,
149        ac_cv_varargs_macros=no)
150)
151if test "$ac_cv_varargs_macros" = "yes"; then
152    AC_DEFINE(HAVE_C99_VARARGS_MACROS, 1,
153            [Defined when c99 style varargs macros are supported])
154fi
155
156PKG_CHECK_MODULES(SNDFILE,     sndfile >= 1.0.4,       HAVE_SNDFILE=1)
157if test "${HAVE_SNDFILE}" = "1"; then
158  AC_DEFINE(HAVE_SNDFILE,1,[Define to enable libsndfile support])
159fi
160
161dnl Enable samplerate support (auto)
162AC_ARG_ENABLE(samplerate,
163  AC_HELP_STRING([--enable-samplerate],[compile with samplerate [[default=auto]]]),
164  [with_samplerate=$enableval],
165  with_samplerate="yes")
166if test "$with_samplerate" = "yes"; then
167  PKG_CHECK_MODULES(SAMPLERATE, samplerate  >= 0.0.15,  HAVE_SAMPLERATE=1,
168                    HAVE_SAMPLERATE=0)
169  if test "${HAVE_SAMPLERATE}" = "1"; then
170    AC_DEFINE(HAVE_SAMPLERATE,1,[Define to enable libsamplerate support])
171  fi
172fi
173
174dnl Check for fftw3 (required)
175dnl if we compile in double precsion, default to fftw3, else fftw3f
176if test "$with_double_precision" = "yes"; then
177    default_fftw3f="no"
178else
179    default_fftw3f="yes"
180fi
181AC_ARG_ENABLE(fftw3f,
182  AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
183  [with_fftw3f=$enableval],
184  [with_fftw3f=$default_fftw3f])
185if test "$with_fftw3f" = "yes"; then
186  PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     HAVE_FFTW3F=1, HAVE_FFTW3F=0)
187else
188  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1)
189fi
190if test "${HAVE_FFTW3F}" = "0"; then
191  PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1)
192fi
193if test "${HAVE_FFTW3}" = "1"; then
194  AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
195fi
196if test "${HAVE_FFTW3F}" = "1"; then
197  AC_DEFINE(HAVE_FFTW3F,1,[Define to enable fftw3f support])
198fi
199
200dnl Enable jack support (auto)
201AC_ARG_ENABLE(jack,
202  AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
203  [with_jack=$enableval],
204  with_jack="yes")
205if test "$with_jack" = "yes"
206then
207  PKG_CHECK_MODULES(JACK,       jack  >= 0.15.0,     HAVE_JACK=1, HAVE_JACK=0)
208  if test "${HAVE_JACK}" = "1"; then
209    AC_DEFINE(HAVE_JACK,1,[Define to enable jack support])
210  fi
211fi
212
213dnl Enable lash support
214AC_ARG_ENABLE(lash,
215  AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]),
216  [with_lash=$enableval],
217  with_lash="yes")
218if test "$with_lash" = "yes"
219then
220  PKG_CHECK_MODULES(LASH,   lash-1.0 >= 0.5.0,   HAVE_LASH=1, HAVE_LASH=0)
221  if test "${HAVE_LASH}" = "1"; then
222    AC_DEFINE(HAVE_LASH,1,[Define to enable lash support])
223  fi
224fi
225 
226dnl Enable unit tests
227AC_ARG_ENABLE(testprogs,
228  AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=no]]]),
229  [with_testprogs=$enableval],
230  with_testprogs="no")
231AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no")
232
233AC_SUBST(AUBIO_CFLAGS)
234AC_SUBST(AUBIO_LIBS)
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 Create Makefiles
248AC_OUTPUT([
249    Makefile
250    src/Makefile
251    examples/Makefile
252    tests/Makefile
253    tests/src/Makefile
254    sounds/Makefile
255    swig/Makefile
256    python/Makefile
257    python/aubio/Makefile
258    doc/Makefile
259  ])
260
261dnl Print summary
262echo
263echo "**************************************************************"
264echo "Summary:"
265if test "${HAVE_FFTW3F}" = "1"; then
266  echo "Fftw3:                   yes (using fftw3f)"
267else
268if test "${HAVE_FFTW3}" = "1"; then
269  echo "Fftw3:                   yes (not using fftw3f)"
270else
271  echo "Fftw3:                   no (that should not happen)"
272fi
273fi
274if test "${HAVE_SNDFILE}" = "1"; then
275  echo "Libsndfile:              yes"
276else
277  echo "Libsndfile:              no"
278fi
279if test "${HAVE_SAMPLERATE}" = "1"; then
280  echo "Libsamplerate:           yes"
281else
282  echo "Libsamplerate:           no"
283fi
284if test "${HAVE_JACK}" = "1"; then
285  echo "JACK:                    yes"
286else
287  echo "JACK:                    no"
288fi
289if test "${HAVE_LASH}" = "1"; then
290  echo "Lash:                    yes"
291else
292  echo "Lash:                    no"
293fi
294echo "**************************************************************"
295echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}
Note: See TracBrowser for help on using the repository browser.