mirror of
https://github.com/osmarks/ngircd.git
synced 2025-01-13 01:00:27 +00:00
- Test auf Header "arpa/inet.h" und Funktion inet_aton() hinzugefuegt (BeOS).
This commit is contained in:
parent
3d2e944856
commit
406ac2c8c2
11
configure.in
11
configure.in
@ -9,9 +9,12 @@
|
|||||||
# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
||||||
# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
|
# 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 $
|
# $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
|
# Revision 1.16 2002/01/02 13:41:36 alex
|
||||||
# - CFLAGS wird nur noch gesetzt, wenn der GCC verwendet wird.
|
# - CFLAGS wird nur noch gesetzt, wenn der GCC verwendet wird.
|
||||||
#
|
#
|
||||||
@ -115,10 +118,12 @@ AC_ARG_WITH(portab,
|
|||||||
)
|
)
|
||||||
|
|
||||||
AC_CHECK_HEADERS([ \
|
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 \
|
sys/socket.h sys/time.h unistd.h \
|
||||||
],,AC_MSG_ERROR([required C header missing!]))
|
],,AC_MSG_ERROR([required C header missing!]))
|
||||||
|
|
||||||
|
AC_CHECK_HEADERS(arpa/inet.h)
|
||||||
|
|
||||||
# -- Datentypen --
|
# -- Datentypen --
|
||||||
|
|
||||||
AC_MSG_CHECKING(whether socklen_t exists)
|
AC_MSG_CHECKING(whether socklen_t exists)
|
||||||
@ -143,6 +148,8 @@ AC_CHECK_FUNCS([ \
|
|||||||
socket strcasecmp strchr strerror strstr waitpid \
|
socket strcasecmp strchr strerror strstr waitpid \
|
||||||
],,AC_MSG_ERROR([required function missing!]))
|
],,AC_MSG_ERROR([required function missing!]))
|
||||||
|
|
||||||
|
AC_CHECK_FUNCS(inet_aton)
|
||||||
|
|
||||||
# -- Libraries --
|
# -- Libraries --
|
||||||
|
|
||||||
# -- Konfigurationsoptionen --
|
# -- Konfigurationsoptionen --
|
||||||
|
Loading…
Reference in New Issue
Block a user