mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-11 17:37:33 +08:00
Minor cleanups for i386_solaris port
This commit is contained 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user