src/aubio.h: fix typo, improve code example
[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 Enable silent rules, use with make V=0 
20 dnl AM_SILENT_RULES
21
22 dnl Maintainer mode
23 AM_MAINTAINER_MODE
24
25 dnl Guess the host
26 AC_CANONICAL_HOST
27
28 dnl Check for programs
29 AC_PROG_CC
30 AM_PROG_CC_C_O dnl compiling with per-target flag 
31 if test "$ac_cv_prog_cc" = "no" ; then
32    AC_MSG_ERROR([*** No C compiler found !])
33 fi
34 AC_PROG_INSTALL
35
36 AUBIO_CFLAGS=
37
38 dnl Enable double precision (no)
39 AC_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")
43 if test "$with_double_precision" = "yes"
44 then
45   AC_DEFINE(HAVE_AUBIO_DOUBLE,1,[Define to enable double precision])
46 fi
47
48 dnl Enable debugging (no)
49 AC_ARG_ENABLE(debug,
50   AC_HELP_STRING([--enable-debug],[compile in debug mode [[default=no]]]),
51   with_debug="yes",
52   with_debug="no")
53 if test "$with_debug" = "yes"
54 then
55   AC_DEFINE(DEBUG,1,[Define to enable debug])
56   AUBIO_CFLAGS="$AUBIO_CFLAGS -g"
57 fi
58
59 dnl Enable full warnings (yes)
60 AC_ARG_ENABLE(warnings,
61   AC_HELP_STRING([--enable-warnings],[compile with all gcc warnings [[default=yes]]]),
62   with_warnme="no",
63   with_warnme="yes")
64 if test "$with_warnme" = "yes"
65 then
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
80 fi
81
82 dnl fail on compilation warnings 
83 AC_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
88 dnl add gcov/lcov profiling and coverage flags
89 AC_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
94 dnl Check for libtool
95 AC_LIBTOOL_DLOPEN
96 dnl AC_DISABLE_STATIC
97 dnl allow cross compiling
98 AC_LIBTOOL_WIN32_DLL
99 AC_PROG_LIBTOOL
100
101 AC_CONFIG_HEADERS(src/config.h)
102 AC_CONFIG_FILES(aubio.pc)
103
104 AM_CONDITIONAL(MINGW, false)
105 AM_CONDITIONAL(DARWIN, false)
106 case "${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   ;;
120 esac
121
122 dnl Check for required libraries
123 AC_CHECK_LIB(pthread, pthread_create)
124
125 dnl Check for header files
126 AC_CHECK_HEADERS([string.h stdlib.h stdio.h math.h limits.h errno.h stdarg.h unistd.h signal.h],,)
127 AC_CHECK_HEADERS(fftw3.h,,AC_MSG_ERROR([Ouch! missing fftw3.h header]))
128 AC_ARG_ENABLE(complex,
129   AC_HELP_STRING([--enable-complex],[compile with complex.h [[default=auto]]]),
130   [with_complex=$enableval],
131   with_complex="no")
132 if test "$with_complex" = "yes"; then
133   AC_CHECK_HEADERS(complex.h,,AC_MSG_WARN([Ouch! missing complex.h header]))
134 fi
135
136 dnl Check for __VAR_ARGS__ support
137 AC_CACHE_CHECK(for C99 __VA_ARGS__ macro,
138     ac_cv_varargs_macros,
139 AC_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 )
149 if test "$ac_cv_varargs_macros" = "yes"; then
150     AC_DEFINE(HAVE_C99_VARARGS_MACROS, 1,
151             [Defined when c99 style varargs macros are supported])
152 fi
153
154 dnl Check for pkg-config
155 AC_PATH_PROG(PKG_CONFIG,pkg-config,no)
156
157 PKG_CHECK_MODULES(SNDFILE,     sndfile >= 1.0.4,       HAVE_SNDFILE=1)
158 if test "${HAVE_SNDFILE}" = "1"; then
159   AC_DEFINE(HAVE_SNDFILE,1,[Define to enable libsndfile support])
160 fi
161
162 dnl Enable samplerate support (auto)
163 AC_ARG_ENABLE(samplerate,
164   AC_HELP_STRING([--enable-samplerate],[compile with samplerate [[default=auto]]]),
165   [with_samplerate=$enableval],
166   with_samplerate="yes")
167 if 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
173 fi
174
175 dnl Check for fftw3 (required)
176 dnl if we compile in double precsion, default to fftw3, else fftw3f
177 if test "$with_double_precision" = "yes"; then
178     default_fftw3f="no"
179 else
180     default_fftw3f="yes"
181 fi
182 AC_ARG_ENABLE(fftw3f,
183   AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
184   [with_fftw3f=$enableval],
185   [with_fftw3f=$default_fftw3f])
186 if test "$with_fftw3f" = "yes"; then
187   PKG_CHECK_MODULES(FFTWLIB,    fftw3f >= 3.0.0,     HAVE_FFTW3F=1, HAVE_FFTW3F=0)
188 else
189   PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1)
190 fi
191 if test "${HAVE_FFTW3F}" = "0"; then
192   PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,     HAVE_FFTW3=1)
193 fi
194 if test "${HAVE_FFTW3}" = "1"; then
195   AC_DEFINE(HAVE_FFTW3,1,[Define to enable fftw3 support])
196 fi
197 if test "${HAVE_FFTW3F}" = "1"; then
198   AC_DEFINE(HAVE_FFTW3F,1,[Define to enable fftw3f support])
199 fi
200
201 dnl Enable jack support (auto)
202 AC_ARG_ENABLE(jack,
203   AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
204   [with_jack=$enableval],
205   with_jack="yes")
206 if test "$with_jack" = "yes"
207 then
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
212 fi
213
214 dnl Enable lash support
215 AC_ARG_ENABLE(lash,
216   AC_HELP_STRING([--enable-lash],[compile with lash [[default=auto]]]),
217   [with_lash=$enableval],
218   with_lash="yes")
219 if test "$with_lash" = "yes"
220 then
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
225 fi
226   
227 dnl Enable unit tests 
228 AC_ARG_ENABLE(testprogs,
229   AC_HELP_STRING([--enable-testprogs],[compile test programs [[default=no]]]),
230   [with_testprogs=$enableval],
231   with_testprogs="no")
232 AM_CONDITIONAL(COMPILE_TESTS,test "${with_testprogs}" != "no")
233
234 AC_SUBST(AUBIO_CFLAGS)
235
236 dnl Check for swig and python
237 dnl should check for swig version and python headers
238 AC_PATH_PROG(SWIG,swig,no)
239 AM_CONDITIONAL(SWIGFOUND, test "${SWIG}" != "no")
240 AM_PATH_PYTHON
241 AM_CONDITIONAL(PYTHONFOUND, test "${PYTHON}" != "no")
242
243 dnl Check for docbook-to-man
244 AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
245 AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
246
247 dnl Check for Puredata
248 AC_CHECK_HEADER(m_pd.h,PUREDATA=y,AC_MSG_WARN([Puredata header not found.]))
249 AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y")
250
251 dnl Check for Java
252 AC_CHECK_HEADER(jni.h,JAVAHEADERS=y,AC_MSG_WARN([Java header jni.h not found.]))
253 AM_CONDITIONAL(JAVAFOUND, test "${JAVAHEADERS}" = "y")
254
255 dnl Create Makefiles
256 AC_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
273 dnl Print summary
274 echo
275 echo "**************************************************************"
276 echo "Summary:"
277 if test "${HAVE_FFTW3F}" = "1"; then
278   echo "Fftw3:                   yes (using fftw3f)"
279 else
280 if test "${HAVE_FFTW3}" = "1"; then
281   echo "Fftw3:                   yes (not using fftw3f)"
282 else
283   echo "Fftw3:                   no (that should not happen)"
284 fi
285 fi
286 if test "${HAVE_SNDFILE}" = "1"; then
287   echo "Libsndfile:              yes"
288 else
289   echo "Libsndfile:              no"
290 fi
291 if test "${HAVE_SAMPLERATE}" = "1"; then
292   echo "Libsamplerate:           yes"
293 else
294   echo "Libsamplerate:           no"
295 fi
296 if test "${HAVE_JACK}" = "1"; then
297   echo "JACK:                    yes"
298 else
299   echo "JACK:                    no"
300 fi
301 if test "${HAVE_LASH}" = "1"; then
302   echo "Lash:                    yes"
303 else
304   echo "Lash:                    no"
305 fi
306 if test "${PUREDATA}" = "y"; then
307   echo "PureData:                yes"
308 else
309   echo "PureData:                no"
310 fi
311 echo "**************************************************************"
312 echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}