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
ae1d931e
Commit
ae1d931e
authored
Oct 31, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean up makefile
add #include "postgres.h"
parent
ffaff3dc
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
24 additions
and
19 deletions
+24
-19
src/backend/libpq/Makefile
src/backend/libpq/Makefile
+2
-4
src/backend/libpq/auth.c
src/backend/libpq/auth.c
+8
-5
src/backend/libpq/be-fsstubs.c
src/backend/libpq/be-fsstubs.c
+4
-1
src/backend/libpq/portal.c
src/backend/libpq/portal.c
+2
-2
src/backend/libpq/portalbuf.c
src/backend/libpq/portalbuf.c
+2
-2
src/backend/libpq/pqcomm.c
src/backend/libpq/pqcomm.c
+4
-3
src/backend/libpq/util.c
src/backend/libpq/util.c
+2
-2
No files found.
src/backend/libpq/Makefile
View file @
ae1d931e
...
...
@@ -4,16 +4,14 @@
# Makefile for libpq subsystem (backend half of libpq interface)
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/libpq/Makefile,v 1.
1 1996/10/27 09:47:47 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/libpq/Makefile,v 1.
2 1996/10/31 10:37:47 scrappy
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../..
include
../../Makefile.global
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../include
\
INCLUDE_OPT
=
-I
../port/
$(PORTNAME)
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/libpq/auth.c
View file @
ae1d931e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.
4 1996/10/13 04:49:32 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.
5 1996/10/31 10:37:48 scrappy
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -61,10 +61,13 @@
#include <netinet/in.h>
#include <arpa/inet.h>
#include <libpq/auth.h>
#include <libpq/libpq.h>
#include <libpq/libpq-be.h>
#include <libpq/hba.h>
#include "postgres.h"
#include "libpq/auth.h"
#include "libpq/libpq.h"
#include "libpq/libpq-be.h"
#include "libpq/hba.h"
/*----------------------------------------------------------------
* common definitions for generic fe/be routines
...
...
src/backend/libpq/be-fsstubs.c
View file @
ae1d931e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.
2 1996/09/23 08:29:52
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.
3 1996/10/31 10:37:49
scrappy Exp $
*
* NOTES
* This should be moved to a more appropriate place. It is here
...
...
@@ -25,6 +25,9 @@
#include "lib/dllist.h"
#include "libpq/libpq.h"
#include "libpq/libpq-fs.h"
#include "nodes/nodes.h"
#include "utils/memutils.h"
#include "lib/fstack.h"
#include "utils/mcxt.h"
#include "utils/palloc.h"
...
...
src/backend/libpq/portal.c
View file @
ae1d931e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portal.c,v 1.
2 1996/10/11 09:47:13 bryanh
Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portal.c,v 1.
3 1996/10/31 10:37:50 scrappy
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -58,7 +58,7 @@
#include <stdio.h>
/* for sprintf() */
#include <string.h>
#include "
c
.h"
#include "
postgres
.h"
#include "lib/dllist.h"
#include "libpq/libpq.h"
/* where the declarations go */
#include "utils/exc.h"
...
...
src/backend/libpq/portalbuf.c
View file @
ae1d931e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.
1.1.1 1996/07/09 06:21:30
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.
2 1996/10/31 10:37:51
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -48,7 +48,7 @@
*
*/
#include <sys/types.h>
#include "
c
.h"
#include "
postgres
.h"
#include "libpq/libpq.h"
/* where the declarations go */
#include "utils/exc.h"
...
...
src/backend/libpq/pqcomm.c
View file @
ae1d931e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.
3 1996/10/31 10:16:09
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.
4 1996/10/31 10:37:52
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -34,6 +34,9 @@
* the postgres backend.
*
*/
#include "postgres.h"
#include "libpq/pqsignal.h"
/* substitute for <signal.h> */
#include <stdio.h>
#include <string.h>
...
...
@@ -55,11 +58,9 @@
#endif
/* SOMAXCONN */
#endif
/* linux */
#include "c.h"
#include "libpq/auth.h"
#include "libpq/libpq.h"
/* where the declarations go */
#include "libpq/pqcomm.h"
#include "utils/elog.h"
/* ----------------
* declarations
...
...
src/backend/libpq/util.c
View file @
ae1d931e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/util.c,v 1.
1 1996/10/11 09:47:14 bryanh
Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/util.c,v 1.
2 1996/10/31 10:37:53 scrappy
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -22,7 +22,7 @@
#include <stdio.h>
/* for sprintf() */
#include <string.h>
#include "
c
.h"
#include "
postgres
.h"
#include "lib/dllist.h"
#include "libpq/libpq.h"
/* where the declarations go */
#include "utils/exc.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