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