Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
33de29fc
Commit
33de29fc
authored
Jan 23, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor cleanups for i386_solaris port
parent
e697082f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
src/backend/port/inet_aton.c
src/backend/port/inet_aton.c
+1
-2
src/configure
src/configure
+1
-1
src/configure.in
src/configure.in
+1
-1
src/include/config.h.in
src/include/config.h.in
+6
-0
No files found.
src/backend/port/inet_aton.c
View file @
33de29fc
/* $Id: inet_aton.c,v 1.1
1 1997/12/19 13:34:28
scrappy Exp $
/* $Id: inet_aton.c,v 1.1
2 1998/01/23 19:13:14
scrappy Exp $
*
*
* This inet_aton() function was taken from the GNU C library and
* This inet_aton() function was taken from the GNU C library and
* incorporated into Postgres for those systems which do not have this
* incorporated into Postgres for those systems which do not have this
...
@@ -45,7 +45,6 @@
...
@@ -45,7 +45,6 @@
#include <sys/types.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <netinet/in.h>
#include <ctype.h>
#include <ctype.h>
#include "inet_aton.h"
/*
/*
* Check whether "cp" is a valid ascii representation
* Check whether "cp" is a valid ascii representation
...
...
src/configure
View file @
33de29fc
...
@@ -2738,7 +2738,7 @@ else
...
@@ -2738,7 +2738,7 @@ else
fi
fi
done
done
for
ac_hdr
in
sys/resource.h netdb.h
for
ac_hdr
in
sys/resource.h netdb.h
arpa/inet.h
do
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
...
...
src/configure.in
View file @
33de29fc
...
@@ -428,7 +428,7 @@ dnl Checks for header files.
...
@@ -428,7 +428,7 @@ dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(limits.h unistd.h termios.h values.h sys/select.h)
AC_CHECK_HEADERS(limits.h unistd.h termios.h values.h sys/select.h)
AC_CHECK_HEADERS(sys/resource.h netdb.h)
AC_CHECK_HEADERS(sys/resource.h netdb.h
arpa/inet.h
)
AC_CHECK_HEADERS(readline.h history.h dld.h crypt.h endian.h float.h)
AC_CHECK_HEADERS(readline.h history.h dld.h crypt.h endian.h float.h)
AC_CHECK_HEADERS(readline/history.h)
AC_CHECK_HEADERS(readline/history.h)
...
...
src/include/config.h.in
View file @
33de29fc
...
@@ -14,6 +14,9 @@
...
@@ -14,6 +14,9 @@
* The following is set using configure.
* 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> */
/* Set to 1 if you have <netdb.h> */
#undef HAVE_NETDB_H
#undef HAVE_NETDB_H
...
@@ -74,6 +77,9 @@ int gethostname(char *name, int namelen);
...
@@ -74,6 +77,9 @@ 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 <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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment