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
07262a2d
Commit
07262a2d
authored
Jul 18, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update configure include checks.
parent
0858b06f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
10 deletions
+0
-10
src/configure.in
src/configure.in
+0
-2
src/include/config.h.in
src/include/config.h.in
+0
-6
src/interfaces/ecpg/preproc/ecpg.c
src/interfaces/ecpg/preproc/ecpg.c
+0
-2
No files found.
src/configure.in
View file @
07262a2d
...
@@ -582,12 +582,10 @@ AC_CHECK_HEADERS(dld.h)
...
@@ -582,12 +582,10 @@ AC_CHECK_HEADERS(dld.h)
AC_CHECK_HEADERS(endian.h)
AC_CHECK_HEADERS(endian.h)
AC_CHECK_HEADERS(float.h)
AC_CHECK_HEADERS(float.h)
AC_CHECK_HEADERS(fp_class.h)
AC_CHECK_HEADERS(fp_class.h)
AC_CHECK_HEADERS(getopt.h)
AC_CHECK_HEADERS(history.h)
AC_CHECK_HEADERS(history.h)
AC_CHECK_HEADERS(ieeefp.h)
AC_CHECK_HEADERS(ieeefp.h)
AC_CHECK_HEADERS(limits.h)
AC_CHECK_HEADERS(limits.h)
AC_CHECK_HEADERS(netdb.h)
AC_CHECK_HEADERS(netdb.h)
AC_CHECK_HEADERS(netinet/in.h)
AC_CHECK_HEADERS(readline.h)
AC_CHECK_HEADERS(readline.h)
AC_CHECK_HEADERS(readline/history.h)
AC_CHECK_HEADERS(readline/history.h)
AC_CHECK_HEADERS(readline/readline.h)
AC_CHECK_HEADERS(readline/readline.h)
...
...
src/include/config.h.in
View file @
07262a2d
...
@@ -77,9 +77,6 @@
...
@@ -77,9 +77,6 @@
/* Set to 1 if you have <fp_class.h> */
/* Set to 1 if you have <fp_class.h> */
#undef HAVE_FP_CLASS_H
#undef HAVE_FP_CLASS_H
/* Set to 1 if you have <getopt.h> */
#undef HAVE_GETOPT_H
/* Set to 1 if you have <history.h> */
/* Set to 1 if you have <history.h> */
#undef HAVE_HISTORY_H
#undef HAVE_HISTORY_H
...
@@ -92,9 +89,6 @@
...
@@ -92,9 +89,6 @@
/* Set to 1 if you have <netdb.h> */
/* Set to 1 if you have <netdb.h> */
#undef HAVE_NETDB_H
#undef HAVE_NETDB_H
/* Set to 1 if you have <netinet/in.h> */
#undef HAVE_NETINET_IN_H
/* Set to 1 if you have <readline.h> */
/* Set to 1 if you have <readline.h> */
#undef HAVE_READLINE_H
#undef HAVE_READLINE_H
...
...
src/interfaces/ecpg/preproc/ecpg.c
View file @
07262a2d
...
@@ -4,9 +4,7 @@
...
@@ -4,9 +4,7 @@
#include "postgres.h"
#include "postgres.h"
#if HAVE_GETOPT_H
#include <getopt.h>
#include <getopt.h>
#else
#include <unistd.h>
#include <unistd.h>
extern
int
optind
;
extern
int
optind
;
extern
char
*
optarg
;
extern
char
*
optarg
;
...
...
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