chiark / gitweb /
Concentrate knowledge about the `pcre' API in one place.
[disorder] / configure.ac
1 # Process this file with autoconf to produce a configure script.
2 #
3 # This file is part of DisOrder.
4 # Copyright (C) 2004-2014 Richard Kettlewell
5 # Portions copyright (C) 2007 Ross Younger
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 AC_INIT([disorder], [5.1.1], [rjk@greenend.org.uk])
22 AC_CONFIG_AUX_DIR([config.aux])
23 AM_INIT_AUTOMAKE([foreign])
24 AC_CONFIG_SRCDIR([server/disorderd.c])
25 AM_CONFIG_HEADER([config.h])
26 AC_CONFIG_MACRO_DIR([m4])
27
28 # Find host type
29 AC_CANONICAL_HOST
30
31 # What we want to build
32 want_gtk=yes
33 want_python=yes
34 want_tests=yes
35 want_server=yes
36 want_gstdecode=whatever
37 want_cgi=yes
38
39 # APIs we want
40 want_alsa=yes
41 want_oss=yes
42 want_coreaudio=yes
43 want_pulseaudio=yes
44 want_gstreamer=yes
45
46 # By default we don't want gtk-osx.  But if you ask for --with-gtk-osx...
47 #
48 # Disobedience can be built to a native OS X application.  There are some
49 # caveats:
50 #  - you will still need Fink (or something) for other libraries
51 #  - if you wanted an application bundle you are out of luck
52 #  - the menu bar is still in the main window (not at the top of the screen)
53 #  - drag and drop doesn't work
54 #
55 # So it's still rather rough and ready.  But it does work...
56 #
57 # See:
58 #   http://www.gtk-osx.org/
59 #   http://live.gnome.org/GTK%2B/OSX/Framework
60 want_gtkosx=no
61
62 # Checks for programs.
63 AC_PROG_CC
64 AM_PROG_CC_C_O
65 AC_PROG_AWK
66 AC_SET_MAKE
67 if test "x$GCC" = xyes; then
68   gcc_werror=-Werror
69   case "$CC" in
70   *-std=* )
71     ;;
72   * )
73     CC="${CC} -std=gnu99"
74     ;;
75   esac
76 else
77   AC_MSG_ERROR([GNU C is required to build this program])
78   gcc_werror=""
79 fi
80
81 AC_ARG_WITH([alsa],
82             [AS_HELP_STRING([--without-alsa],
83                             [do not build with ALSA support])],
84             [want_alsa=$withval])
85 AC_ARG_WITH([pulseaudio],
86             [AS_HELP_STRING([--without-pulseaudio],
87                             [do not build with PulseAudio support])],
88             [want_pulseaudio=$withval])
89 AC_ARG_WITH([oss],
90             [AS_HELP_STRING([--without-oss],
91                             [do not build with OSS support])],
92             [want_oss=$withval])
93 AC_ARG_WITH([coreaudio],
94             [AS_HELP_STRING([--without-coreaudio],
95                             [do not build with Core Audio support])],
96             [want_coreaudio=$withval])
97 AC_ARG_WITH([tests],
98             [AS_HELP_STRING([--without-tests],
99                             [do not build test suit])],
100             [want_tests=$withval])
101 AC_ARG_WITH([gtk-osx],
102             [AS_HELP_STRING([--with-gtk-osx],
103                             [use native GTK+ (OS X only)])],
104             [want_gtkosx=$withval])
105 AC_ARG_WITH([gstreamer],
106             [AS_HELP_STRING([--with-gstreamer], [select GStreamer version])],
107             [want_gstreamer=$withval])
108
109 AC_MSG_CHECKING([for a known target platform])
110 case "$host" in
111 *empeg* )
112   AC_MSG_RESULT([empeg car stereo])
113   AC_DEFINE([EMPEG_HOST],[1],[define if host is an empeg car stereo])
114   # work around broken toolchain
115   AC_CHECK_LIB([gpg-error], [gpg_strerror])
116   AC_CHECK_LIB([pthread], [pthread_create])
117   want_server=no
118   want_cgi=no
119  ;;
120 *linux* | *Linux* )
121   AC_MSG_RESULT([Linux])
122   AC_DEFINE_UNQUOTED([PATH_PROC_MOUNTS],["/proc/mounts"],[path to kernel mount list])
123   ;;
124 *-apple-darwin* )
125   AC_MSG_RESULT([Mac OS X])
126   # AudioHardwareGetProperty is deprecated in 10.6, but it's still _there_,
127   # so we'll just turn off the warning.
128   CC="$CC -Wno-deprecated-declarations"
129   if test $want_coreaudio = yes; then
130     COREAUDIO="-framework CoreFoundation -framework CoreServices -framework CoreAudio"
131   fi
132   browser=open
133   AC_MSG_CHECKING([Mac OS X target version])
134   # We honor MACOSX_DEPLOYMENT_TARGET in the environment, emulating gcc's
135   # behaviour.  But we provide a command line option to override it and
136   # we default to wide support instead of supporting only the build platform.
137   #
138   # Currently if you ask for 10.5 you will get a deprecation warning
139   # when building the CoreAudio support code.  For the time being the
140   # answer to this is "don't do that then".  If a good reason to ask
141   # for a 10.5 deployment target emerges then this will be fixed.
142   if test -z "$MACOSX_DEPLOYMENT_TARGET"; then
143     MACOSX_DEPLOYMENT_TARGET=10.0
144   fi
145   AC_ARG_WITH([deployment-target],
146               [AS_HELP_STRING([--with-deployment-target=TARGET],
147                               [set target OS X version])],
148               [MACOSX_DEPLOYMENT_TARGET=$withval])
149   # Convert to desired format
150   underscored=`echo $MACOSX_DEPLOYMENT_TARGET|sed 's/\./_/'`
151   minver="MAC_OS_X_VERSION_$underscored"
152   AC_MSG_RESULT([$minver])
153   AC_DEFINE_UNQUOTED([MAC_OS_X_VERSION_MIN_REQUIRED], [$minver],
154                      [define to minimum version of Mac OS X to support])
155
156   if test $want_gtkosx = no; then
157     # Fink's GTK+ is hopelessly broken
158     PKG_CONFIG_PATH=${PKG_CONFIG_PATH:-/sw/lib/pango-ft219/lib/pkgconfig}
159     export PKG_CONFIG_PATH
160   fi
161
162   ;;
163 *-freebsd* )
164   AC_MSG_RESULT([FreeBSD])
165   # Ports install to /usr/local but the compiler stupidly doesn't look
166   # there by default
167   LDFLAGS="${LDFLAGS} -L/usr/local/lib"
168   CPPFLAGS="${CPPFLAGS} -isystem /usr/local/include"
169   # Look for a suitable version of libdb among the versions found in FreeBSD 7.0
170   AC_CACHE_CHECK([looking for a libdb install],[rjk_cv_libdb],[
171     rjk_cv_libdb="none"
172     for db in db43 db44 db45 db47 db48; do
173       if test -e /usr/local/lib/$db; then
174         rjk_cv_libdb=$db
175         break
176       fi
177     done
178   ])
179   if test $rjk_cv_libdb != none; then
180     LDFLAGS="${LDFLAGS} -L/usr/local/lib/$rjk_cv_libdb"
181     CPPFLAGS="${CPPFLAGS} -isystem /usr/local/include/$rjk_cv_libdb"
182   fi
183   # iconv needs bodging
184   AC_SUBST(LIBICONV,[-liconv])
185   ;;
186 * )
187   AC_MSG_RESULT([unknown, winging it])
188   ;;
189 esac
190 AC_SUBST([COREAUDIO])
191
192 AC_ARG_WITH([browser],
193             [AS_HELP_STRING([--with-browser=BROWSER],
194                             [use BROWSER to display HTML])],
195             [browser=$withval])
196
197 AC_CACHE_CHECK([default HTML viewer],[rjk_cv_browser],[
198   rjk_cv_browser=UNKNOWN
199   for candidate in x-www-browser sensible-browser firefox mozilla konqueror netscape; do
200     if type $candidate >/dev/null 2>&1; then
201       rjk_cv_browser="$candidate"
202       break
203     fi
204   done
205 ])
206 if test -z "$browser"; then
207   browser="$rjk_cv_browser"
208 fi
209 AC_DEFINE_UNQUOTED([BROWSER],["$browser"],[HTML viewer])
210
211 # Figure out what version of sox is installed
212 AC_CACHE_CHECK([sox version],[rjk_cv_soxver],[
213   rjk_cv_soxver=UNKNOWN
214   if sox --version > /dev/null 2>&1; then
215     rjk_cv_soxver=`sox --version|$AWK '{ if(match($0, /[[0-9\.]]+/)) print substr($0,RSTART,RLENGTH)}'`
216   else
217     rjk_cv_soxver=`sox -h 2>&1|$AWK '/Version/ { if(match($0, /[[0-9\.]]+/)) print substr($0,RSTART,RLENGTH)}'`
218   fi
219 ])
220
221 # Decide what command line options to use
222 #
223 # sox version   endian     bits       deployed
224 # 12.17.9       -x         -[bwld]    debian etch, ubuntu dapper
225 # 14.0.0        -x/-[BL]   -[bwld]    ubuntu hardy
226 # 14.0.1        -x/-[BL]   -[1248]    debian lenny
227 # 14.2.0        -x/-[BL]   -[1248]    debian sid (at 2008-12)
228
229 AC_CACHE_CHECK([default sox generation],[rjk_cv_soxgen],[
230   case $rjk_cv_soxver in
231   [[0-9]].* | 1[[0123]].* )
232     rjk_cv_soxgen=0
233     ;;
234   * )
235     rjk_cv_soxgen=1
236     ;;
237   esac
238 ])
239 AC_DEFINE_UNQUOTED([DEFAULT_SOX_GENERATION],[$rjk_cv_soxgen],
240                    [default sox generation])
241
242 AC_ARG_WITH([server],
243             [AS_HELP_STRING([--without-server],
244                             [do not build server])],
245             [want_server=$withval])
246 AC_ARG_WITH([cgi],
247             [AS_HELP_STRING([--without-cgi],
248                             [do not build CGI])],
249             [want_cgi=$withval])
250 AC_ARG_WITH([gtk],
251             [AS_HELP_STRING([--without-gtk],
252                             [do not build GTK+ client])],
253             [want_gtk=$withval])
254 AC_ARG_WITH([python],
255             [AS_HELP_STRING([--without-python],
256                             [do not build Python support])],
257             [want_python=$withval])
258 AC_ARG_WITH([gstdecode],
259             [AS_HELP_STRING([--with-gstdecode],
260                             [require GStreamer-based decoder])],
261             [want_gstdecode=$withval])
262
263 if test $want_server = no; then
264   want_cgi=no
265   want_gstdecode=no
266 fi
267
268 #
269 # OS          Document Root                  CGI directory
270 # ==          =============                  =============
271 # Debian      /var/www                       /usr/lib/cgi-bin
272 # Ubuntu      /var/www                       /usr/lib/cgi-bin
273 # Red Hat     /var/www/html                  /var/www/cgi-bin
274 #      or:    /home/httpd/html/              /home/httpd/cgi-bin
275 # Slackware   /var/www/htdocs                (unknown)
276 # SuSE        /srv/www/html                  /srv/www/cgi-bin
277 # Gentoo      /var/www/localhost/htdocs      /var/www/localhost/cgi-bin/
278 # FreeBSD     /usr/local/www/data            /usr/local/www/cgi-bin
279 #      or:    /usr/local/www/???/data        /usr/local/www/???/cgi-bin
280 # OS X        /Library/WebServer/Documents   /Library/WebServer/CGI-Executables
281 # Apache      /usr/local/apache/htdocs       (none)
282 #
283 # Sources:
284 #   http://wiki.linuxquestions.org/wiki/Apache
285 #   http://mapserver.gis.umn.edu/docs/howto/suse-linux
286 #   http://www.yolinux.com/TUTORIALS/LinuxTutorialWebSiteConfig.html
287 #   http://sources.gentoo.org/viewcvs.py/apache/trunk/dist/2.2/conf/vhosts.d/default_vhost.include?rev=198&view=log
288 #   http://httpd.apache.org/docs/
289 #
290 if test $want_cgi = yes; then
291   if test -z "$httpdir"; then
292     AC_CACHE_CHECK([for httpd document root],[rjk_cv_httpdir],[
293       rjk_cv_httpdir="/usr/local/apache/htdocs"
294       for dir in /var/www/html \
295                  /var/www/htdocs \
296                  /var/www/localhost/htdocs \
297                  /var/www \
298                  /home/httpd/html \
299                  /srv/www/html \
300                  /usr/local/www/data \
301                  /usr/local/www/*/data \
302                  /Library/WebServer/Documents \
303                  /usr/local/apache/htdocs; do
304         if test -d "$dir"; then
305           rjk_cv_httpdir="$dir"
306         fi
307       done
308     ])
309     httpdir="$rjk_cv_httpdir"
310   fi
311   if test ! -z "$cgidir"; then
312     # This is a bit harsh but should stop any disasters
313     AC_MSG_ERROR([cgidir has been renamed to cgiexecdir])
314   fi
315   if test -z "$cgiexecdir"; then
316     AC_CACHE_CHECK([for CGI directory],[rjk_cv_cgiexecdir],[
317       rjk_cv_cgiexecdir="/usr/lib/cgi-bin"
318       for dir in /usr/lib/cgi-bin \
319                  /Library/WebServer/CGI-Executables \
320                  /srv/www/cgi-bin \
321                  /var/www/cgi-bin \
322                  /home/httpd/cgi-bin \
323                  /var/www/localhost/cgi-bin \
324                  /usr/local/lib/cgi-bin \
325                  /usr/local/www/cgi-bin \
326                  /usr/local/www/*/cgi-bin; do
327         if test -d "$dir"; then
328           rjk_cv_cgiexecdir="$dir"
329           break
330         fi
331       done
332     ])
333     cgiexecdir="$rjk_cv_cgiexecdir"
334   fi
335 fi
336 AC_ARG_VAR([cgiexecdir], [location of cgi-bin directory, e.g. /usr/lib/cgi-bin])
337 AC_ARG_VAR([httpdir], [location of http document root, e.g. /var/www/htdocs])
338 if test -z "$pkghttpdir"; then
339   pkghttpdir='$(httpdir)/disorder'
340 fi
341 AC_SUBST([pkghttpdir])
342
343 if test -z "$dochtmldir"; then
344   dochtmldir='$(docdir)/html'
345 fi
346 AC_SUBST([dochtmldir])
347
348 subdirs="scripts common lib"
349 if test $want_tests = yes; then
350   subdirs="${subdirs} libtests"
351 fi
352 subdirs="${subdirs} clients doc examples debian"
353
354 if test $want_server = yes; then
355   subdirs="${subdirs} server plugins sounds"
356 fi
357 if test $want_cgi = yes; then
358   subdirs="${subdirs} cgi templates images"
359 fi
360 if test $want_gtk = yes; then
361   subdirs="${subdirs} disobedience"
362   if test $want_server = no; then
363     subdirs="${subdirs} images"
364   fi
365 fi
366 if test $want_tests = yes && test $want_python = yes; then
367   AM_PATH_PYTHON([2.5])
368   subdirs="${subdirs} python tests"
369 fi
370 AC_SUBST([subdirs])
371
372 # libtool config
373 AC_LIBTOOL_DLOPEN
374 AC_DISABLE_STATIC
375
376 AC_PROG_LIBTOOL
377
378 AC_CACHE_CHECK([for GNU sed],[rjk_cv_gnused],[
379   rjk_cv_gnused="not found"
380   for candidate in sed gsed; do
381     if $candidate --version >/dev/null 2>&1; then
382       rjk_cv_gnused=$candidate 
383     fi
384   done
385 ])
386 GNUSED="${GNUSED:-$rjk_cv_gnused}"
387 if test "$GNUSED" = "not found"; then
388   AC_MSG_ERROR([GNU sed is required to build this program])
389 fi
390 AC_SUBST([GNUSED])
391
392 AC_CHECK_PROGS([GROG],[grog])
393 AM_CONDITIONAL([GROG],[test "x$GROG" != xnone])
394
395 missing_libraries=""
396 missing_headers=""
397 missing_functions=""
398
399 AC_DEFINE(_GNU_SOURCE, 1, [required for e.g. strsignal])
400
401 AC_PATH_PROG([SENDMAIL],[sendmail],[none],[$PATH:/usr/sbin:/usr/lib])
402
403 # Macs might have libraries under fink's root
404 AC_PATH_PROG([FINK],[fink],[none],[$PATH:/sw/bin])
405 if test "x$FINK" != xnone; then
406   # Find Fink prefix
407   AC_CACHE_CHECK([fink install directory],[rjk_cv_finkprefix],[
408     rjk_cv_finkprefix="`echo "$FINK" | sed 's,/bin/fink$,,'`"
409   ])
410   # Add include and link paths
411   finkdir="${rjk_cv_finkprefix}"
412   finkbindir="${rjk_cv_finkprefix}/bin"
413   CPPFLAGS="${CPPFLAGS} -isystem ${rjk_cv_finkprefix}/include/gc -isystem ${rjk_cv_finkprefix}/include"
414   if test $want_server = yes; then
415     CPPFLAGS="${CPPFLAGS} -isystem ${rjk_cv_finkprefix}/include/db4"
416   fi
417   LDFLAGS="${LDFLAGS} -L${rjk_cv_finkprefix}/lib"
418   # Distinguish 32- and 64-bit fink
419   AC_CACHE_CHECK([whether Fink is 32-bit or 64-bit],[rjk_cv_finkbits],[
420     odata=`otool -v -h $finkbindir/dpkg`
421     case "$odata" in
422     *X86_64* )
423       rjk_cv_finkbits=64
424       ;;
425     *I386* )
426       rjk_cv_finkbits=32
427       ;;
428     * )
429       rjk_cv_finkbits=unknown
430       ;;
431     esac
432   ])
433   # Match Fink so we can use its libraries
434   case $rjk_cv_finkbits in
435   32 | 64 )
436     CC="$CC -m$rjk_cv_finkbits"
437     ;;
438   esac
439 else
440   finkbindir=""
441 fi
442 AC_SUBST([finkdir])
443 AC_SUBST([finkbindir])
444
445 # Checks for packages.
446 case $want_gstdecode,$want_gstreamer in
447   yes,no) AC_MSG_ERROR([gstdecode requires GStreamer]) ;;
448   whatever,no) want_gstdecode=no ;;
449   no,*) want_gstreamer=no ;;
450   *,yes) want_gstreamer="1.0 0.10" ;;
451 esac
452
453 AH_TEMPLATE([HAVE_GSTREAMER_0_10],
454     [Define if building against GStreamer 0.10])
455 AH_TEMPLATE([HAVE_GSTREAMER_1_0],
456     [Define if building against GStreamer 1.0])
457
458 for i in $want_gstreamer; do
459   case $i in
460     0.10) v=0.10 V=0_10 ;;
461     1.0) v=1.0 V=1_0 ;;
462     *) AC_MSG_ERROR([unrecognized GStreamer version]) ;;
463   esac
464   PKG_CHECK_MODULES([GSTREAMER],
465       [gstreamer-$v gstreamer-app-$v gstreamer-audio-$v],
466       [have_gstreamer=$v], [have_gstreamer=no])
467   case $have_gstreamer in no) continue ;; esac
468   AC_DEFINE_UNQUOTED([HAVE_GSTREAMER_$V], [1])
469   break
470 done
471
472 case $want_gstdecode,$have_gstreamer,$have_gst_plugins_base in
473   whatever,no,* | whatever,*,no)
474     want_gstdecode=no
475     ;;
476   yes,no,* | yes,*,no)
477     case $have_gstreamer in
478       no) missing_libraries="$missing_libraries gstreamer" ;;
479     esac
480     ;;
481   *)
482     want_gstdecode=yes
483     ;;
484 esac
485
486 mdw_SAVE_CFLAGS=$CFLAGS
487 mdw_SAVE_LIBS=$LIBS
488 CFLAGS="$CFLAGS $GSTREAMER_CFLAGS"
489 LIBS="$LIBS $GSTREAMER_LIBS"
490 AC_CHECK_FUNCS([gst_audio_info_from_caps])
491 CFLAGS=$mdw_SAVE_CFLAGS
492 LIBS=$mdw_SAVE_LIBS
493
494 # Checks for libraries.
495 # We save up a list of missing libraries that we can't do without
496 # and report them all at once.
497 AC_CHECK_LIB(gc, GC_malloc,            [AC_SUBST(LIBGC,[-lgc])],
498             [missing_libraries="$missing_libraries libgc"])
499 mdw_SAVE_LIBS=$LIBS
500 LIBS="$LIBS $LIBGC"
501 AC_CHECK_FUNCS(GC_get_all_interior_pointers)
502 LIBS=$mdw_SAVE_LIBS
503 AC_CHECK_LIB(gcrypt, gcry_md_open,
504              [AC_SUBST(LIBGCRYPT,[-lgcrypt])],
505             [missing_libraries="$missing_libraries libgcrypt"])
506 AC_CHECK_LIB(pcre, pcre_compile,
507              [AC_SUBST(LIBPCRE,[-lpcre])],
508              [missing_libraries="$missing_libraries libpcre"])
509 if test $want_alsa = yes; then
510   AC_CHECK_LIB([asound], [snd_pcm_open],
511                [AC_SUBST(LIBASOUND,[-lasound])])
512 fi
513 if test $want_pulseaudio = yes; then
514   PKG_CHECK_MODULES([PULSEAUDIO],[libpulse],
515                     [AC_DEFINE([HAVE_PULSEAUDIO],[1],[define to 1 for PulseAudio support])],
516                     [missing_libraries="$missing_libraries libpulse"])
517   PKG_CHECK_MODULES([PULSEAUDIO_SIMPLE],[libpulse-simple],,
518                     [missing_libraries="$missing_libraries libpulse-simple"])
519 fi
520 AC_CHECK_LIB([samplerate],[src_new],
521              [AC_SUBST([LIBSAMPLERATE],[-lsamplerate])])
522 if test $want_server = yes; then
523   RJK_CHECK_LIB(db, db_create, [#include <db.h>],
524                [AC_SUBST(LIBDB,[-ldb])],
525                [missing_libraries="$missing_libraries libdb"])
526   AC_CHECK_LIB(vorbis, vorbis_info_clear,
527                [:],
528                [missing_libraries="$missing_libraries libvorbis"])
529   AC_CHECK_LIB(vorbisfile, ov_open,
530                [AC_SUBST(LIBVORBISFILE,["-lvorbisfile -lvorbis"])],
531                [missing_libraries="$missing_libraries libvorbisfile"],
532                [-lvorbis])
533   AC_CHECK_LIB(mad, mad_stream_init,
534                [AC_SUBST(LIBMAD,[-lmad])],
535                [missing_libraries="$missing_libraries libmad"])
536   AC_CHECK_LIB([FLAC], [FLAC__stream_decoder_new],
537                [AC_SUBST(LIBFLAC,[-lFLAC])],
538                [missing_libraries="$missing_libraries libFLAC"])
539 fi
540 AC_CHECK_LIB([pthread], [pthread_create],
541              [AC_SUBST(LIBPTHREAD,[-lpthread])],
542              [missing_libraries="$missing_libraries libpthread"])
543
544 if test $want_gtk = yes; then
545   if test $want_gtkosx = yes; then
546     GTK_CFLAGS="-isystem /Library/Frameworks/Gtk.framework/Headers -isystem /Library/Frameworks/Cairo.framework/Headers"
547     GLIB_CFLAGS="-isystem /Library/Frameworks/GLib.framework/Headers"
548     GTK_LIBS="-framework Gtk -framework GLib"
549   else
550     AM_PATH_GLIB_2_0([],[],[missing_libraries="$missing_libraries libglib"])
551     AM_PATH_GTK_2_0([],[],[missing_libraries="$missing_libraries libgtk"])
552   fi
553 fi
554
555 # Some platforms have iconv already
556 AC_CHECK_FUNC(iconv_open, [:],
557               [RJK_CHECK_LIB(iconv, iconv_open, [#include <iconv.h>],
558                             [AC_SUBST(LIBICONV,[-liconv])],
559                             [missing_functions="$missing_functions iconv_open"])])
560 AC_CHECK_FUNC([gethostbyname],[:],[
561   AC_CHECK_LIB(nsl,gethostbyname,
562                [AC_SUBST(LIBNSL,[-lnsl])],
563                [missing_functions="$missing_functions gethostbyname"])])
564 AC_CHECK_FUNC([socket],[:],[
565   AC_CHECK_LIB(socket,socket,
566                [AC_SUBST(LIBSOCKET,[-lsocket])],
567                [missing_functions="$missing_functions socket"])])
568 AC_CHECK_FUNC([dlopen],[:],[
569   AC_CHECK_LIB(dl,dlopen,
570                [AC_SUBST(LIBDL,[-ldl])],
571                [missing_functions="$missing_functions dlopen"])])
572
573 if test ! -z "$missing_libraries"; then
574   AC_MSG_ERROR([missing libraries:$missing_libraries])
575 fi
576
577 # Checks for header files.
578 RJK_FIND_GC_H
579 if test $want_oss = yes; then
580   AC_CHECK_HEADERS([sys/soundcard.h])
581 fi
582 if test $want_alsa = yes; then
583   AC_CHECK_HEADERS([alsa/asoundlib.h])
584 fi
585 if test $want_coreaudio = yes; then
586   AC_CHECK_HEADERS([CoreAudio/AudioHardware.h])
587 fi
588 AC_CHECK_HEADERS([inttypes.h sys/time.h sys/socket.h netinet/in.h \
589                   arpa/inet.h sys/un.h netdb.h pcre.h pwd.h langinfo.h])
590 # We don't bother checking very standard stuff
591 # Compilation will fail if any of these headers are missing, so we
592 # check for them here and fail early.
593 if test $want_server = yes; then
594   AC_CHECK_HEADERS([db.h],[:],[
595     missing_headers="$missing_headers $ac_header"
596   ])
597 fi
598 AC_CHECK_HEADERS([dlfcn.h gcrypt.h \
599                  getopt.h iconv.h langinfo.h \
600                  pcre.h sys/ioctl.h \
601                  syslog.h unistd.h],[:],[
602   missing_headers="$missing_headers $ac_header"
603 ])
604 AC_CHECK_HEADERS([samplerate.h])
605
606 if test ! -z "$missing_headers"; then
607   AC_MSG_ERROR([missing headers:$missing_headers])
608 fi
609
610 # We require that libpcre support UTF-8
611 RJK_REQUIRE_PCRE_UTF8([-lpcre])
612
613 # Checks for typedefs, structures, and compiler characteristics.
614 AC_C_CONST
615 AC_TYPE_SIZE_T
616 AC_C_INLINE
617 AC_C_BIGENDIAN
618 AC_CHECK_TYPES([struct sockaddr_in6],,,[AC_INCLUDES_DEFAULT
619 #include <netinet/in.h>])
620
621 # Figure out how we'll check for devices being mounted and unmounted
622 AC_CACHE_CHECK([for list of mounted filesystems],[rjk_cv_mtab],[
623   if test -e /etc/mtab; then
624     rjk_cv_mtab=/etc/mtab
625   else
626     rjk_cv_mtab=none
627   fi
628 ])
629 if test $rjk_cv_mtab != none; then
630   AC_DEFINE_UNQUOTED([PATH_MTAB],["$rjk_cv_mtab"],[path to file containing mount list])
631 fi
632
633 # enable -Werror when we check for certain characteristics:
634
635 old_CFLAGS="${CFLAGS}"
636 CFLAGS="${CFLAGS} $gcc_werror"
637 AC_CHECK_TYPES([long long,uint32_t,uint16_t,uint8_t,intmax_t,uintmax_t])
638 CFLAGS="${old_CFLAGS}"
639
640 # gcrypt maintainers keep changing everything.  Design your interface
641 # first, then implement it once, rather than getting it wrong three or
642 # four times and shipping between each attempt.
643 AC_CACHE_CHECK([for hash handle type in <grypt.h>],
644                [rjk_cv_gcrypt_hash_handle],[
645   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
646 #include <gcrypt.h>
647 ],
648                [gcry_md_hd_t h;])],
649                [rjk_cv_gcrypt_hash_handle=gcry_md_hd_t],[
650     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
651 #include <gcrypt.h>
652 ],
653                  [GcryMDHd h;])],
654                  [rjk_cv_gcrypt_hash_handle=GcryMDHd],
655                  [rjk_cv_gcrypt_hash_handle=GCRY_MD_HD])])])
656 AC_DEFINE_UNQUOTED([gcrypt_hash_handle],[$rjk_cv_gcrypt_hash_handle],
657                    [libgcrypt hash handle type])
658
659 AC_CACHE_CHECK([for gcry_error_t in <grypt.h>],
660                [rjk_cv_have_gcry_error_t],[
661   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
662 #include <gcrypt.h>
663 ],
664                  [gcry_error_t e;])],
665                  [rjk_cv_have_gcry_error_t=yes],
666                  [rjk_cv_have_gcry_error_t=no])])
667 if test $rjk_cv_have_gcry_error_t = yes; then
668   AC_DEFINE([HAVE_GCRY_ERROR_T],1,[define if <gcrypt.h> defines gcry_error_t])
669 fi
670
671 # Checks for functions
672 if test $ac_cv_type_long_long = yes; then
673   AC_CHECK_FUNCS([atoll strtoll],[:],[
674     missing_functions="$missing_functions $ac_func"
675   ])
676   # Darwin sometimes fails to declare strtoll (e.g. if you ask for -std=c99)
677   AC_CACHE_CHECK([whether strtoll is declared in <stdlib.h>],
678                  [rjk_cv_strtoll_declared],[
679     AC_EGREP_HEADER([strtoll], [stdlib.h],
680                     [rjk_cv_strtoll_declared=yes],
681                     [rjk_cv_strtoll_declared=no])])
682   if test $rjk_cv_strtoll_declared = yes; then
683     AC_DEFINE([DECLARES_STRTOLL],[1],[define if <stdlib.h> declares strtoll])
684   fi
685   AC_CACHE_CHECK([whether atoll is declared in <stdlib.h>],
686                  [rjk_cv_atoll_declared],[
687     AC_EGREP_HEADER([atoll], [stdlib.h],
688                     [rjk_cv_atoll_declared=yes],
689                     [rjk_cv_atoll_declared=no])])
690   if test $rjk_cv_atoll_declared = yes; then
691     AC_DEFINE([DECLARES_ATOLL],[1],[define if <stdlib.h> declares atoll])
692   fi
693 fi
694 AC_CHECK_FUNCS([ioctl nl_langinfo strsignal setenv unsetenv],[:],[
695   missing_functions="$missing_functions $ac_func"
696 ])
697 # fsync will do if fdatasync not available
698 AC_CHECK_FUNCS([fdatasync],[:],[
699   AC_CHECK_FUNCS([fsync],
700                  [AC_DEFINE([fdatasync],[fsync],[define fdatasync to fsync if not available])],
701                  [missing_functions="$missing_functions fdatasync"])])
702 if test ! -z "$missing_functions"; then
703   AC_MSG_ERROR([missing functions:$missing_functions])
704 fi
705 # dlsym will do if dlfunc not available
706 AC_CHECK_FUNCS([dlfunc],[:],[
707   AC_DEFINE([dlfunc],[dlsym],[define dlfunc to dlsym if not available])
708 ])
709 if test ! -z "$missing_functions"; then
710   AC_MSG_ERROR([missing functions:$missing_functions])
711 fi
712
713 # Functions we can take or leave
714 AC_CHECK_FUNCS([fls getfsstat closesocket])
715
716 if test $want_server = yes; then
717   # <db.h> had better be version 3 or later
718   AC_CACHE_CHECK([db.h version],[rjk_cv_db_version],[
719     AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
720                        #include <db.h>
721                        #ifndef DB_VERSION_MAJOR
722                        # error cannot determine db version
723                        #endif
724                        #if DB_VERSION_MAJOR < 4
725                        # error inadequate db version
726                        #endif
727                        #if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR <= 2
728                        # error inadequate db version
729                        #endif
730                       ],[])],
731                       [rjk_cv_db_version=ok],
732                       [rjk_cv_db_version=inadequate])
733     if test $rjk_cv_db_version = ok; then
734       AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
735                          #include <db.h>
736                          #if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR == 6
737                          # error http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=510270
738                          #endif
739                         ],[])],
740                         [rjk_cv_db_version=ok],
741                         [rjk_cv_db_version=toxic])
742     fi
743   ])
744   case $rjk_cv_db_version in
745   ok )
746     ;;
747   inadequate )
748     AC_MSG_ERROR([need db version at least 4.3 (but not 4.6)])
749     ;;
750   toxic )
751     AC_MSG_ERROR([db version 4.6.x does not work - see debian bug 510270])
752     ;;
753   esac
754 fi
755
756 AM_CONDITIONAL([SERVER], [test x$want_server = xyes])
757 if test $want_gtk = yes; then
758   AC_DEFINE([WITH_GTK], [1], [define if using GTK+])
759 fi
760 AM_CONDITIONAL([GTK], [test x$want_gtk = xyes])
761 AM_CONDITIONAL([GSTDECODE], [test x$want_gstdecode = xyes])
762
763 # Some GCC invocations warn for converting function pointers to void *.
764 # This is fair enough, as it's technically forbidden, but we use dlsym()
765 # which can pretty much only exist if object and function pointers are
766 # interconvertable.  So we disable -Werror if need be.
767 if test ! -z "$gcc_werror" && test "$ac_cv_func_dlfunc" != yes; then
768   CFLAGS="${CFLAGS} $gcc_werror"
769   AC_CACHE_CHECK([whether function pointers can be converted to void * without a warning],
770                  [rjk_cv_function_pointer_cast],[
771     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
772   void somefunction(void);],
773                       [(void *)somefunction])],
774                       [rjk_cv_function_pointer_cast=yes],
775                       [rjk_cv_function_pointer_cast=no])])
776   if test $rjk_cv_function_pointer_cast = no; then
777     gcc_werror=""
778   fi
779   CFLAGS="${old_CFLAGS}"
780 fi
781
782 if test "x$GCC" = xyes; then
783   # We need LLONG_MAX and annoyingly GCC doesn't always give it to us
784   # by default.
785   AC_CACHE_CHECK([what C version to ask for],[rjk_cv_cstd],[
786     AC_TRY_COMPILE([#include <limits.h>],[
787       long long n = LLONG_MAX;
788     ],[rjk_cv_cstd=default],[
789       old_CC="$CC"
790       CC="${CC} -std=gnu99"
791       AC_TRY_COMPILE([#include <limits.h>],[
792         long long n = LLONG_MAX;
793       ],[rjk_cv_cstd=gnu99],[rjk_cv_cstd=unknown])
794       CC="$old_CC"
795     ])
796   ])
797   case $rjk_cv_cstd in
798   default | unknown )
799     ;;
800   * )
801     CC="${CC} -std=${rjk_cv_cstd}"
802     ;;
803   esac
804
805   # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29478
806   AC_CACHE_CHECK([checking for GCC bug 29478],[rjk_cv_pr29478],[
807     old_CC="$CC"
808     if test $GCC = yes; then
809       CC="$CC -Wall -Werror"
810     fi
811     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
812       static int x(char *f) {
813        return *f;
814       }
815       int z(const char *g) {
816         return x((char *)g);
817       }],[])],
818       [rjk_cv_pr29478=no],
819       [rjk_cv_pr29478=yes]
820     )
821     CC="$old_CC"
822   ])
823   if test $rjk_cv_pr29478 = yes; then
824     gcc_werror=''
825   fi
826
827   AC_CACHE_CHECK([checking for excessively strict -Wreturn-type],
828                  [rjk_cv_gcc44_stupidity],[
829     old_CC="$CC"
830     if test $GCC = yes; then
831       CC="$CC -Wreturn-type -Werror"
832     fi
833     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[
834       static void *threadfn(void) {
835         for(;;)
836           ;
837       }],[])],
838       [rjk_cv_gcc44_stupidity=no],
839       [rjk_cv_gcc44_stupidity=yes])
840     CC="$old_CC"
841   ])
842   if test $rjk_cv_gcc44_stupidity = yes; then
843     AC_DEFINE([HAVE_STUPID_GCC44],[1],[Define if your compiler has excessively strict -Wreturn-type])
844   fi
845
846   # a reasonable default set of warnings
847   CC="${CC} -Wall -W -Wpointer-arith \
848         -Wwrite-strings -Wmissing-prototypes \
849         -Wmissing-declarations -Wnested-externs"
850
851   # Fix up GTK+ and GLib compiler flags
852   GTK_CFLAGS="`echo \"$GTK_CFLAGS\"|sed 's/-I/-isystem /g'`"
853   GLIB_CFLAGS="`echo \"$GLIB_CFLAGS\"|sed 's/-I/-isystem /g'`"
854
855   if test "$gcc_werror" != ''; then
856     # GCC 2.95 doesn't know to ignore warnings from system headers
857     AC_CACHE_CHECK([whether -Werror is usable],
858                     rjk_cv_werror, [
859       save_CFLAGS="${CFLAGS}"
860       CFLAGS="${CFLAGS} ${GTK_CFLAGS} -Werror"
861       AC_TRY_COMPILE([#if WITH_GTK
862  #include <gtk/gtk.h>
863 #endif
864
865 struct s { int a, b; };
866 const struct s sv = { .a = 1 };],
867                      [],
868                      [rjk_cv_werror=yes],
869                      [rjk_cv_werror=no])
870       CFLAGS="${save_CFLAGS}"
871     ])
872     if test $rjk_cv_werror = no; then
873       gcc_werror=''
874     fi
875   fi
876   CC="${CC} $gcc_werror"
877
878   # for older GCCs that don't know %ju (etc)
879   AC_CACHE_CHECK([whether -Wno-format is required],
880                  rjk_cv_noformat,
881                  AC_TRY_COMPILE([#include <stdio.h>
882 #include <stdint.h>
883 ],
884                                 [printf("%ju", (uintmax_t)0);],
885                                 [rjk_cv_noformat=no],
886                                 [rjk_cv_noformat=yes]))
887   if test $rjk_cv_noformat = yes; then
888     CC="${CC} -Wno-format"
889   fi
890
891   AC_CACHE_CHECK([whether -Wshadow is OK],
892                  rjk_cv_shadow,
893                  oldCC="${CC}"
894                  CC="${CC} -Wshadow"
895                  [AC_TRY_COMPILE([
896 #include <unistd.h>
897 #include <vorbis/vorbisfile.h>
898 ],
899                                 [],
900                                 [rjk_cv_shadow=yes],
901                                 [rjk_cv_shadow=no])
902                  CC="${oldCC}"])
903   if test $rjk_cv_shadow = yes; then
904     CC="${CC} -Wshadow"
905   fi
906 fi
907
908 RJK_GCOV
909
910 AH_BOTTOM([#ifdef __GNUC__
911 # define attribute(x) __attribute__(x)
912 #else
913 # define attribute(x)
914 #endif])
915
916 AC_CONFIG_FILES([Makefile
917                  images/Makefile
918                  scripts/Makefile
919                  common/Makefile
920                  lib/Makefile
921                  server/Makefile
922                  cgi/Makefile
923                  clients/Makefile
924                  disobedience/Makefile
925                  disobedience/manual/Makefile
926                  doc/Makefile
927                  templates/Makefile
928                  plugins/Makefile
929                  debian/Makefile
930                  sounds/Makefile
931                  python/Makefile
932                  examples/Makefile
933                  libtests/Makefile
934                  tests/Makefile])
935 AC_OUTPUT
936
937 if test $GCC = yes && test "$gcc_werror" = ''; then
938   AC_MSG_WARN([building without -Werror])
939 fi
940 if test $want_python = no; then
941   AC_MSG_WARN([cannot run the test suit without Python])
942 fi
943 if test $want_server = yes && test "$ac_cv_lib_samplerate_src_new" != yes; then
944   AC_MSG_WARN([libsamplerate will be required in a future version])
945 fi
946
947 # Local Variables:
948 # indent-tabs-mode:nil
949 # End: