chiark / gitweb /
Saner distcheck cgiexecdir
[disorder] / configure.ac
CommitLineData
460b9539 1# Process this file with autoconf to produce a configure script.
2#
3# This file is part of DisOrder.
5aff007d 4# Copyright (C) 2004-2008 Richard Kettlewell
313acc77 5# Portions copyright (C) 2007 Ross Younger
460b9539 6#
e7eb3a27 7# This program is free software: you can redistribute it and/or modify
460b9539 8# it under the terms of the GNU General Public License as published by
e7eb3a27 9# the Free Software Foundation, either version 3 of the License, or
460b9539 10# (at your option) any later version.
11#
e7eb3a27
RK
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#
460b9539 17# You should have received a copy of the GNU General Public License
e7eb3a27 18# along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 19#
20
d8b95785 21AC_INIT([disorder], [4.2+], [richard+disorder@sfere.greenend.org.uk])
460b9539 22AC_CONFIG_AUX_DIR([config.aux])
d8b95785 23AM_INIT_AUTOMAKE(disorder, [4.2+])
460b9539 24AC_CONFIG_SRCDIR([server/disorderd.c])
25AM_CONFIG_HEADER([config.h])
26
dea8f8aa
RK
27# Find host type
28AC_CANONICAL_HOST
29
460b9539 30# What we want to build
460b9539 31want_gtk=yes
32want_python=yes
7affb407 33want_tests=yes
4cbafe13
RK
34want_server=yes
35want_cgi=yes
460b9539 36
e2f0c461
RK
37# APIs we want
38want_alsa=yes
39want_oss=yes
40want_coreaudio=yes
41
a9f0ad12
RK
42# Checks for programs.
43AC_PROG_CC
44AC_SET_MAKE
45if test "x$GCC" = xyes; then
46 gcc_werror=-Werror
439c12ca
RK
47 case "$CC" in
48 *-std=* )
49 ;;
50 * )
51 CC="${CC} -std=gnu99"
52 ;;
53 esac
a9f0ad12 54else
fdca70ee 55 AC_MSG_ERROR([GNU C is required to build this program])
a9f0ad12
RK
56 gcc_werror=""
57fi
58
e2f0c461
RK
59AC_ARG_WITH([alsa],
60 [AS_HELP_STRING([--without-alsa],
61 [do not build with ALSA support])],
62 [want_alsa=$withval])
63AC_ARG_WITH([oss],
64 [AS_HELP_STRING([--without-oss],
65 [do not build with OSS support])],
66 [want_oss=$withval])
67AC_ARG_WITH([coreaudio],
68 [AS_HELP_STRING([--without-coreaudio],
69 [do not build with Core Audio support])],
70 [want_coreaudio=$withval])
7affb407
RK
71AC_ARG_WITH([tests],
72 [AS_HELP_STRING([--without-tests],
73 [do not build test suit])],
74 [want_tests=$withval])
e2f0c461 75
a9f0ad12 76AC_MSG_CHECKING([for a known target platform])
dea8f8aa 77case "$host" in
a9f0ad12 78*empeg* )
e3426f7b 79 AC_MSG_RESULT([empeg car stereo])
a9f0ad12
RK
80 AC_DEFINE([EMPEG_HOST],[1],[define if host is an empeg car stereo])
81 # work around broken toolchain
82 AC_CHECK_LIB([gpg-error], [gpg_strerror])
e3426f7b 83 AC_CHECK_LIB([pthread], [pthread_create])
a9f0ad12 84 want_server=no
4cbafe13 85 want_cgi=no
a9f0ad12 86 ;;
dea8f8aa 87*linux* | *Linux* )
a9f0ad12 88 AC_MSG_RESULT([Linux])
dea8f8aa 89 ;;
9086a105 90*-apple-darwin* )
e3426f7b 91 AC_MSG_RESULT([Mac OS X])
e2f0c461
RK
92 if test $want_coreaudio = yes; then
93 COREAUDIO="-framework CoreAudio"
94 fi
0ec4c5e6 95 browser=open
8fcf5c48
RK
96 AC_MSG_CHECKING([Mac OS X target version])
97 # We honor MACOSX_DEPLOYMENT_TARGET in the environment, emulating gcc's
98 # behaviour. But we provide a command line option to override it and
99 # we default to wide support instead of supporting only the build platform.
100 #
101 # Currently if you ask for 10.5 you will get a deprecation warning
102 # when building the CoreAudio support code. For the time being the
103 # answer to this is "don't do that then". If a good reason to ask
104 # for a 10.5 deployment target emerges then this will be fixed.
105 if test -z "$MACOSX_DEPLOYMENT_TARGET"; then
106 MACOSX_DEPLOYMENT_TARGET=10.0
107 fi
108 AC_ARG_WITH([deployment-target],
109 [AS_HELP_STRING([--with-deployment-target=TARGET],
110 [set target OS X version])],
111 [MACOSX_DEPLOYMENT_TARGET=$withval])
112 # Convert to desired format
113 underscored=`echo $MACOSX_DEPLOYMENT_TARGET|sed 's/\./_/'`
114 minver="MAC_OS_X_VERSION_$underscored"
115 AC_MSG_RESULT([$minver])
116 AC_DEFINE_UNQUOTED([MAC_OS_X_VERSION_MIN_REQUIRED], [$minver],
117 [define to minimum version of Mac OS X to support])
467b6eb1
RK
118
119 # Fink's GTK+ is hopelessly broken
120 PKG_CONFIG_PATH=${PKG_CONFIG_PATH:-/sw/lib/pango-ft219/lib/pkgconfig}
121 export PKG_CONFIG_PATH
122
9086a105 123 ;;
70f47acd
RK
124*-freebsd* )
125 AC_MSG_RESULT([FreeBSD])
edbd470f 126 # Ports install to /usr/local but the compiler stupidly doesn't look
127 # there by default
70f47acd 128 LDFLAGS="${LDFLAGS} -L/usr/local/lib"
e6ea27d8 129 CPPFLAGS="${CPPFLAGS} -isystem /usr/local/include"
42f43a11
RK
130 # Look for a suitable version of libdb among the versions found in FreeBSD 7.0
131 AC_CACHE_CHECK([looking for a libdb install],[rjk_cv_libdb],[
132 rjk_cv_libdb="none"
133 for db in db43 db44 db45 db46; do
134 if test -e /usr/local/lib/$db; then
135 rjk_cv_libdb=$db
136 break
137 fi
138 done
139 ])
140 if test $rjk_cv_libdb != none; then
141 LDFLAGS="${LDFLAGS} -L/usr/local/lib/$rjk_cv_libdb"
142 CPPFLAGS="${CPPFLAGS} -isystem /usr/local/include/$rjk_cv_libdb"
143 fi
70f47acd 144 ;;
dea8f8aa 145* )
a9f0ad12 146 AC_MSG_RESULT([unknown, winging it])
dea8f8aa
RK
147 ;;
148esac
9086a105 149AC_SUBST([COREAUDIO])
dea8f8aa 150
f486ea18
RK
151AC_ARG_WITH([browser],
152 [AS_HELP_STRING([--with-browser=BROWSER],
153 [use BROWSER to display HTML])],
154 [browser=$withval])
155
156AC_CACHE_CHECK([default HTML viewer],[rjk_cv_browser],[
157 rjk_cv_browser=UNKNOWN
58d97da4 158 for candidate in x-www-browser sensible-browser firefox mozilla konqueror netscape; do
f486ea18
RK
159 if type $candidate >/dev/null 2>&1; then
160 rjk_cv_browser="$candidate"
161 break
162 fi
163 done
164])
165if test -z "$browser"; then
166 browser="$rjk_cv_browser"
167fi
168AC_DEFINE_UNQUOTED([BROWSER],["$browser"],[HTML viewer])
169
460b9539 170AC_ARG_WITH([server],
171 [AS_HELP_STRING([--without-server],
172 [do not build server])],
173 [want_server=$withval])
4cbafe13
RK
174AC_ARG_WITH([cgi],
175 [AS_HELP_STRING([--without-cgi],
176 [do not build CGI])],
177 [want_cgi=$withval])
460b9539 178AC_ARG_WITH([gtk],
179 [AS_HELP_STRING([--without-gtk],
180 [do not build GTK+ client])],
181 [want_gtk=$withval])
182AC_ARG_WITH([python],
183 [AS_HELP_STRING([--without-python],
184 [do not build Python support])],
185 [want_python=$withval])
186
4cbafe13
RK
187if test $want_server = no; then
188 want_cgi=no
189fi
190
64ac73bb
RK
191#
192# OS Document Root CGI directory
193# == ============= =============
194# Debian /var/www /usr/lib/cgi-bin
195# Ubuntu /var/www /usr/lib/cgi-bin
196# Red Hat /var/www/html /var/www/cgi-bin
197# or: /home/httpd/html/ /home/httpd/cgi-bin
198# Slackware /var/www/htdocs (unknown)
199# SuSE /srv/www/html /srv/www/cgi-bin
200# Gentoo /var/www/localhost/htdocs /var/www/localhost/cgi-bin/
201# FreeBSD /usr/local/www/data /usr/local/www/cgi-bin
202# or: /usr/local/www/???/data /usr/local/www/???/cgi-bin
203# OS X /Library/WebServer/Documents /Library/WebServer/CGI-Executables
204# Apache /usr/local/apache/htdocs (none)
205#
206# Sources:
207# http://wiki.linuxquestions.org/wiki/Apache
208# http://mapserver.gis.umn.edu/docs/howto/suse-linux
209# http://www.yolinux.com/TUTORIALS/LinuxTutorialWebSiteConfig.html
210# http://sources.gentoo.org/viewcvs.py/apache/trunk/dist/2.2/conf/vhosts.d/default_vhost.include?rev=198&view=log
211# http://httpd.apache.org/docs/
212#
4cbafe13 213if test $want_cgi = yes; then
64ac73bb
RK
214 if test -z "$httpdir"; then
215 AC_CACHE_CHECK([for httpd document root],[rjk_cv_httpdir],[
216 rjk_cv_httpdir="not found"
217 for dir in /var/www/html \
218 /var/www/htdocs \
219 /var/www/localhost/htdocs \
220 /var/www \
221 /home/httpd/html \
222 /srv/www/html \
223 /usr/local/www/data \
224 /usr/local/www/*/data \
225 /Library/WebServer/Documents \
226 /usr/local/apache/htdocs; do
227 if test -d "$dir"; then
228 rjk_cv_httpdir="$dir"
229 fi
230 done
231 ])
f03d4184 232 if test "$rjk_cv_cgiexecdir" = "not found"; then
64ac73bb
RK
233 AC_MSG_ERROR([cannot identify httpd documentroot. Set httpdir on configure command line])
234 fi
235 httpdir="$rjk_cv_httpdir"
236 fi
f03d4184
RK
237 if test ! -z "$cgidir"; then
238 # This is a bit harsh but should stop any disasters
239 AC_MSG_ERROR([cgidir has been renamed to cgiexecdir])
240 fi
241 if test -z "$cgiexecdir"; then
242 AC_CACHE_CHECK([for CGI directory],[rjk_cv_cgiexecdir],[
243 rjk_cv_cgiexecdir="not found"
4cbafe13
RK
244 for dir in /usr/lib/cgi-bin \
245 /Library/WebServer/CGI-Executables \
64ac73bb
RK
246 /srv/www/cgi-bin \
247 /var/www/cgi-bin \
248 /home/httpd/cgi-bin \
249 /var/www/localhost/cgi-bin \
4cbafe13
RK
250 /usr/local/lib/cgi-bin \
251 /usr/local/www/cgi-bin \
252 /usr/local/www/*/cgi-bin; do
253 if test -d "$dir"; then
f03d4184 254 rjk_cv_cgiexecdir="$dir"
4cbafe13
RK
255 break
256 fi
257 done
258 ])
f03d4184
RK
259 if test "$rjk_cv_cgiexecdir" = "not found"; then
260 AC_MSG_ERROR([cannot identify CGI install directory. Set cgiexecdir on configure command line])
4cbafe13 261 fi
f03d4184 262 cgiexecdir="$rjk_cv_cgiexecdir"
4cbafe13
RK
263 fi
264fi
f03d4184 265AC_ARG_VAR([cgiexecdir], [location of cgi-bin directory, e.g. /usr/lib/cgi-bin])
64ac73bb
RK
266AC_ARG_VAR([httpdir], [location of http document root, e.g. /var/www/htdocs])
267if test -z "$pkghttpdir"; then
268 pkghttpdir='$(httpdir)/disorder'
269fi
270AC_SUBST([pkghttpdir])
4cbafe13 271
7affb407
RK
272subdirs="scripts lib"
273if test $want_tests = yes; then
274 subdirs="${subdirs} libtests"
275fi
276subdirs="${subdirs} clients doc examples debian"
460b9539 277
278if test $want_server = yes; then
4cbafe13
RK
279 subdirs="${subdirs} server plugins driver sounds"
280fi
281if test $want_cgi = yes; then
282 subdirs="${subdirs} cgi templates images"
460b9539 283fi
460b9539 284if test $want_gtk = yes; then
285 subdirs="${subdirs} disobedience"
286 if test $want_server = no; then
287 subdirs="${subdirs} images"
288 fi
289fi
7affb407 290if test $want_tests = yes && test $want_python = yes; then
56fac00d
RK
291 AM_PATH_PYTHON([2.4])
292 subdirs="${subdirs} python tests"
293fi
460b9539 294AC_SUBST([subdirs])
295
296# libtool config
297AC_LIBTOOL_DLOPEN
298AC_DISABLE_STATIC
299
300AC_PROG_LIBTOOL
301
edbd470f 302AC_CACHE_CHECK([for GNU sed],[rjk_cv_gnused],[
303 rjk_cv_gnused="not found"
304 for candidate in sed gsed; do
305 if $candidate --version >/dev/null 2>&1; then
306 rjk_cv_gnused=$candidate
307 fi
308 done
309])
310GNUSED="${GNUSED:-$rjk_cv_gnused}"
311if test "$GNUSED" = "not found"; then
312 AC_MSG_ERROR([GNU sed is required to build this program])
313fi
314AC_SUBST([GNUSED])
315
4b9b77a6
RK
316AC_CHECK_PROGS([GROG],[grog])
317AM_CONDITIONAL([GROG],[test "x$GROG" != xnone])
318
460b9539 319missing_libraries=""
320missing_headers=""
321missing_functions=""
322
323AC_DEFINE(_GNU_SOURCE, 1, [required for e.g. strsignal])
324
2eee4b0c
RK
325AC_PATH_PROG([SENDMAIL],[sendmail],[none],[$PATH:/usr/sbin:/usr/lib])
326
460b9539 327# Macs might have libraries under fink's root
328AC_PATH_PROG([FINK],[fink],[none],[$PATH:/sw/bin])
329if test "x$FINK" != xnone; then
330 AC_CACHE_CHECK([fink install directory],[rjk_cv_finkprefix],[
331 rjk_cv_finkprefix="`echo "$FINK" | sed 's,/bin/fink$,,'`"
332 ])
f9592fe7 333 finkdir="${rjk_cv_finkprefix}"
e83d0967 334 finkbindir="${rjk_cv_finkprefix}/bin"
762f2539 335 CPPFLAGS="${CPPFLAGS} -I${rjk_cv_finkprefix}/include/gc -I${rjk_cv_finkprefix}/include"
460b9539 336 if test $want_server = yes; then
337 CPPFLAGS="${CPPFLAGS} -I${rjk_cv_finkprefix}/include/db4"
338 fi
339 LDFLAGS="${LDFLAGS} -L${rjk_cv_finkprefix}/lib"
e83d0967
RK
340else
341 finkbindir=""
460b9539 342fi
f9592fe7 343AC_SUBST([finkdir])
e83d0967 344AC_SUBST([finkbindir])
460b9539 345
346# Checks for libraries.
347# We save up a list of missing libraries that we can't do without
348# and report them all at once.
349AC_CHECK_LIB(gc, GC_malloc, [AC_SUBST(LIBGC,[-lgc])],
350 [missing_libraries="$missing_libraries libgc"])
351AC_CHECK_LIB(gcrypt, gcry_md_open,
352 [AC_SUBST(LIBGCRYPT,[-lgcrypt])],
353 [missing_libraries="$missing_libraries libgcrypt"])
354AC_CHECK_LIB(pcre, pcre_compile,
355 [AC_SUBST(LIBPCRE,[-lpcre])],
356 [missing_libraries="$missing_libraries libpcre"])
e2f0c461
RK
357if test $want_alsa = yes; then
358 AC_CHECK_LIB([asound], [snd_pcm_open],
359 [AC_SUBST(LIBASOUND,[-lasound])])
360fi
460b9539 361if test $want_server = yes; then
362 RJK_CHECK_LIB(db, db_create, [#include <db.h>],
363 [AC_SUBST(LIBDB,[-ldb])],
364 [missing_libraries="$missing_libraries libdb"])
365 AC_CHECK_LIB(vorbis, vorbis_info_clear,
366 [:],
367 [missing_libraries="$missing_libraries libvorbis"])
368 AC_CHECK_LIB(vorbisfile, ov_open,
369 [AC_SUBST(LIBVORBISFILE,["-lvorbisfile -lvorbis"])],
370 [missing_libraries="$missing_libraries libvorbisfile"],
371 [-lvorbis])
372 AC_CHECK_LIB(mad, mad_stream_init,
373 [AC_SUBST(LIBMAD,[-lmad])],
374 [missing_libraries="$missing_libraries libmad"])
375 AC_CHECK_LIB([ao], [ao_initialize],
376 [AC_SUBST(LIBAO,[-lao])],
377 [missing_libraries="$missing_libraries libao"])
c57f1201 378 AC_CHECK_LIB([FLAC], [FLAC__stream_decoder_new],
379 [AC_SUBST(LIBFLAC,[-lFLAC])],
380 [missing_libraries="$missing_libraries libFLAC"])
d19ccd72 381fi
edbd470f 382AC_CHECK_LIB([pthread], [pthread_create],
383 [AC_SUBST(LIBPTHREAD,[-lpthread])],
384 [missing_libraries="$missing_libraries libpthread"])
460b9539 385
386if test $want_gtk = yes; then
387 AM_PATH_GLIB_2_0([],[],[missing_libraries="$missing_libraries libglib"])
388 AM_PATH_GTK_2_0([],[],[missing_libraries="$missing_libraries libgtk"])
389fi
390
391# Some platforms have iconv already
392AC_CHECK_FUNC(iconv_open, [:],
393 [RJK_CHECK_LIB(iconv, iconv_open, [#include <iconv.h>],
394 [AC_SUBST(LIBICONV,[-liconv])],
395 [missing_functions="$missing_functions iconv_open"])])
396AC_CHECK_FUNC([gethostbyname],[:],[
397 AC_CHECK_LIB(nsl,gethostbyname,
398 [AC_SUBST(LIBNSL,[-lnsl])],
399 [missing_functions="$missing_functions gethostbyname"])])
400AC_CHECK_FUNC([socket],[:],[
401 AC_CHECK_LIB(socket,socket,
402 [AC_SUBST(LIBSOCKET,[-lsocket])],
403 [missing_functions="$missing_functions socket"])])
404AC_CHECK_FUNC([dlopen],[:],[
405 AC_CHECK_LIB(dl,dlopen,
406 [AC_SUBST(LIBDL,[-ldl])],
407 [missing_functions="$missing_functions dlopen"])])
408
409if test ! -z "$missing_libraries"; then
410 AC_MSG_ERROR([missing libraries:$missing_libraries])
411fi
412
460b9539 413# Checks for header files.
414RJK_FIND_GC_H
e2f0c461
RK
415if test $want_oss = yes; then
416 AC_CHECK_HEADERS([sys/soundcard.h])
417fi
418if test $want_alsa = yes; then
419 AC_CHECK_HEADERS([alsa/asoundlib.h])
420fi
421if test $want_coreaudio = yes; then
422 AC_CHECK_HEADERS([CoreAudio/AudioHardware.h])
423fi
424AC_CHECK_HEADERS([inttypes.h])
146e86fb 425# We don't bother checking very standard stuff
460b9539 426# Compilation will fail if any of these headers are missing, so we
427# check for them here and fail early.
460b9539 428if test $want_server = yes; then
429 AC_CHECK_HEADERS([db.h],[:],[
430 missing_headers="$missing_headers $ac_header"
431 ])
762806f1 432 AC_CHECK_HEADERS([FLAC/file_decoder.h])
460b9539 433fi
434AC_CHECK_HEADERS([dlfcn.h gcrypt.h \
435 getopt.h iconv.h langinfo.h \
436 pcre.h sys/ioctl.h \
437 syslog.h unistd.h],[:],[
438 missing_headers="$missing_headers $ac_header"
439])
440
441if test ! -z "$missing_headers"; then
442 AC_MSG_ERROR([missing headers:$missing_headers])
443fi
444
70f47acd
RK
445# We require that libpcre support UTF-8
446RJK_REQUIRE_PCRE_UTF8([-lpcre])
447
460b9539 448# Checks for typedefs, structures, and compiler characteristics.
449AC_C_CONST
450AC_TYPE_SIZE_T
451AC_C_INLINE
5330d674 452AC_C_BIGENDIAN
460b9539 453AC_CHECK_TYPES([struct sockaddr_in6],,,[AC_INCLUDES_DEFAULT
454#include <netinet/in.h>])
455
456# enable -Werror when we check for certain characteristics:
457
458old_CFLAGS="${CFLAGS}"
459CFLAGS="${CFLAGS} $gcc_werror"
460AC_CHECK_TYPES([long long,uint32_t,uint8_t,intmax_t,uintmax_t])
461
462# Some GCC invocations warn for converting function pointers to void *.
463# This is fair enough, as it's technically forbidden, but we use dlsym()
464# which can pretty much only exist if object and function pointers are
465# interconvertable. So we disable -Werror if need be.
466if test ! -z "$gcc_werror"; then
467 AC_CACHE_CHECK([whether function pointers can be converted to void * without a warning],
468 [rjk_cv_function_pointer_cast],[
469 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
470 void somefunction(void);],
471 [(void *)somefunction])],
472 [rjk_cv_function_pointer_cast=yes],
473 [rjk_cv_function_pointer_cast=no])])
474 if test $rjk_cv_function_pointer_cast = no; then
475 gcc_werror=""
476 fi
477fi
478
479CFLAGS="${old_CFLAGS}"
480
481# gcrypt maintainers keep changing everything. Design your interface
482# first, then implement it once, rather than getting it wrong three or
483# four times and shipping between each attempt.
484AC_CACHE_CHECK([for hash handle type in <grypt.h>],
485 [rjk_cv_gcrypt_hash_handle],[
486 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
487#include <gcrypt.h>
488],
489 [gcry_md_hd_t h;])],
490 [rjk_cv_gcrypt_hash_handle=gcry_md_hd_t],[
491 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
492#include <gcrypt.h>
493],
494 [GcryMDHd h;])],
495 [rjk_cv_gcrypt_hash_handle=GcryMDHd],
496 [rjk_cv_gcrypt_hash_handle=GCRY_MD_HD])])])
497AC_DEFINE_UNQUOTED([gcrypt_hash_handle],[$rjk_cv_gcrypt_hash_handle],
498 [libgcrypt hash handle type])
499
500AC_CACHE_CHECK([for gcry_error_t in <grypt.h>],
501 [rjk_cv_have_gcry_error_t],[
502 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
503#include <gcrypt.h>
504],
505 [gcry_error_t e;])],
506 [rjk_cv_have_gcry_error_t=yes],
507 [rjk_cv_have_gcry_error_t=no])])
508if test $rjk_cv_have_gcry_error_t = yes; then
509 AC_DEFINE([HAVE_GCRY_ERROR_T],1,[define if <gcrypt.h> defines gcry_error_t])
510fi
511
512# Checks for functions
513if test $ac_cv_type_long_long = yes; then
514 AC_CHECK_FUNCS([atoll strtoll],[:],[
515 missing_functions="$missing_functions $ac_func"
516 ])
517 # Darwin sometimes fails to declare strtoll (e.g. if you ask for -std=c99)
518 AC_CACHE_CHECK([whether strtoll is declared in <stdlib.h>],
519 [rjk_cv_strtoll_declared],[
520 AC_EGREP_HEADER([strtoll], [stdlib.h],
521 [rjk_cv_strtoll_declared=yes],
522 [rjk_cv_strtoll_declared=no])])
523 if test $rjk_cv_strtoll_declared = yes; then
524 AC_DEFINE([DECLARES_STRTOLL],[1],[define if <stdlib.h> declares strtoll])
525 fi
526 AC_CACHE_CHECK([whether atoll is declared in <stdlib.h>],
527 [rjk_cv_atoll_declared],[
528 AC_EGREP_HEADER([atoll], [stdlib.h],
529 [rjk_cv_atoll_declared=yes],
530 [rjk_cv_atoll_declared=no])])
531 if test $rjk_cv_atoll_declared = yes; then
532 AC_DEFINE([DECLARES_ATOLL],[1],[define if <stdlib.h> declares atoll])
533 fi
534fi
5b708e0c 535AC_CHECK_FUNCS([ioctl nl_langinfo strsignal setenv unsetenv],[:],[
460b9539 536 missing_functions="$missing_functions $ac_func"
537])
538# fsync will do if fdatasync not available
539AC_CHECK_FUNCS([fdatasync],[:],[
540 AC_CHECK_FUNCS([fsync],
541 [AC_DEFINE([fdatasync],[fsync],[define fdatasync to fsync if not available])],
542 [missing_functions="$missing_functions fdatasync"])])
543if test ! -z "$missing_functions"; then
544 AC_MSG_ERROR([missing functions:$missing_functions])
545fi
7c8c2fc9
RK
546
547# Functions we can take or leave
548AC_CHECK_FUNCS([fls])
549
460b9539 550if test $want_server = yes; then
551 # <db.h> had better be version 3 or later
552 AC_CACHE_CHECK([db.h version],[rjk_cv_db_version],[
553 AC_PREPROC_IFELSE([
554 #include <db.h>
555 #ifndef DB_VERSION_MAJOR
556 # error cannot determine db version
557 #endif
558 #if DB_VERSION_MAJOR < 4
559 # error inadequate db version
560 #endif
f4687532 561 #if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR <= 2
460b9539 562 # error inadequate db version
563 #endif
564 ],
565 [rjk_cv_db_version=ok],
566 [rjk_cv_db_version=inadequate])
567 ])
568 if test $rjk_cv_db_version != ok; then
569 AC_MSG_ERROR([need db.h version at least 4.2])
570 fi
571fi
572
e63c38e8 573AM_CONDITIONAL([SERVER], [test x$want_server = xyes])
588b2763
RK
574if test $want_gtk = yes; then
575 AC_DEFINE([WITH_GTK], [1], [define if using GTK+])
576fi
e63c38e8 577
460b9539 578if test "x$GCC" = xyes; then
e84ca290
RK
579 # We need LLONG_MAX and annoyingly GCC doesn't always give it to us
580 # by default.
581 AC_CACHE_CHECK([what C version to ask for],[rjk_cv_cstd],[
582 AC_TRY_COMPILE([#include <limits.h>],[
583 long long n = LLONG_MAX;
584 ],[rjk_cv_cstd=default],[
585 old_CC="$CC"
586 CC="${CC} -std=gnu99"
587 AC_TRY_COMPILE([#include <limits.h>],[
588 long long n = LLONG_MAX;
589 ],[rjk_cv_cstd=gnu99],[rjk_cv_cstd=unknown])
590 CC="$old_CC"
591 ])
592 ])
593 case $rjk_cv_cstd in
594 default | unknown )
595 ;;
596 * )
597 CC="${CC} -std=${rjk_cv_cstd}"
598 ;;
599 esac
600
f368d6c7
RK
601 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29478
602 AC_CACHE_CHECK([checking for GCC bug 29478],[rjk_cv_pr29478],[
603 old_CC="$CC"
604 if test $GCC = yes; then
605 CC="$CC -Wall -Werror"
606 fi
607 AC_COMPILE_IFELSE([
608 static int x(char *f) {
609 return *f;
610 }
611 int z(const char *g) {
612 return x((char *)g);
613 }],
614 [rjk_cv_pr29478=no],
615 [rjk_cv_pr29478=yes]
616 )
617 CC="$old_CC"
618 ])
619 if test $rjk_cv_pr29478 = yes; then
620 gcc_werror=''
621 fi
622
460b9539 623 # a reasonable default set of warnings
624 CC="${CC} -Wall -W -Wpointer-arith -Wbad-function-cast \
625 -Wwrite-strings -Wmissing-prototypes \
626 -Wmissing-declarations -Wnested-externs"
627
628 # Fix up GTK+ and GLib compiler flags
629 GTK_CFLAGS="`echo \"$GTK_CFLAGS\"|sed 's/-I/-isystem /g'`"
630 GLIB_CFLAGS="`echo \"$GLIB_CFLAGS\"|sed 's/-I/-isystem /g'`"
631
f368d6c7
RK
632 if test "$gcc_werror" != ''; then
633 # GCC 2.95 doesn't know to ignore warnings from system headers
634 AC_CACHE_CHECK([whether -Werror is usable],
635 rjk_cv_werror, [
636 save_CFLAGS="${CFLAGS}"
637 CFLAGS="${CFLAGS} ${GTK_CFLAGS} -Werror"
588b2763
RK
638 AC_TRY_COMPILE([#if WITH_GTK
639 #include <gtk/gtk.h>
640#endif
641
642struct s { int a, b; };
643const struct s sv = { .a = 1 };],
f368d6c7
RK
644 [],
645 [rjk_cv_werror=yes],
646 [rjk_cv_werror=no])
647 CFLAGS="${save_CFLAGS}"
648 ])
649 if test $rjk_cv_werror = no; then
650 gcc_werror=''
651 fi
460b9539 652 fi
653 CC="${CC} $gcc_werror"
654
655 # for older GCCs that don't know %ju (etc)
9a5f7aba 656 AC_CACHE_CHECK([whether -Wno-format is required],
460b9539 657 rjk_cv_noformat,
658 AC_TRY_COMPILE([#include <stdio.h>
659#include <stdint.h>
660],
661 [printf("%ju", (uintmax_t)0);],
662 [rjk_cv_noformat=no],
663 [rjk_cv_noformat=yes]))
664 if test $rjk_cv_noformat = yes; then
665 CC="${CC} -Wno-format"
666 fi
667
9a5f7aba 668 AC_CACHE_CHECK([whether -Wshadow is OK],
460b9539 669 rjk_cv_shadow,
670 oldCC="${CC}"
671 CC="${CC} -Wshadow"
672 [AC_TRY_COMPILE([
673#include <unistd.h>
674#include <vorbis/vorbisfile.h>
675],
676 [],
677 [rjk_cv_shadow=yes],
678 [rjk_cv_shadow=no])
679 CC="${oldCC}"])
680 if test $rjk_cv_shadow = yes; then
681 CC="${CC} -Wshadow"
682 fi
460b9539 683fi
684
1a00f590
RK
685RJK_GCOV
686
460b9539 687AH_BOTTOM([#ifdef __GNUC__
688# define attribute(x) __attribute__(x)
689#else
690# define attribute(x)
691#endif])
692
693AC_CONFIG_FILES([Makefile
460b9539 694 images/Makefile
695 scripts/Makefile
696 lib/Makefile
697 server/Makefile
05b75f8d 698 cgi/Makefile
460b9539 699 clients/Makefile
700 disobedience/Makefile
701 doc/Makefile
3e1616b6 702 templates/Makefile
460b9539 703 plugins/Makefile
704 driver/Makefile
705 debian/Makefile
706 sounds/Makefile
707 python/Makefile
c5dbcd79 708 examples/Makefile
7affb407 709 libtests/Makefile
c5dbcd79 710 tests/Makefile])
460b9539 711AC_OUTPUT
f368d6c7
RK
712
713if test $GCC = yes && test "$gcc_werror" = ''; then
714 AC_MSG_WARN([building without -Werror])
715fi
56fac00d
RK
716if test $want_python = no; then
717 AC_MSG_WARN([cannot run the test suit without Python])
718fi
4cbafe13
RK
719
720# Local Variables:
721# indent-tabs-mode:nil
722# End: