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