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
c9acd2da
Commit
c9acd2da
authored
Jul 19, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove getopt configure check.
parent
44bc7ab2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
10 deletions
+3
-10
src/configure.in
src/configure.in
+0
-1
src/include/config.h.in
src/include/config.h.in
+0
-3
src/interfaces/ecpg/preproc/ecpg.c
src/interfaces/ecpg/preproc/ecpg.c
+3
-6
No files found.
src/configure.in
View file @
c9acd2da
...
...
@@ -582,7 +582,6 @@ AC_CHECK_HEADERS(dld.h)
AC_CHECK_HEADERS(endian.h)
AC_CHECK_HEADERS(float.h)
AC_CHECK_HEADERS(fp_class.h)
AC_CHECK_HEADERS(getopt.h)
AC_CHECK_HEADERS(history.h)
AC_CHECK_HEADERS(ieeefp.h)
AC_CHECK_HEADERS(limits.h)
...
...
src/include/config.h.in
View file @
c9acd2da
...
...
@@ -235,9 +235,6 @@
/* Set to 1 if you have <fp_class.h> */
#undef HAVE_FP_CLASS_H
/* Set to 1 if you have <fp_class.h> */
#undef HAVE_GETOPT
/* Set to 1 if you have <history.h> */
#undef HAVE_HISTORY_H
...
...
src/interfaces/ecpg/preproc/ecpg.c
View file @
c9acd2da
...
...
@@ -2,14 +2,11 @@
/* (C) Michael Meskes <meskes@debian.org> Feb 5th, 1998 */
/* Placed under the same copyright as PostgresSQL */
#include <unistd.h>
#include "postgres.h"
#ifdef HAVE_GETOPT_H
#include <getopt.h>
#else
#include <unistd.h>
extern
int
optind
;
extern
char
*
optarg
;
#ifdef __CYGWIN32__
#include "getopt.h"
#endif
#include "extern.h"
...
...
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