Minor cleanups for i386_solaris port

This commit is contained in:
Marc G. Fournier
1998-01-23 19:13:22 +00:00
parent e697082f00
commit 33de29fc45
4 changed files with 9 additions and 4 deletions

View File

@ -14,6 +14,9 @@
* The following is set using configure.
*/
/* Set to 1 if you have <arpa/inet.h> */
#undef HAVE_ARPA_INET_H
/* Set to 1 if you have <netdb.h> */
#undef HAVE_NETDB_H
@ -74,6 +77,9 @@ int gethostname(char *name, int namelen);
/* Set to 1 if you have inet_aton() */
#undef HAVE_INET_ATON
#ifndef HAVE_INET_ATON
# ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
# endif
extern int inet_aton(const char *cp, struct in_addr * addr);
#endif