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.1.0) dnl Checks for programs. AC_PROG_CC AC_CANONICAL_HOST AC_ARG_ENABLE(debug,Enable debugging features,CPPFLAGS="$CPPFLAGS -DDEBUG -g") dnl Darwin's stupid cpp preprocessor.... echo Host type is $host case $host in *linux*) CPPFLAGS="$CPPFLAGS -DHAVE_SOCKLEN_T";; *darwin*) CPPFLAGS="$CPPFLAGS -no-cpp-precomp -DHAVE_SOCKADDR_SA_LEN -DHAVE_SOCKLEN_T";; esac dnl Checks for libraries. AC_CHECK_LIB(pthread,pthread_create,LDFLAGS="$LDFLAGS -lpthread") AC_ARG_WITH(zlib, [--with-zlib[[=DIR]] use zlib 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_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_CHECK_HEADERS(zlib.h,LDFLAGS="${LDFLAGS} -lz",[ AC_MSG_ERROR([zlib.h not found... try --with-zlib=dir])]) AC_CHECK_HEADERS(id3tag.h,LDFLAGS="${LDFLAGS} -lid3tag",[ AC_MSG_ERROR([id3tag.h not found... try --with-id3tag=dir])]) dnl AC_CHECK_LIB(id3tag,id3_file_open,LDFLAGS="$LDFLAGS -lid3tag",echo "Must have libid3tag";exit) dnl AC_CHECK_LIB(z,compress,LDFLAGS="$LDFLAGS -lz",echo "Must have zlib";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 docs/Makefile Makefile)