File tree 7 files changed +24
-19
lines changed
7 files changed +24
-19
lines changed Original file line number Diff line number Diff line change 4
4
# Makefile for libpq subsystem (backend half of libpq interface)
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/libpq/Makefile,v 1.1 1996/10/27 09:47 :47 bryanh Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/libpq/Makefile,v 1.2 1996/10/31 10:37 :47 scrappy Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
11
11
SRCDIR = ../..
12
12
include ../../Makefile.global
13
13
14
- INCLUDE_OPT = -I.. \
15
- -I../port/$(PORTNAME ) \
16
- -I../include \
14
+ INCLUDE_OPT = -I../port/$(PORTNAME ) \
17
15
-I../../include
18
16
19
17
CFLAGS+ =$(INCLUDE_OPT )
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.4 1996/10/13 04:49:32 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.5 1996/10/31 10:37:48 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
61
61
62
62
#include <netinet/in.h>
63
63
#include <arpa/inet.h>
64
- #include <libpq/auth.h>
65
- #include <libpq/libpq.h>
66
- #include <libpq/libpq-be.h>
67
- #include <libpq/hba.h>
64
+
65
+ #include "postgres.h"
66
+
67
+ #include "libpq/auth.h"
68
+ #include "libpq/libpq.h"
69
+ #include "libpq/libpq-be.h"
70
+ #include "libpq/hba.h"
68
71
69
72
/*----------------------------------------------------------------
70
73
* common definitions for generic fe/be routines
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.2 1996/09/23 08:29:52 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.3 1996/10/31 10:37:49 scrappy Exp $
11
11
*
12
12
* NOTES
13
13
* This should be moved to a more appropriate place. It is here
25
25
#include "lib/dllist.h"
26
26
#include "libpq/libpq.h"
27
27
#include "libpq/libpq-fs.h"
28
+ #include "nodes/nodes.h"
29
+ #include "utils/memutils.h"
30
+ #include "lib/fstack.h"
28
31
#include "utils/mcxt.h"
29
32
#include "utils/palloc.h"
30
33
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portal.c,v 1.2 1996/10/11 09:47:13 bryanh Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portal.c,v 1.3 1996/10/31 10:37:50 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
58
58
#include <stdio.h> /* for sprintf() */
59
59
#include <string.h>
60
60
61
- #include "c .h"
61
+ #include "postgres .h"
62
62
#include "lib/dllist.h"
63
63
#include "libpq/libpq.h" /* where the declarations go */
64
64
#include "utils/exc.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.1.1.1 1996/07/09 06:21:30 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.2 1996/10/31 10:37:51 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
48
48
*
49
49
*/
50
50
#include <sys/types.h>
51
- #include "c .h"
51
+ #include "postgres .h"
52
52
53
53
#include "libpq/libpq.h" /* where the declarations go */
54
54
#include "utils/exc.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.3 1996/10/31 10:16:09 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.4 1996/10/31 10:37:52 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
34
34
* the postgres backend.
35
35
*
36
36
*/
37
+
38
+ #include "postgres.h"
39
+
37
40
#include "libpq/pqsignal.h" /* substitute for <signal.h> */
38
41
#include <stdio.h>
39
42
#include <string.h>
55
58
#endif /* SOMAXCONN */
56
59
#endif /* linux */
57
60
58
- #include "c.h"
59
61
#include "libpq/auth.h"
60
62
#include "libpq/libpq.h" /* where the declarations go */
61
63
#include "libpq/pqcomm.h"
62
- #include "utils/elog.h"
63
64
64
65
/* ----------------
65
66
* declarations
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/util.c,v 1.1 1996/10/11 09:47:14 bryanh Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/util.c,v 1.2 1996/10/31 10:37:53 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
22
22
#include <stdio.h> /* for sprintf() */
23
23
#include <string.h>
24
24
25
- #include "c .h"
25
+ #include "postgres .h"
26
26
#include "lib/dllist.h"
27
27
#include "libpq/libpq.h" /* where the declarations go */
28
28
#include "utils/exc.h"
You can’t perform that action at this time.
0 commit comments