X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=configure.in;h=cbd9fec290b035378330ba7f4f2bc967633107d9;hb=894cd2cd685ef17029c260c96801d082c71aac11;hp=cd54a6f62bb6a14a78f08b29a7a1b7e46764542d;hpb=507a9e9cb336b409b2b975c9f3f380467b5bcf6b;p=ngircd-alex.git diff --git a/configure.in b/configure.in index cd54a6f6..cbd9fec2 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: configure.in,v 1.101 2004/03/11 22:21:20 alex Exp $ +# $Id: configure.in,v 1.104 2004/12/26 00:14:33 alex Exp $ # # -- Initialisation -- @@ -61,6 +61,14 @@ if test "$GCC" = "yes"; then CFLAGS="$CFLAGS -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes" fi +case "$target_os" in + hpux*) + # This is HP/UX, we need to define _XOPEN_SOURCE_EXTENDED + # (tested with HP/UX 11.11) + CFLAGS="$CFLAGS -D_XOPEN_SOURCE_EXTENDED" + ;; +esac + # Add additional CFLAGS, eventually specified on the command line: test -n "$CFLAGS_ADD" && CFLAGS="$CFLAGS $CFLAGS_ADD" @@ -138,7 +146,7 @@ AC_ARG_WITH(syslog, ) if test "$x_syslog_on" = "yes"; then AC_DEFINE(SYSLOG, 1) - AC_CHECK_HEADERS(syslog.h) + AC_CHECK_HEADERS(syslog.h,,AC_MSG_ERROR([required C header missing!])) fi x_zlib_on=no @@ -157,7 +165,7 @@ AC_ARG_WITH(zlib, ) if test "$x_zlib_on" = "yes"; then AC_DEFINE(ZLIB, 1) - AC_CHECK_HEADERS(zlib.h) + AC_CHECK_HEADERS(zlib.h,,AC_MSG_ERROR([required C header missing!])) fi x_tcpwrap_on=no @@ -187,15 +195,42 @@ x_rendezvous_on=no AC_ARG_WITH(rendezvous, [ --with-rendezvous enable support for "Rendezvous"], [ if test "$withval" = "yes"; then - AC_CHECK_FUNCS(DNSServiceRegistrationCreate, x_rendezvous_on=yes, - AC_MSG_ERROR([Can't enable Rendezvous!]) - ) + AC_CHECK_FUNCS(DNSServiceRegistrationCreate, x_rendezvous_on=osx, + [ + AC_CHECK_LIB(pthread, pthread_mutexattr_init) + AC_CHECK_LIB(howl, sw_discovery_init) + AC_CHECK_FUNCS(sw_discovery_init, \ + x_rendezvous_on=howl, \ + AC_MSG_ERROR([Can't enable Rendezvous!])) + ]) fi ] ) -if test "$x_rendezvous_on" = "yes"; then +if test "$x_rendezvous_on" = "osx"; then + AC_CHECK_HEADERS([DNSServiceDiscovery/DNSServiceDiscovery.h \ + mach/port.h],,AC_MSG_ERROR([required C header missing!])) + AC_DEFINE(RENDEZVOUS, 1) +fi +if test "$x_rendezvous_on" = "howl"; then + for dir in /usr/local/include /usr/local/include/howl* \ + /usr/include /usr/include/howl*; do + test -d "$dir" || continue + AC_MSG_CHECKING([for Howl headers in $dir]) + if test -f "$dir/rendezvous/rendezvous.h"; then + if test "$dir" != "/usr/local/include" -a \ + "$dir" != "/usr/include"; then + CFLAGS="$CFLAGS -I$dir" + CPPFLAGS="-I$dir $CPPFLAGS" + fi + AC_MSG_RESULT(yes) + break + else + AC_MSG_RESULT(no) + fi + done + AC_CHECK_HEADERS([rendezvous/rendezvous.h],, \ + AC_MSG_ERROR([required C header missing!])) AC_DEFINE(RENDEZVOUS, 1) - AC_CHECK_HEADERS(DNSServiceDiscovery/DNSServiceDiscovery.h mach/port.h) fi x_identauth_on=no @@ -211,7 +246,7 @@ AC_ARG_WITH(ident, ) if test "$x_identauth_on" = "yes"; then AC_DEFINE(IDENTAUTH, 1) - AC_CHECK_HEADERS(ident.h) + AC_CHECK_HEADERS(ident.h,,AC_MSG_ERROR([required C header missing!])) fi x_ircplus_on=yes @@ -297,7 +332,8 @@ C=`eval echo ${sysconfdir}` ; C=`eval echo ${C}` M=`eval echo ${mandir}` ; M=`eval echo ${M}` D=`eval echo ${datadir}/doc/${PACKAGE}` ; D=`eval echo ${D}` -echo " Host: ${host}" +echo " Target: ${target}" +test "$target" != "$host" && echo " Host: ${host}" echo " Compiler: ${CC}" test -n "$CFLAGS" && echo " Compiler flags: ${CFLAGS}" test -n "$CPPFLAGS" && echo " Preprocessor flags: ${CPPFLAGS}" @@ -338,7 +374,7 @@ test "$x_strict_rfc_on" = "yes" \ || echo "no" echo $ECHO_N " Rendezvous support: $ECHO_C" -test "$x_rendezvous_on" = "yes" \ +test "$x_rendezvous_on" = "osx" -o "$x_rendezvous_on" = "howl" \ && echo $ECHO_N "yes $ECHO_C" \ || echo $ECHO_N "no $ECHO_C" echo $ECHO_N " IRC+ protocol: $ECHO_C"