summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1998-01-23 19:13:22 +0000
committerMarc G. Fournier <scrappy@hub.org>1998-01-23 19:13:22 +0000
commit33de29fc45bc219d87b97b7c8bfe7dcf1b2d41eb (patch)
tree9e486bf29dbeedf43269d767f855acf00d84113a /src/include
parente697082f00ddcba87917af4376ea3adb41c916df (diff)
Minor cleanups for i386_solaris port
Diffstat (limited to 'src/include')
-rw-r--r--src/include/config.h.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in
index 1e99ac39547..74f84894db7 100644
--- a/src/include/config.h.in
+++ b/src/include/config.h.in
@@ -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