From: Alexander Barton Date: Sat, 5 Jan 2002 15:53:20 +0000 (+0000) Subject: - Test auf Header "arpa/inet.h" und Funktion inet_aton() hinzugefuegt (BeOS). X-Git-Tag: rel-0-0-2~21 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=406ac2c8c25c8a7858c5a6d95f09b081d45bc254;hp=3d2e944856a08dec8430c61c9f98841640d3ec35 - Test auf Header "arpa/inet.h" und Funktion inet_aton() hinzugefuegt (BeOS). --- diff --git a/configure.in b/configure.in index 3e8f90a7..af993f9a 100644 --- a/configure.in +++ b/configure.in @@ -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 --