updated configure.ac to detect jack, alsa and fftw3f automatically
[aubio.git] / configure.ac
1 dnl Process this file with autoconf to porduce a configure script
2
3 AC_INIT(src/aubio.h)
4
5 . $srcdir/VERSION
6 AUBIO_VERSION=${AUBIO_MAJOR_VERSION}.${AUBIO_MINOR_VERSION}.${AUBIO_PATCH_VERSION}${AUBIO_VERSION_STATUS}
7 VERSION=${AUBIO_VERSION}
8 PACKAGE=aubio
9
10 AM_INIT_AUTOMAKE(${PACKAGE}, ${VERSION})
11
12 AC_PREFIX_DEFAULT(/usr)
13
14 dnl enable optimization
15 CFLAGS="$CFLAGS -O2"
16
17 dnl Check for debug
18 AC_ARG_ENABLE(debug,
19   [  --enable-debug[[=value]]   compile with debug [[default=no]]],
20   with_debug="yes",
21   with_debug="no")
22 if test "$with_debug" = "yes"
23 then
24   AC_DEFINE(DEBUG,1,[Define to enable debug])
25   CFLAGS="$CFLAGS -g"
26 fi
27
28 dnl
29 AC_ARG_ENABLE(warnme,
30   [  --enable-warnme[[=value]]   compile with all -W [[default=yes]]],
31   with_warnme="no",
32   with_warnme="yes")
33 if test "$with_warnme" = "yes"
34 then
35   ALL_CWARNINGS="-Wall -Werror -Wmissing-prototypes -Wmissing-declarations -Wno-char-subscripts -Wno-unknown-pragmas"
36   CFLAGS="$CFLAGS $ALL_CWARNINGS"
37 fi
38
39
40 dnl Guess the host
41 AC_CANONICAL_HOST
42
43 dnl Check for programs
44 AC_PROG_CC
45 if test "$ac_cv_prog_cc" = "no" ; then
46    AC_MSG_ERROR([*** No C compiler found !])
47 fi
48 AC_PROG_INSTALL
49
50 dnl Check for libtool
51 AC_LIBTOOL_DLOPEN
52 dnl AC_DISABLE_STATIC
53 AC_PROG_LIBTOOL
54
55 AC_CONFIG_HEADERS(src/config.h)
56 AC_CONFIG_FILES(aubio.pc)
57
58 case "${host_os}" in
59 mingw*)
60   mingw32_support="yes"
61   AC_CHECK_HEADER(windows.h)
62   ;;
63 darwin*)
64   dnl on macosx, cosf went to -lmx
65   LDFLAGS="$LDFLAGS -lmx"
66   AC_ISC_POSIX
67   ;;
68 *)
69   AC_ISC_POSIX
70   ;;
71 esac
72
73 dnl Check for required libraries
74 AC_CHECK_LIB(pthread, pthread_create)
75
76 dnl Check for header files
77 AC_HEADER_STDC
78 AC_CHECK_HEADERS([string.h stdlib.h stdio.h math.h errno.h stdarg.h unistd.h signal.h],,)
79 AC_CHECK_HEADERS(complex.h,,AC_MSG_ERROR([Ouch! missing complex.h header]))
80 AC_CHECK_HEADERS(fftw3.h  ,,AC_MSG_ERROR([Ouch! missing fftw3.h headeri]))
81
82 dnl check for pkg-config
83 AC_PATH_PROG(PKG_CONFIG,pkg-config,no)
84
85 PKG_CHECK_MODULES(SNDLIB,     sndfile >= 1.0.4,       SNDLIB_SUPPORT=1)
86 PKG_CHECK_MODULES(SAMPLERATE, samplerate  >= 0.0.15,  SAMPLERATE_SUPPORT=1)
87
88 if test "${SNDLIB_SUPPORT}" = "1"; then
89   AC_DEFINE(SNDLIB_SUPPORT,1,[Define to enable libsndfile support])
90 fi
91
92
93 dnl Check for optional libraries
94 AC_ARG_ENABLE(fftw3f,
95   AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]),
96   [with_fftw3f=$enableval],
97   with_fftw3f="yes")
98 if test "$with_fftw3f" = "yes"; then
99         PKG_CHECK_MODULES(FFTWLIB,    fftw3f  >= 3.0.0,     FFTW3F_SUPPORT=1, FFTW3F_SUPPORT=0)
100 else
101         PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,      FFTW3_SUPPORT=1)
102 fi
103 if test "${FFTW3F_SUPPORT}" = "0"; then
104         PKG_CHECK_MODULES(FFTWLIB,    fftw3  >= 3.0.0,      FFTW3_SUPPORT=1)
105 fi
106 if test "${FFTW3_SUPPORT}" = "1"; then
107   AC_DEFINE(FFTW3_SUPPORT,1,[Define to enable fftw3 support])
108 fi
109 if test "${FFTW3F_SUPPORT}" = "1"; then
110   AC_DEFINE(FFTW3F_SUPPORT,1,[Define to enable fftw3f support])
111 fi
112
113 AC_ARG_ENABLE(jack,
114   AC_HELP_STRING([--enable-jack],[compile with jack [[default=auto]]]),
115   [with_jack=$enableval],
116   with_jack="yes")
117 if test "$with_jack" = "yes"
118 then
119         PKG_CHECK_MODULES(JACK,       jack  >= 0.15.0,        JACK_SUPPORT=1, JACK_SUPPORT=0)
120         if test "${JACK_SUPPORT}" = "1"; then
121           AC_DEFINE(JACK_SUPPORT,1,[Define to enable jack support])
122         fi
123 fi
124
125 AC_ARG_ENABLE(alsa,
126   AC_HELP_STRING([--enable-alsa],[compile with alsa [[default=auto]]]),
127   [with_alsa=$enableval],
128   with_alsa="yes")
129 if test "$with_alsa" = "yes"
130 then
131         PKG_CHECK_MODULES(ALSA,       alsa >= 0.0.9,          ALSA_SUPPORT=1, ALSA_SUPPORT=0)
132         if test "${ALSA_SUPPORT}" = "1"; then
133           AC_DEFINE(ALSA_SUPPORT,1,[Define to enable alsa support])
134         fi
135 fi
136
137 AC_ARG_ENABLE(ladcca,
138   AC_HELP_STRING([--enable-ladcca],[compile with ladcca [[default=no]]]),
139   [with_ladcca=$enableval],
140   with_ladcca="no")
141 if test "$with_ladcca" = "yes"
142 then
143         PKG_CHECK_MODULES(LADCCA,       ladcca-1.0 >= 0.4.0,          LADCCA_SUPPORT=1)
144         if test "${LADCCA_SUPPORT}" = "1"; then
145           AC_DEFINE(LADCCA_SUPPORT,1,[Define to enable ladcca support])
146         fi
147 fi
148   
149 dnl Check for optional programs
150
151 dnl should check for swig version and python headers
152 AC_PATH_PROG(SWIG,swig,no)
153 AM_CONDITIONAL(SWIGFOUND, test "${SWIG}" != "no")
154 AM_PATH_PYTHON
155 AM_CONDITIONAL(PYTHONFOUND, test "${PYTHON}" != "no")
156
157 AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
158 AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
159
160 AC_CHECK_HEADER(m_pd.h,PUREDATA=y,AC_MSG_WARN([Ouch! puredata header not found]))
161 AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y")
162
163 AC_OUTPUT([
164                 Makefile
165                 src/Makefile
166                 ext/Makefile
167                 examples/Makefile
168                 sounds/Makefile
169                 swig/Makefile
170                 python/Makefile
171                 python/aubio/Makefile
172                 plugins/Makefile
173                 plugins/audacity/Makefile
174                 plugins/audacity/plug-ins/Makefile
175                 plugins/wavesurfer/Makefile
176                 plugins/puredata/Makefile
177                 doc/Makefile
178         ])
179
180 echo
181 echo "**************************************************************"
182 echo "Summary:"
183 if test "${FFTW3F_SUPPORT}" = "1"; then
184   echo "Fftw3:                   yes (using fftw3f)"
185 else
186 if test "${FFTW3_SUPPORT}" = "1"; then
187   echo "Fftw3:                   yes (not using fftw3f)"
188 else
189   echo "Fftw3:                   no (that should not happen)"
190 fi
191 fi
192 if test "${SNDLIB_SUPPORT}" = "1"; then
193   echo "Libsndfile:              yes"
194 else
195   echo "Libsndfile:              no"
196 fi
197 if test "${SAMPLERATE_SUPPORT}" = "1"; then
198   echo "Libsamplerate:           yes"
199 else
200   echo "Libsamplerate:           no"
201 fi
202 if test "${JACK_SUPPORT}" = "1"; then
203   echo "JACK:                    yes"
204 else
205   echo "JACK:                    no"
206 fi
207 if test "${ALSA_SUPPORT}" = "1"; then
208   echo "ALSA midi:               yes"
209 else
210   echo "ALSA midi:               no"
211 fi
212 if test "${LADCCA_SUPPORT}" = "1"; then
213   echo "Ladcca:                  yes"
214 else
215   echo "Ladcca:                  no"
216 fi
217 echo "**************************************************************"
218 echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}