aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-07-14 16:39:35 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-07-14 16:39:35 +0000
commite7545748b5fab87ac2c0aba0d2166b2e2157ce22 (patch)
treeb994b0233dfd1b6d8ae20dac484b774d07dadde7 /src
parent466f8ff5f1d40a84627f9df21a91714552df12ac (diff)
downloadpostgresql-e7545748b5fab87ac2c0aba0d2166b2e2157ce22.tar.gz
postgresql-e7545748b5fab87ac2c0aba0d2166b2e2157ce22.zip
Remove references to symbols that no longer get defined
Diffstat (limited to 'src')
-rw-r--r--src/include/config.h.in13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in
index 41779aeb943..e6c23e48758 100644
--- a/src/include/config.h.in
+++ b/src/include/config.h.in
@@ -8,7 +8,7 @@
* or in config.h afterwards. Of course, if you edit config.h, then your
* 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
@@ -408,14 +408,11 @@ extern 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
-# ifdef HAVE_NETINET_IN_H
-# include <sys/types.h>
-# include <netinet/in.h>
-# endif
-# include <arpa/inet.h>
-# endif
+# include <sys/types.h>
+# include <netinet/in.h>
+# include <arpa/inet.h>
extern int inet_aton(const char *cp, struct in_addr * addr);
#endif