Commit e7545748 authored by Peter Eisentraut's avatar Peter Eisentraut

Remove references to symbols that no longer get defined

parent 466f8ff5
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* or in config.h afterwards. Of course, if you edit config.h, then your * or in config.h afterwards. Of course, if you edit config.h, then your
* changes will be overwritten the next time you run configure. * changes will be overwritten the next time you run configure.
* *
* $Id: config.h.in,v 1.126 2000/07/12 22:59:12 petere Exp $ * $Id: config.h.in,v 1.127 2000/07/14 16:39:35 petere Exp $
*/ */
#ifndef CONFIG_H #ifndef CONFIG_H
...@@ -408,14 +408,11 @@ extern int gethostname(char *name, int namelen); ...@@ -408,14 +408,11 @@ extern int gethostname(char *name, int namelen);
/* Set to 1 if you have inet_aton() */ /* Set to 1 if you have inet_aton() */
#undef HAVE_INET_ATON #undef HAVE_INET_ATON
#ifndef HAVE_INET_ATON #ifndef HAVE_INET_ATON
# ifdef HAVE_ARPA_INET_H # include <sys/types.h>
# ifdef HAVE_NETINET_IN_H # include <netinet/in.h>
# include <sys/types.h> # include <arpa/inet.h>
# include <netinet/in.h>
# endif
# include <arpa/inet.h>
# endif
extern int inet_aton(const char *cp, struct in_addr * addr); extern int inet_aton(const char *cp, struct in_addr * addr);
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment