source: configure.ac @ c3395f3

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

configure.ac: simplify flags for darwin and co (looks like -lmx is not needed anymore, at least os of macosx 10.4)

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