143 lines
4.1 KiB
Plaintext
143 lines
4.1 KiB
Plaintext
dnl $Id$
|
|
dnl
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(config.h.in)
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
AM_INIT_AUTOMAKE(mt-daapd,0.2.0-cvs)
|
|
|
|
dnl Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_YACC
|
|
AM_PROG_LEX
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
AM_CONDITIONAL(COND_REND_OSX,false)
|
|
|
|
AC_ARG_ENABLE(debug,Enable debugging features,CPPFLAGS="$CPPFLAGS -DDEBUG_MEMORY -g -Wall")
|
|
AC_ARG_ENABLE(efence,Enable electric fence,LDFLAGS="$LDFLAGS -lefence")
|
|
|
|
AC_ARG_ENABLE(howl,[ --enable-howl Use the howl mDNS library],
|
|
[ case "${enableval}" in
|
|
yes) rend_howl=true; LDFLAGS="${LDFLAGS} -lrendezvous -lcorby -lsalt";
|
|
CPPFLAGS="${CPPFLAGS} -DWITH_HOWL";;
|
|
no) rend_howl=false;;
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-howl);;
|
|
esac ],[rend_howl=false])
|
|
|
|
AM_CONDITIONAL(COND_REND_HOWL, test x$rend_howl = xtrue)
|
|
AM_CONDITIONAL(COND_REND_POSIX, test x$rend_howl = xfalse)
|
|
|
|
AM_CONDITIONAL(COND_NEED_STRCASESTR,false)
|
|
AM_CONDITIONAL(COND_NEED_STRSEP,false)
|
|
|
|
dnl Darwin's stupid cpp preprocessor....
|
|
echo Host type is $host
|
|
CPPFLAGS="$CPPFLAGS -DHOST='\"$host\"'"
|
|
|
|
|
|
case $host in
|
|
*solaris*)
|
|
CPPFLAGS="$CPPFLAGS -DNOT_HAVE_SA_LEN -D_XPG4_2 "
|
|
CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__ -DHAVE_BROKEN_RECVIF_NAME"
|
|
LDFLAGS="$LDFLAGS -lnsl -lsocket";;
|
|
*linux*)
|
|
CPPFLAGS="$CPPFLAGS -DNOT_HAVE_SA_LEN";;
|
|
*openbsd*)
|
|
CPPFLAGS="$CPPFLAGS -DHAVE_BROKEN_RECVDSTADDR";;
|
|
*darwin*)
|
|
CPPFLAGS="$CPPFLAGS -no-cpp-precomp -DMAC"
|
|
LDFLAGS="$LDFLAGS -framework CoreFoundation"
|
|
|
|
AM_CONDITIONAL(COND_REND_OSX,true)
|
|
AM_CONDITIONAL(COND_REND_HOWL,false)
|
|
AM_CONDITIONAL(COND_REND_POSIX,false);;
|
|
esac
|
|
|
|
dnl Checks for libraries.
|
|
AC_CHECK_LIB(pthread,pthread_create,LDFLAGS="$LDFLAGS -lpthread")
|
|
|
|
AC_ARG_WITH(gdbm,
|
|
[--with-gdbm store music info in gdbm databases],
|
|
[ case "${withval}" in
|
|
yes) use_gdbm=true; LDFLAGS="${LDFLAGS} -lgdbm"; CPPFLAGS="${CPPFLAGS} -DWITH_GDBM";;
|
|
no) use_gdbm=false;;
|
|
*) AC_MSG_ERROR(bad value ${withval} for --with-gdbm);;
|
|
esac ], [use_gdbm=false])
|
|
AM_CONDITIONAL(COND_USE_GDBM, test x$use_gdbm = xtrue)
|
|
|
|
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
|
|
CLAGS="${CPPFLAGS} -I$withval"
|
|
fi
|
|
])
|
|
|
|
AC_ARG_WITH(howl-includes,
|
|
[--with-howl-includes[[=DIR]] use howl include files in DIR],[
|
|
if test "$withval" != "no" -a "$withval" != "yes"; then
|
|
Z_DIR=$withval
|
|
CPPFLAGS="${CPPFLAGS} -I$withval"
|
|
fi
|
|
])
|
|
|
|
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
|
|
])
|
|
|
|
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"
|
|
fi
|
|
])
|
|
|
|
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
|
|
])
|
|
|
|
AC_REPLACE_FUNCS(strcasestr)
|
|
AC_REPLACE_FUNCS(strsep)
|
|
|
|
AC_CHECK_HEADERS(id3tag.h,LDFLAGS="${LDFLAGS} -lid3tag",[
|
|
AC_MSG_ERROR([id3tag.h not found... try --with-id3tag=dir])])
|
|
|
|
AC_CHECK_LIB(z,compress,LDFLAGS="$LDFLAGS -lz",echo "Must have zlib";exit)
|
|
AC_CHECK_LIB(id3tag,id3_file_open,LDFLAGS="$LDFLAGS -lid3tag",echo "Must have libid3tag";exit)
|
|
|
|
dnl Checks for header files.
|
|
AC_HEADER_STDC
|
|
AC_HEADER_SYS_WAIT
|
|
AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h syslog.h unistd.h \
|
|
sys/filio.h termio.h)
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
AC_HEADER_TIME
|
|
|
|
dnl Checks for library functions.
|
|
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)
|
|
|
|
AC_OUTPUT(src/Makefile admin-root/Makefile contrib/Makefile Makefile)
|