owntone-server/configure.in

178 lines
5.0 KiB
Plaintext
Raw Normal View History

2003-10-13 11:03:14 -04:00
dnl Process this file with autoconf to produce a configure script.
2009-04-01 08:33:00 -04:00
2003-10-13 11:32:43 -04:00
AC_INIT(config.h.in)
2009-04-01 08:33:00 -04:00
AC_CONFIG_HEADER(config.h)
2006-07-29 02:35:24 -04:00
AM_INIT_AUTOMAKE(mt-daapd,0.2.1.1)
2003-10-13 11:03:14 -04:00
AC_USE_SYSTEM_EXTENSIONS
2003-10-13 11:03:14 -04:00
dnl Checks for programs.
AC_PROG_CC
AM_PROG_CC_C_O
2005-07-13 01:32:16 -04:00
dnl AC_PROG_YACC
dnl AM_PROG_LEX
2006-05-01 04:07:56 -04:00
AC_PROG_LIBTOOL
2006-02-26 03:46:24 -05:00
AC_CHECK_HEADERS([sys/wait.h])
2006-03-07 02:57:03 -05:00
AC_CHECK_HEADERS([sys/param.h])
AC_CHECK_HEADERS([sys/select.h])
AC_CHECK_HEADERS([dirent.h])
2006-02-26 03:46:24 -05:00
AC_CHECK_FUNCS(strptime)
AC_CHECK_FUNCS(strtok_r)
AC_CHECK_FUNCS(timegm)
AC_CHECK_FUNCS(va_copy)
AC_CHECK_FUNCS(__va_copy)
2006-04-10 18:26:57 -04:00
AC_FUNC_SETPGRP
if test "x$prefix" != xNONE -a "x$prefix" != "x/usr"; then
CONFFILE="$prefix/etc/mt-daapd.conf"
else
if test "x$prefix" = "xNONE"; then
CONFFILE="/usr/local/etc/mt-daapd.conf"
else
CONFFILE="/etc/mt-daapd.conf"
fi
fi
AC_DEFINE_UNQUOTED(CONFFILE,"${CONFFILE}",Where the config file is)
2009-04-01 11:19:53 -04:00
use_ffmpeg=true;
2007-04-13 17:37:42 -04:00
use_upnp=false;
2007-09-04 03:26:50 -04:00
use_iconv=true
2003-12-01 10:27:40 -05:00
2004-04-14 23:06:43 -04:00
STATIC_LIBS=no
2007-08-12 02:30:00 -04:00
2005-03-11 01:39:40 -05:00
CPPFLAGS="${CPPFLAGS} -g -Wall"
2004-04-14 23:06:43 -04:00
2005-01-23 20:03:43 -05:00
dnl fix freebsd's broken (?) libpthread
2006-01-16 15:23:50 -05:00
AC_CHECK_LIB(c_r,pthread_creat,LIBS="${LIBS} -lc_r", [
AC_CHECK_LIB(pthread,pthread_create,LIBS="${LIBS} -lpthread") ])
2009-04-01 11:41:24 -04:00
AC_ARG_ENABLE(iconv, AC_HELP_STRING([--enable-iconv], [Enable iconv conversion]),
2007-09-04 03:26:50 -04: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 11:41:24 -04:00
AC_ARG_ENABLE(oggvorbis, AC_HELP_STRING([--enable-oggvorbis], [Enable Ogg/Vorbis support]),
2005-08-13 01:07:29 -04: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 ])
2009-04-01 11:41:24 -04:00
AC_ARG_ENABLE(flac, AC_HELP_STRING([--enable-flac], [Enable FLAC support]),
use_flac=true;
CPPFLAGS="${CPPFLAGS} -DFLAC")
2009-04-01 11:41:24 -04:00
AC_ARG_ENABLE(musepack, AC_HELP_STRING([--enable-musepack], [Enable Musepack support]),
2005-11-01 23:45:25 -05:00
use_musepack=true;
CPPFLAGS="${CPPFLAGS} -DMUSEPACK")
2009-04-01 11:19:53 -04:00
AC_ARG_ENABLE(ffmpeg, AC_HELP_STRING([--disable-ffmpeg], [Disable ffmpeg transcoding plugin]),
use_ffmpeg=false)
2006-03-26 20:48:43 -05:00
2009-04-01 11:41:24 -04:00
AC_ARG_ENABLE(upnp, AC_HELP_STRING([--enable-upnp], [Enable upnp support]),
2007-04-13 17:37:42 -04:00
CPPFLAGS="${CPPFLAGS} -DUPNP"; use_upnp=true;)
AM_CONDITIONAL(COND_OGGVORBIS, test x$use_oggvorbis = xtrue)
AM_CONDITIONAL(COND_FLAC, test x$use_flac = xtrue)
2005-11-01 23:45:25 -05:00
AM_CONDITIONAL(COND_MUSEPACK, test x$use_musepack = xtrue)
2006-05-27 06:33:08 -04:00
AM_CONDITIONAL(COND_FFMPEG,test x$use_ffmpeg = xtrue)
2007-04-13 17:37:42 -04:00
AM_CONDITIONAL(COND_UPNP,test x$use_upnp = xtrue)
#AM_CONDITIONAL(COND_NEED_STRCASESTR,false)
#AM_CONDITIONAL(COND_NEED_STRSEP,false)
AC_CHECK_FUNCS(strcasestr strsep)
2004-01-12 23:29:30 -05:00
2003-10-13 11:32:43 -04:00
dnl Darwin's stupid cpp preprocessor....
2003-10-25 15:38:14 -04:00
echo Host type is $host
CPPFLAGS="$CPPFLAGS -DHOST='\"$host\"'"
2004-04-02 01:48:24 -05:00
2003-10-13 11:03:14 -04:00
dnl Checks for libraries.
PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.24 ])
PKG_CHECK_MODULES(SQLITE3, [ sqlite3 ],
AC_DEFINE(HAVE_SQLITE3, 1, [define if sqlite3 is available]))
2009-04-01 11:52:01 -04:00
PKG_CHECK_MODULES(ID3TAG, [ id3tag ])
2009-04-01 11:57:47 -04:00
if test x$use_oggvorbis = xtrue; then
PKG_CHECK_MODULES(OGGVORBIS, [ ogg vorbis vorbisfile ])
fi
if test x$use_flac = xtrue; then
PKG_CHECK_MODULES(FLAC, [ flac ])
fi
if test x$use_ffmpeg = xtrue; then
PKG_CHECK_MODULES(FFMPEG, [ libavcodec libavformat ])
fi
2004-04-14 23:06:43 -04:00
AC_ARG_WITH(static-libs,
[--with-static-libs[[=DIR]] use static libs in DIR],[
if test "$withval" != "no" -a "$withval" != "yes"; then
Z_DIR=$withval
STATIC_LIBS="$withval"
fi
])
AC_CHECK_HEADERS(getopt.h,,)
2006-06-14 00:19:17 -04:00
AC_CHECK_HEADERS(stdint.h,,)
2005-02-28 23:19:27 -05:00
2005-11-01 23:45:25 -05:00
if test x$use_musepack = xtrue; then
AC_PATH_PROG(TAGLIB_CONFIG, taglib-config, no)
AC_CHECK_HEADERS(taglib/tag_c.h,, [
AC_MSG_ERROR([taglib/tag_c.h not found... TagLib must be installed for Musepack support])])
if test "x$TAGLIB_CONFIG" = "xno" ; then
AC_MSG_ERROR(['TagLib must be installed for Musepack support'])
fi
dnl if test ! -e "`taglib-config --prefix`/lib/libtag_c.so.0"; then
dnl AC_MSG_ERROR(['Taglib C bindings are not installed'])
dnl fi
if test x"$STATIC_LIBS" != x"no"; then
2006-01-16 15:23:50 -05:00
LIBS="${LIBS} ${STATIC_LIBS}/libtag_c.a"
2005-11-01 23:45:25 -05:00
else
2006-01-16 15:23:50 -05:00
LIBS="${LIBS} -ltag_c"
2005-11-01 23:45:25 -05:00
fi
fi
2004-03-11 01:06:47 -05:00
AC_REPLACE_FUNCS(strcasestr)
AC_REPLACE_FUNCS(strsep)
2005-02-05 15:54:55 -05:00
AC_CHECK_FUNCS(atoll)
2004-03-11 01:06:47 -05:00
2003-10-13 11:03:14 -04:00
dnl Checks for header files.
AC_HEADER_STDC
2003-10-13 11:32:43 -04: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 11:03:14 -04:00
dnl Checks for typedefs, structures, and compiler characteristics.
2003-10-13 11:32:43 -04:00
AC_HEADER_TIME
2003-10-13 11:03:14 -04:00
dnl Checks for library functions.
2003-10-13 11:32:43 -04:00
AC_PROG_GCC_TRADITIONAL
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(select socket strdup strerror)
dnl check to see if we need -lsocket (solaris)
AC_CHECK_LIB(dl,dlsym)
2003-10-13 11:32:43 -04:00
V_NETLIBS=""
AC_CHECK_LIB(socket,socket,V_NETLIBS="-lsocket $V_NETLIBS",,)
AC_SUBST(V_NETLIBS)
2007-09-04 03:26:50 -04:00
if test x$use_iconv = xtrue; then
dnl add the iconv stuff
AM_ICONV
LDFLAGS="${LDFLAGS} ${LIBICONV}"
fi
2007-09-03 19:55:43 -04:00
AC_OUTPUT(src/Makefile src/plugins/Makefile admin-root/Makefile admin-root/lib-js/Makefile admin-root/lib-js/script.aculo.us/Makefile contrib/Makefile contrib/init.d/Makefile Makefile)