2003-10-13 15:03:14 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
2009-04-01 14:33:00 +02:00
|
|
|
|
2003-10-13 15:32:43 +00:00
|
|
|
AC_INIT(config.h.in)
|
2009-04-01 14:33:00 +02:00
|
|
|
AC_CONFIG_HEADER(config.h)
|
2009-04-02 12:19:45 +02:00
|
|
|
AM_INIT_AUTOMAKE(forked-daapd,0.01-git)
|
2003-10-13 15:03:14 +00:00
|
|
|
|
2007-01-17 01:06:16 +00:00
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
|
|
|
|
2003-10-13 15:03:14 +00:00
|
|
|
dnl Checks for programs.
|
|
|
|
AC_PROG_CC
|
2009-04-01 16:20:53 +02:00
|
|
|
AM_PROG_CC_C_O
|
2006-05-01 08:07:56 +00:00
|
|
|
AC_PROG_LIBTOOL
|
2006-10-19 03:08:13 +00:00
|
|
|
|
2006-02-26 08:46:24 +00:00
|
|
|
AC_CHECK_HEADERS([sys/wait.h])
|
2006-03-07 07:57:03 +00:00
|
|
|
AC_CHECK_HEADERS([sys/param.h])
|
2007-04-18 03:10:40 +00:00
|
|
|
AC_CHECK_HEADERS([sys/select.h])
|
2006-10-08 23:14:37 +00:00
|
|
|
AC_CHECK_HEADERS([dirent.h])
|
2006-02-26 08:46:24 +00:00
|
|
|
AC_CHECK_FUNCS(strptime)
|
|
|
|
AC_CHECK_FUNCS(strtok_r)
|
2006-04-15 08:53:56 +00:00
|
|
|
AC_CHECK_FUNCS(timegm)
|
2007-08-09 06:33:41 +00:00
|
|
|
AC_CHECK_FUNCS(va_copy)
|
|
|
|
AC_CHECK_FUNCS(__va_copy)
|
2006-04-15 08:53:56 +00:00
|
|
|
|
2006-04-10 22:26:57 +00:00
|
|
|
AC_FUNC_SETPGRP
|
|
|
|
|
2006-04-10 17:15:37 +00:00
|
|
|
if test "x$prefix" != xNONE -a "x$prefix" != "x/usr"; then
|
|
|
|
CONFFILE="$prefix/etc/mt-daapd.conf"
|
|
|
|
else
|
2006-04-15 05:31:53 +00:00
|
|
|
if test "x$prefix" = "xNONE"; then
|
2006-04-10 17:15:37 +00:00
|
|
|
CONFFILE="/usr/local/etc/mt-daapd.conf"
|
|
|
|
else
|
|
|
|
CONFFILE="/etc/mt-daapd.conf"
|
|
|
|
fi
|
2006-04-09 01:35:10 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
AC_DEFINE_UNQUOTED(CONFFILE,"${CONFFILE}",Where the config file is)
|
|
|
|
|
2009-04-01 17:19:53 +02:00
|
|
|
use_ffmpeg=true;
|
2007-04-13 21:37:42 +00:00
|
|
|
use_upnp=false;
|
2007-09-04 07:26:50 +00:00
|
|
|
use_iconv=true
|
2003-12-01 15:27:40 +00:00
|
|
|
|
2009-04-01 17:41:24 +02:00
|
|
|
AC_ARG_ENABLE(iconv, AC_HELP_STRING([--enable-iconv], [Enable iconv conversion]),
|
2007-09-04 07:26:50 +00:00
|
|
|
[ case "${enableval}" in
|
|
|
|
yes) use_iconv=true;;
|
|
|
|
no) use_iconv=false;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-iconv);;
|
|
|
|
esac ])
|
|
|
|
|
2009-04-01 17:41:24 +02:00
|
|
|
AC_ARG_ENABLE(oggvorbis, AC_HELP_STRING([--enable-oggvorbis], [Enable Ogg/Vorbis support]),
|
2005-08-13 05:07:29 +00:00
|
|
|
[ case "${enableval}" in
|
|
|
|
yes) use_oggvorbis=true;
|
|
|
|
CPPFLAGS="${CPPFLAGS} -DOGGVORBIS";;
|
|
|
|
no) use_oggvorbis=false;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-oggvorbis);;
|
|
|
|
esac ])
|
2004-12-06 03:06:12 +00:00
|
|
|
|
2009-04-01 17:41:24 +02:00
|
|
|
AC_ARG_ENABLE(flac, AC_HELP_STRING([--enable-flac], [Enable FLAC support]),
|
2005-02-27 00:41:55 +00:00
|
|
|
use_flac=true;
|
|
|
|
CPPFLAGS="${CPPFLAGS} -DFLAC")
|
|
|
|
|
2009-04-01 17:41:24 +02:00
|
|
|
AC_ARG_ENABLE(musepack, AC_HELP_STRING([--enable-musepack], [Enable Musepack support]),
|
2005-11-02 04:45:25 +00:00
|
|
|
use_musepack=true;
|
|
|
|
CPPFLAGS="${CPPFLAGS} -DMUSEPACK")
|
|
|
|
|
2009-04-01 17:19:53 +02:00
|
|
|
AC_ARG_ENABLE(ffmpeg, AC_HELP_STRING([--disable-ffmpeg], [Disable ffmpeg transcoding plugin]),
|
|
|
|
use_ffmpeg=false)
|
2006-03-27 01:48:43 +00:00
|
|
|
|
2009-04-01 17:41:24 +02:00
|
|
|
AC_ARG_ENABLE(upnp, AC_HELP_STRING([--enable-upnp], [Enable upnp support]),
|
2007-04-13 21:37:42 +00:00
|
|
|
CPPFLAGS="${CPPFLAGS} -DUPNP"; use_upnp=true;)
|
2007-01-17 01:06:16 +00:00
|
|
|
|
2004-12-06 03:06:12 +00:00
|
|
|
AM_CONDITIONAL(COND_OGGVORBIS, test x$use_oggvorbis = xtrue)
|
2005-02-27 00:41:55 +00:00
|
|
|
AM_CONDITIONAL(COND_FLAC, test x$use_flac = xtrue)
|
2005-11-02 04:45:25 +00:00
|
|
|
AM_CONDITIONAL(COND_MUSEPACK, test x$use_musepack = xtrue)
|
2006-05-27 10:33:08 +00:00
|
|
|
AM_CONDITIONAL(COND_FFMPEG,test x$use_ffmpeg = xtrue)
|
2007-04-13 21:37:42 +00:00
|
|
|
AM_CONDITIONAL(COND_UPNP,test x$use_upnp = xtrue)
|
|
|
|
|
2006-10-19 03:08:13 +00:00
|
|
|
AC_CHECK_FUNCS(strcasestr strsep)
|
2004-01-13 04:29:30 +00:00
|
|
|
|
2003-10-13 15:03:14 +00:00
|
|
|
dnl Checks for libraries.
|
2009-04-02 11:42:39 +02:00
|
|
|
if test x$use_iconv = xtrue; then
|
|
|
|
AM_ICONV
|
|
|
|
fi
|
|
|
|
|
2009-04-01 16:20:53 +02:00
|
|
|
PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.24 ])
|
2009-04-01 16:59:50 +02:00
|
|
|
PKG_CHECK_MODULES(SQLITE3, [ sqlite3 ],
|
|
|
|
AC_DEFINE(HAVE_SQLITE3, 1, [define if sqlite3 is available]))
|
2009-04-01 17:52:01 +02:00
|
|
|
PKG_CHECK_MODULES(ID3TAG, [ id3tag ])
|
2009-04-01 16:20:53 +02:00
|
|
|
|
2009-04-01 17:57:47 +02:00
|
|
|
if test x$use_oggvorbis = xtrue; then
|
|
|
|
PKG_CHECK_MODULES(OGGVORBIS, [ ogg vorbis vorbisfile ])
|
|
|
|
fi
|
|
|
|
|
2009-04-01 18:12:22 +02:00
|
|
|
if test x$use_flac = xtrue; then
|
|
|
|
PKG_CHECK_MODULES(FLAC, [ flac ])
|
|
|
|
fi
|
|
|
|
|
2009-04-01 18:18:31 +02:00
|
|
|
if test x$use_musepack = xtrue; then
|
|
|
|
PKG_CHECK_MODULES(TAGLIB, [ taglib_c ])
|
|
|
|
fi
|
|
|
|
|
2009-04-01 17:10:28 +02:00
|
|
|
if test x$use_ffmpeg = xtrue; then
|
|
|
|
PKG_CHECK_MODULES(FFMPEG, [ libavcodec libavformat ])
|
|
|
|
fi
|
|
|
|
|
2005-02-28 21:49:23 +00:00
|
|
|
AC_CHECK_HEADERS(getopt.h,,)
|
2006-06-14 04:19:17 +00:00
|
|
|
AC_CHECK_HEADERS(stdint.h,,)
|
2005-03-01 04:19:27 +00:00
|
|
|
|
2004-03-11 06:06:47 +00:00
|
|
|
AC_REPLACE_FUNCS(strcasestr)
|
|
|
|
AC_REPLACE_FUNCS(strsep)
|
2005-02-05 20:54:55 +00:00
|
|
|
AC_CHECK_FUNCS(atoll)
|
2004-03-11 06:06:47 +00:00
|
|
|
|
2003-10-13 15:03:14 +00:00
|
|
|
dnl Checks for header files.
|
|
|
|
AC_HEADER_STDC
|
2003-10-13 15:32:43 +00:00
|
|
|
AC_HEADER_SYS_WAIT
|
|
|
|
AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h syslog.h unistd.h \
|
|
|
|
sys/filio.h termio.h)
|
2003-10-13 15:03:14 +00:00
|
|
|
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
2003-10-13 15:32:43 +00:00
|
|
|
AC_HEADER_TIME
|
2003-10-13 15:03:14 +00:00
|
|
|
|
|
|
|
dnl Checks for library functions.
|
2003-10-13 15:32:43 +00:00
|
|
|
AC_PROG_GCC_TRADITIONAL
|
|
|
|
AC_TYPE_SIGNAL
|
|
|
|
AC_CHECK_FUNCS(select socket strdup strerror)
|
|
|
|
|
2009-04-02 12:17:24 +02:00
|
|
|
AC_CHECK_LIB(dl, dlsym, LIBDL=-ldl)
|
|
|
|
AC_SUBST(LIBDL)
|
2006-04-28 05:10:06 +00:00
|
|
|
|
2009-04-01 18:31:02 +02:00
|
|
|
dnl check to see if we need -lsocket (solaris)
|
2003-10-13 15:32:43 +00:00
|
|
|
V_NETLIBS=""
|
|
|
|
AC_CHECK_LIB(socket,socket,V_NETLIBS="-lsocket $V_NETLIBS",,)
|
|
|
|
AC_SUBST(V_NETLIBS)
|
|
|
|
|
2009-04-01 18:31:02 +02:00
|
|
|
AC_DEFINE_UNQUOTED(HOST, "$host", [host triplet])
|
|
|
|
|
2009-04-02 12:11:29 +02:00
|
|
|
AC_OUTPUT(src/Makefile src/plugins/Makefile tools/Makefile admin-root/Makefile admin-root/lib-js/Makefile admin-root/lib-js/script.aculo.us/Makefile contrib/Makefile contrib/init.d/Makefile Makefile)
|