commit 406ac2c8c25c8a7858c5a6d95f09b081d45bc254 from: Alexander Barton date: Sat Jan 05 15:53:20 2002 UTC - Test auf Header "arpa/inet.h" und Funktion inet_aton() hinzugefuegt (BeOS). commit - 3d2e944856a08dec8430c61c9f98841640d3ec35 commit + 406ac2c8c25c8a7858c5a6d95f09b081d45bc254 blob - 3e8f90a7b36600bc4b5a4207518da9874eab550d blob + af993f9a7e980f3ba90660b7cdc1c5a0e32c7624 --- configure.in +++ 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 --