2003-10-13 15:32:43 +00:00
|
|
|
dnl $Id$
|
2003-10-13 15:03:14 +00:00
|
|
|
dnl
|
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
2003-10-13 15:32:43 +00:00
|
|
|
AC_INIT(config.h.in)
|
2003-10-13 15:03:14 +00:00
|
|
|
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
2004-11-20 18:00:36 +00:00
|
|
|
AM_INIT_AUTOMAKE(mt-daapd,0.2.1-pre2)
|
2003-10-13 15:03:14 +00:00
|
|
|
|
|
|
|
dnl Checks for programs.
|
|
|
|
AC_PROG_CC
|
2003-12-04 23:20:51 +00:00
|
|
|
AC_PROG_YACC
|
2003-12-05 06:02:08 +00:00
|
|
|
AM_PROG_LEX
|
2003-10-13 15:03:14 +00:00
|
|
|
|
2003-10-13 15:32:43 +00:00
|
|
|
AC_CANONICAL_HOST
|
|
|
|
|
2003-12-01 15:27:40 +00:00
|
|
|
AM_CONDITIONAL(COND_REND_OSX,false)
|
2004-10-30 16:42:20 +00:00
|
|
|
rend_posix=true
|
2003-12-01 15:27:40 +00:00
|
|
|
|
2004-04-15 03:06:43 +00:00
|
|
|
STATIC_LIBS=no
|
2004-04-26 23:47:01 +00:00
|
|
|
CPPFLAGS="${CPPFLAGS} -g"
|
2004-04-15 03:06:43 +00:00
|
|
|
|
2004-06-02 05:28:52 +00:00
|
|
|
LDFLAGS="${LDFLAGS} -lz"
|
|
|
|
|
|
|
|
AC_CHECK_LIB(z,compress,LDFLAGS="$LDFLAGS -lz",echo "Must have zlib";exit)
|
|
|
|
|
2004-10-25 04:49:47 +00:00
|
|
|
AC_ARG_ENABLE(debug,[ --enable-debug Enable debugging features],
|
|
|
|
CPPFLAGS="${CPPFLAGS} -Wall")
|
|
|
|
AC_ARG_ENABLE(debug-memory,[ --enable-debug-memory Enable mem leak debugging],
|
|
|
|
CPPFLAGS="${CPPFLAGS} -DDEBUG_MEMORY")
|
2004-10-30 16:42:20 +00:00
|
|
|
AC_ARG_ENABLE(mdns,[ --enable-mdns Enable mDNS support],
|
|
|
|
[ case "${enableval}" in
|
|
|
|
yes) ;;
|
|
|
|
no) rend_posix=false; rend_howl=false; CPPFLAGS="${CPPFLAGS} -DWITHOUT_MDNS";;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --disable-mdns);;
|
|
|
|
esac ])
|
|
|
|
|
2004-10-25 04:49:47 +00:00
|
|
|
AC_ARG_ENABLE(efence,[ --enable-efence Enable electric fence],
|
|
|
|
LDFLAGS="${LDFLAGS} -lefence")
|
|
|
|
AC_ARG_ENABLE(nslu2,[ --enable-nslu2 Build for NSLU2/uNSLUng],
|
|
|
|
CFLAGS="${CFLAGS} -DNSLU2")
|
|
|
|
|
2004-10-30 16:42:20 +00:00
|
|
|
AC_ARG_ENABLE(howl,[ --enable-howl Use howl 0.9.2 or later],
|
2004-06-02 05:28:52 +00:00
|
|
|
[ case "${enableval}" in
|
2004-10-30 16:42:20 +00:00
|
|
|
yes) rend_howl=true; rend_posix=false; LDFLAGS="${LDFLAGS} -lhowl";
|
2004-06-02 05:28:52 +00:00
|
|
|
CPPFLAGS="${CPPFLAGS} -DWITH_HOWL";;
|
|
|
|
no) rend_howl=false;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-howl);;
|
2004-11-27 03:14:14 +00:00
|
|
|
esac ])
|
2003-11-17 16:37:39 +00:00
|
|
|
|
|
|
|
AM_CONDITIONAL(COND_REND_HOWL, test x$rend_howl = xtrue)
|
2004-10-30 16:42:20 +00:00
|
|
|
AM_CONDITIONAL(COND_REND_POSIX, test x$rend_posix = xtrue)
|
2003-10-13 15:32:43 +00:00
|
|
|
|
2004-01-13 04:29:30 +00:00
|
|
|
AM_CONDITIONAL(COND_NEED_STRCASESTR,false)
|
|
|
|
AM_CONDITIONAL(COND_NEED_STRSEP,false)
|
|
|
|
|
2003-10-13 15:32:43 +00:00
|
|
|
dnl Darwin's stupid cpp preprocessor....
|
2003-10-25 19:38:14 +00:00
|
|
|
echo Host type is $host
|
2004-04-02 06:48:24 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -DHOST='\"$host\"'"
|
|
|
|
|
2004-05-10 03:24:25 +00:00
|
|
|
dnl
|
|
|
|
dnl The apple mDNS stuff wants these compile flags.
|
|
|
|
dnl
|
2004-04-02 06:48:24 +00:00
|
|
|
|
2003-10-13 15:32:43 +00:00
|
|
|
case $host in
|
2004-01-13 00:13:53 +00:00
|
|
|
*solaris*)
|
2004-05-11 03:10:28 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -DNOT_HAVE_SA_LEN -D_XPG4_2"
|
2004-03-02 00:33:05 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__ -DHAVE_BROKEN_RECVIF_NAME"
|
2004-05-11 03:10:28 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
|
2004-01-13 00:13:53 +00:00
|
|
|
LDFLAGS="$LDFLAGS -lnsl -lsocket";;
|
2003-11-03 19:02:00 +00:00
|
|
|
*linux*)
|
2004-03-02 00:33:05 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -DNOT_HAVE_SA_LEN";;
|
|
|
|
*openbsd*)
|
|
|
|
CPPFLAGS="$CPPFLAGS -DHAVE_BROKEN_RECVDSTADDR";;
|
2003-10-13 15:32:43 +00:00
|
|
|
*darwin*)
|
2004-03-02 00:33:05 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS -no-cpp-precomp -DMAC"
|
2003-12-01 06:18:47 +00:00
|
|
|
LDFLAGS="$LDFLAGS -framework CoreFoundation"
|
|
|
|
|
2003-12-01 05:31:11 +00:00
|
|
|
AM_CONDITIONAL(COND_REND_OSX,true)
|
|
|
|
AM_CONDITIONAL(COND_REND_HOWL,false)
|
|
|
|
AM_CONDITIONAL(COND_REND_POSIX,false);;
|
2003-10-13 15:32:43 +00:00
|
|
|
esac
|
|
|
|
|
2003-10-13 15:03:14 +00:00
|
|
|
dnl Checks for libraries.
|
2003-10-13 15:32:43 +00:00
|
|
|
AC_CHECK_LIB(pthread,pthread_create,LDFLAGS="$LDFLAGS -lpthread")
|
2003-11-10 03:57:39 +00:00
|
|
|
|
2004-04-15 03:06:43 +00: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
|
|
|
|
])
|
|
|
|
|
2004-03-16 05:25:25 +00:00
|
|
|
AC_ARG_WITH(gdbm-includes,
|
|
|
|
[--with-gdbm-includes[[=DIR]] use gdbm include files in DIR],[
|
|
|
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
|
|
|
Z_DIR=$withval
|
2004-04-15 03:06:43 +00:00
|
|
|
CPPFLAGS="${CPPFLAGS} -I$withval"
|
2004-03-16 05:25:25 +00:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2004-01-27 22:41:35 +00:00
|
|
|
AC_ARG_WITH(howl-includes,
|
|
|
|
[--with-howl-includes[[=DIR]] use howl include files in DIR],[
|
2003-11-10 03:57:39 +00:00
|
|
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
2004-01-27 22:41:35 +00:00
|
|
|
Z_DIR=$withval
|
|
|
|
CPPFLAGS="${CPPFLAGS} -I$withval"
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2004-03-16 05:25:25 +00:00
|
|
|
AC_ARG_WITH(gdbm-libs,
|
|
|
|
[--with-gdbm-libs[[=DIR]] use gdbm lib files in DIR],[
|
|
|
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
|
|
|
Z_DIR=$withval;
|
|
|
|
LDFLAGS="${LDFLAGS} -L$withval"
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2004-01-27 22:41:35 +00:00
|
|
|
AC_ARG_WITH(howl-libs,
|
|
|
|
[--with-howl-libs[[=DIR]] use howl lib files in DIR],[
|
|
|
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
|
|
|
Z_DIR=$withval
|
|
|
|
LDFLAGS="${LDFLAGS} -L$withval"
|
2003-11-10 03:57:39 +00:00
|
|
|
fi
|
|
|
|
])
|
2004-01-27 22:41:35 +00:00
|
|
|
|
2003-11-10 03:57:39 +00:00
|
|
|
AC_ARG_WITH(id3tag,
|
|
|
|
[--with-id3tag[[=DIR]] use id3tag in DIR],[
|
|
|
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
|
|
|
Z_DIR=$withval
|
|
|
|
CPPFLAGS="${CPPFLAGS} -I$withval/include"
|
|
|
|
LDFLAGS="${LDFLAGS} -L$withval/lib"
|
|
|
|
fi
|
|
|
|
])
|
2004-04-06 14:06:16 +00:00
|
|
|
|
|
|
|
|
2004-04-06 20:06:41 +00:00
|
|
|
AC_CHECK_HEADERS(gdbm.h,, [
|
2004-05-10 03:24:25 +00:00
|
|
|
AC_MSG_ERROR([gdbm.h not found... try --with-gdbm-includes=dir])])
|
2004-04-15 03:06:43 +00:00
|
|
|
AC_CHECK_LIB(gdbm,gdbm_open,echo "Have gdbm", echo "Must have gdbm";exit)
|
|
|
|
|
|
|
|
if test "$STATIC_LIBS" != "no"; then
|
|
|
|
LDFLAGS="${LDFLAGS} ${STATIC_LIBS}/libgdbm.a"
|
|
|
|
echo "Adding static libgdbm"
|
|
|
|
else
|
|
|
|
LDFLAGS="${LDFLAGS} -lgdbm"
|
|
|
|
echo "Adding dynamic libgdbm"
|
|
|
|
fi
|
2004-04-06 14:06:16 +00:00
|
|
|
|
2004-04-15 03:06:43 +00:00
|
|
|
AC_CHECK_HEADERS(id3tag.h,, [
|
2004-04-05 18:35:43 +00:00
|
|
|
AC_MSG_ERROR([id3tag.h not found... try --with-id3tag=dir])])
|
2004-04-15 03:06:43 +00:00
|
|
|
AC_CHECK_LIB(id3tag,id3_file_open,echo "Have id3tag",echo "Must have libid3tag";exit)
|
|
|
|
|
|
|
|
if test "$STATIC_LIBS" != "no"; then
|
|
|
|
LDFLAGS="${LDFLAGS} ${STATIC_LIBS}/libid3tag.a"
|
|
|
|
echo "Adding static libid3tag"
|
|
|
|
else
|
|
|
|
LDFLAGS="${LDFLAGS} -lid3tag"
|
|
|
|
echo "Adding dynamic libid3tag"
|
|
|
|
fi
|
2003-11-10 03:57:39 +00:00
|
|
|
|
2004-03-11 06:06:47 +00:00
|
|
|
AC_REPLACE_FUNCS(strcasestr)
|
|
|
|
AC_REPLACE_FUNCS(strsep)
|
|
|
|
|
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_FUNC_SETPGRP
|
|
|
|
AC_TYPE_SIGNAL
|
|
|
|
AC_CHECK_FUNCS(select socket strdup strerror)
|
|
|
|
|
|
|
|
dnl check to see if we need -lsocket (solaris)
|
|
|
|
|
|
|
|
V_NETLIBS=""
|
|
|
|
AC_CHECK_LIB(socket,socket,V_NETLIBS="-lsocket $V_NETLIBS",,)
|
|
|
|
|
|
|
|
AC_SUBST(V_NETLIBS)
|
|
|
|
|
2004-04-06 02:12:48 +00:00
|
|
|
AC_OUTPUT(src/Makefile admin-root/Makefile contrib/Makefile debian/Makefile Makefile)
|