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