owntone-server/configure.in

49 lines
1.1 KiB
Plaintext
Raw Normal View History

2003-10-13 11:32:43 -04:00
dnl $Id$
2003-10-13 11:03:14 -04:00
dnl
dnl Process this file with autoconf to produce a configure script.
2003-10-13 11:32:43 -04:00
AC_INIT(config.h.in)
2003-10-13 11:03:14 -04:00
AM_CONFIG_HEADER(config.h)
2003-10-13 11:17:10 -04:00
AM_INIT_AUTOMAKE(mt-daapd,0.1.0)
2003-10-13 11:03:14 -04:00
dnl Checks for programs.
AC_PROG_CC
2003-10-13 11:32:43 -04:00
AC_CANONICAL_HOST
AC_ARG_ENABLE(debug,Enable debugging features,CPPFLAGS="$CPPFLAGS -DDEBUG -g")
dnl Darwin's stupid cpp preprocessor....
2003-10-25 15:38:14 -04:00
echo Host type is $host
2003-10-13 11:32:43 -04:00
case $host in
*darwin*)
2003-10-25 15:38:14 -04:00
CPPFLAGS="$CPPFLAGS -no-cpp-precomp -DHAVE_SOCKADDR_SA_LEN -DHAVE_SOCKLEN_T";;
2003-10-13 11:32:43 -04:00
esac
2003-10-13 11:03:14 -04:00
dnl Checks for libraries.
2003-10-13 11:32:43 -04:00
AC_CHECK_LIB(pthread,pthread_create,LDFLAGS="$LDFLAGS -lpthread")
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_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)