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