ID: 9382 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Compile Failure Assigned To: Comments: Thanks, fixed in CVS. Previous Comments: --------------------------------------------------------------------------- [2001-02-21 15:19:43] [EMAIL PROTECTED] OS/400 does not support inet_aton, and thus an error occurs when trying to compile main/network.c. I did notice that ext/standard/flock_compat.c has an implementation of inet_aton. And that main/network.c does include the prototype as follows: #ifndef PHP_WIN32 #include <netinet/in.h> #include <netdb.h> #include <arpa/inet.h> #else int inet_aton(const char *, struct in_addr *); #endif All I ask is to change the above to the following: #ifndef PHP_WIN32 #include <netinet/in.h> #include <netdb.h> #include <arpa/inet.h> #endif #ifndef HAVE_INET_ATON int inet_aton(const char *, struct in_addr *); #endif --------------------------------------------------------------------------- ATTENTION! Do NOT reply to this email! To reply, use the web interface found at http://bugs.php.net/?id=9382&edit=2 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]