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
712e77e3
Commit
712e77e3
authored
Feb 24, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various fixes for string.h vs strings.h
From: Frank Ridderbusch <ridderbusch.pad@sni.de>
parent
18e1f033
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
231 additions
and
172 deletions
+231
-172
src/backend/libpq/pqcomm.c
src/backend/libpq/pqcomm.c
+13
-10
src/bin/pg_passwd/pg_passwd.c
src/bin/pg_passwd/pg_passwd.c
+6
-3
src/configure
src/configure
+198
-158
src/configure.in
src/configure.in
+1
-0
src/include/config.h.in
src/include/config.h.in
+6
-0
src/interfaces/ecpg/preproc/ecpg.c
src/interfaces/ecpg/preproc/ecpg.c
+7
-1
No files found.
src/backend/libpq/pqcomm.c
View file @
712e77e3
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.3
7 1998/02/19 14:27:3
3 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.3
8 1998/02/24 04:01:5
3 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -34,9 +34,14 @@
* the postgres backend.
*
*/
#include "postgres.h"
#include <stdio.h>
#include <string.h>
#include <strings.h>
#if defined(HAVE_STRING_H)
# include <string.h>
#else
# include <strings.h>
#endif
#include <signal.h>
#include <errno.h>
#include <fcntl.h>
...
...
@@ -56,13 +61,11 @@
#endif
/* SOMAXCONN */
#endif
/* linux */
#include <postgres.h>
#include <miscadmin.h>
#include <libpq/pqsignal.h>
#include <libpq/auth.h>
#include <libpq/libpq.h>
/* where the declarations go */
#include <storage/ipc.h>
#include "miscadmin.h"
#include "libpq/pqsignal.h"
#include "libpq/auth.h"
#include "libpq/libpq.h"
/* where the declarations go */
#include "storage/ipc.h"
/* ----------------
* declarations
...
...
src/bin/pg_passwd/pg_passwd.c
View file @
712e77e3
/*
* @(#) pg_passwd.c 1.8 09:13:16 97/07/02 Y. Ichikawa
*/
#include "postgres.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#if defined(HAVE_STRING_H)
# include <string.h>
#else
# include <strings.h>
#endif
#include <unistd.h>
#include <errno.h>
#include <time.h>
#include <ctype.h>
#define issaltchar(c) (isalnum(c) || (c) == '.' || (c) == '/')
#include "postgres.h"
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#endif
...
...
src/configure
View file @
712e77e3
This diff is collapsed.
Click to expand it.
src/configure.in
View file @
712e77e3
...
...
@@ -423,6 +423,7 @@ AC_CHECK_HEADERS(limits.h unistd.h termios.h values.h sys/select.h)
AC_CHECK_HEADERS(sys/resource.h netdb.h arpa/inet.h getopt.h)
AC_CHECK_HEADERS(readline.h history.h dld.h crypt.h endian.h float.h)
AC_CHECK_HEADERS(readline/history.h ieeefp.h fp_class.h netinet/in.h)
AC_CHECK_HEADERS(string.h strings.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
...
...
src/include/config.h.in
View file @
712e77e3
...
...
@@ -14,6 +14,12 @@
* The following is set using configure.
*/
/* Set to 1 if you have <string.h> */
#undef HAVE_STRING_H
/* Set to 1 if you have <strings.h> */
#undef HAVE_STRINGS_H
/* Set to 1 if you have <getopt.h> */
#undef HAVE_GETOPT_H
...
...
src/interfaces/ecpg/preproc/ecpg.c
View file @
712e77e3
...
...
@@ -2,6 +2,8 @@
/* (C) Michael Meskes <meskes@debian.org> Feb 5th, 1998 */
/* Placed under the same copyright as PostgresSQL */
#include "postgres.h"
#include <stdio.h>
#if HAVE_GETOPT_H
# include <getopt.h>
...
...
@@ -9,7 +11,11 @@
# include <unistd.h>
#endif
#include <stdlib.h>
#include <strings.h>
#if defined(HAVE_STRING_H)
# include <string.h>
#else
# include <strings.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