- Test auf Header "arpa/inet.h" und Funktion inet_aton() hinzugefuegt (BeOS).

This commit is contained in:
Alexander Barton 2002-01-05 15:53:20 +00:00
parent 3d2e944856
commit 406ac2c8c2
1 changed files with 9 additions and 2 deletions

View File

@ -9,9 +9,12 @@
# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
#
# $Id: configure.in,v 1.16 2002/01/02 13:41:36 alex Exp $
# $Id: configure.in,v 1.17 2002/01/05 15:53:20 alex Exp $
#
# $Log: configure.in,v $
# Revision 1.17 2002/01/05 15:53:20 alex
# - Test auf Header "arpa/inet.h" und Funktion inet_aton() hinzugefuegt (BeOS).
#
# Revision 1.16 2002/01/02 13:41:36 alex
# - CFLAGS wird nur noch gesetzt, wenn der GCC verwendet wird.
#
@ -115,10 +118,12 @@ AC_ARG_WITH(portab,
)
AC_CHECK_HEADERS([ \
arpa/inet.h errno.h fcntl.h netinet/in.h string.h \
errno.h fcntl.h netinet/in.h string.h \
sys/socket.h sys/time.h unistd.h \
],,AC_MSG_ERROR([required C header missing!]))
AC_CHECK_HEADERS(arpa/inet.h)
# -- Datentypen --
AC_MSG_CHECKING(whether socklen_t exists)
@ -143,6 +148,8 @@ AC_CHECK_FUNCS([ \
socket strcasecmp strchr strerror strstr waitpid \
],,AC_MSG_ERROR([required function missing!]))
AC_CHECK_FUNCS(inet_aton)
# -- Libraries --
# -- Konfigurationsoptionen --