commit - c23bbe6b6541a141cbd38f65936bbc8a606b0b32
commit + 42e8063a326d086be265145cb34ecff6061be563
blob - 49d2debe62218b397b6e0075e032f07e85a11171
blob + 64179058def62578ce612f5df110b7ebe4bbae39
--- configure.in
+++ configure.in
# (at your option) any later version.
# Please read the file COPYING, README and AUTHORS for more information.
#
-# $Id: configure.in,v 1.102 2004/04/11 13:20:24 alex Exp $
+# $Id: configure.in,v 1.103 2004/05/15 12:24:30 alex Exp $
#
# -- Initialisation --
)
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
)
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
)
if test "$x_rendezvous_on" = "yes"; then
AC_DEFINE(RENDEZVOUS, 1)
- AC_CHECK_HEADERS(DNSServiceDiscovery/DNSServiceDiscovery.h mach/port.h)
+ AC_CHECK_HEADERS([DNSServiceDiscovery/DNSServiceDiscovery.h \
+ mach/port.h],,AC_MSG_ERROR([required C header missing!]))
fi
x_identauth_on=no
)
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