File tree 29 files changed +73
-75
lines changed
29 files changed +73
-75
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.4 1996/10/31 10:16:08 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.5 1996/11/03 06:52:13 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
20
20
#include <netinet/in.h>
21
21
#include <arpa/inet.h>
22
22
#if defined(sparc_solaris )
23
- #include < port/inet_aton.h>
23
+ #include " port/inet_aton.h"
24
24
#endif
25
25
26
- #include <miscadmin.h>
27
- #include <libpq/libpq.h>
28
- #include <libpq/pqcomm.h>
29
- #include <libpq/hba.h>
26
+ #include "postgres.h"
27
+ #include "miscadmin.h"
28
+ #include "libpq/libpq.h"
29
+ #include "libpq/pqcomm.h"
30
+ #include "libpq/hba.h"
30
31
31
32
32
33
#define CONF_FILE "pg_hba.conf"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.1.1.1 1996/07/09 06:21:31 scrappy Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.2 1996/11/03 06:52:14 scrappy Exp $
12
12
*
13
13
* NOTES
14
14
* This shouldn't be in libpq, but the monitor and some other
15
15
* things need it...
16
16
*
17
17
*-------------------------------------------------------------------------
18
18
*/
19
+ #include "postgres.h"
20
+
19
21
#include "libpq/pqsignal.h"
20
22
21
23
pqsigfunc
Original file line number Diff line number Diff line change 4
4
# Makefile for tcop
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.2 1996/10/31 05:55:23 momjian Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.3 1996/11/03 06:52:27 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/tcop/Attic/aclchk.c,v 1.2 1996/10/31 05:55:24 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.3 1996/11/03 06:52:29 scrappy Exp $
11
11
*
12
12
* NOTES
13
13
* See acl.h.
14
14
*
15
15
*-------------------------------------------------------------------------
16
16
*/
17
17
#include <string.h>
18
+ #include "postgres.h"
19
+
18
20
#include "utils/acl.h" /* where declarations for this file goes */
19
21
#include "access/heapam.h"
20
22
#include "access/htup.h"
21
23
#include "access/tupmacs.h"
22
24
#include "utils/builtins.h"
23
- #include "utils/elog.h"
24
25
#include "utils/palloc.h"
25
26
#include "catalog/indexing.h"
26
27
#include "catalog/catalog.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.1.1.1 1996/07/09 06:21:59 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.2 1996/11/03 06:52:31 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
30
30
#include "libpq/libpq-be.h"
31
31
#include "access/printtup.h"
32
32
#include "utils/portal.h"
33
- #include "utils/elog.h"
34
33
#include "utils/palloc.h"
35
34
36
35
#include "executor/executor.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.1.1.1 1996/07/09 06:21:59 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.2 1996/11/03 06:52:32 scrappy Exp $
11
11
*
12
12
* NOTES
13
13
* This cruft is the server side of PQfn.
63
63
64
64
#include "utils/palloc.h"
65
65
#include "fmgr.h"
66
- #include "utils/elog.h"
67
66
#include "utils/builtins.h" /* for oideq */
68
67
#include "tcop/fastpath.h"
69
68
#include "libpq/libpq.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.12 1996/10/31 10:20:56 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.13 1996/11/03 06:52:33 scrappy Exp $
11
11
*
12
12
* NOTES
13
13
* this is the "main" module of the postgres backend and
65
65
66
66
#include "storage/bufmgr.h"
67
67
#include "fmgr.h"
68
- #include "utils/elog.h"
69
68
#include "utils/palloc.h"
70
69
#include "utils/rel.h"
71
70
@@ -1265,7 +1264,7 @@ PostgresMain(int argc, char *argv[])
1265
1264
*/
1266
1265
if (IsUnderPostmaster == false) {
1267
1266
puts ("\nPOSTGRES backend interactive interface" );
1268
- puts ("$Revision: 1.12 $ $Date: 1996/10/31 10:20:56 $" );
1267
+ puts ("$Revision: 1.13 $ $Date: 1996/11/03 06:52:33 $" );
1269
1268
}
1270
1269
1271
1270
/* ----------------
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.2 1996/07/30 07:41:38 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.3 1996/11/03 06:52:35 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
#include "postgres.h"
15
15
16
16
#include "tcop/tcopdebug.h"
17
17
18
- #include "utils/elog.h"
19
18
#include "utils/palloc.h"
19
+ #include "nodes/nodes.h"
20
20
#include "utils/mcxt.h"
21
21
#include "miscadmin.h"
22
22
#include "utils/portal.h"
Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.4 1996/11/02 02:03:13 bryanh Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.5 1996/11/03 06:52:36 scrappy Exp $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
35
35
36
36
#include "nodes/parsenodes.h"
37
37
#include "parse.h"
38
- #include "utils/elog.h"
39
38
#include "utils/builtins.h"
40
39
#include "utils/acl.h"
41
40
#include "utils/palloc.h"
Original file line number Diff line number Diff line change 4
4
# Makefile for tioga
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/tioga/Attic/Makefile,v 1.1 1996/10/27 09:53:00 bryanh Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/tioga/Attic/Makefile,v 1.2 1996/11/03 06:52:43 scrappy Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
11
11
SRCDIR = ../..
12
12
include ../../Makefile.global
13
13
14
- INCLUDE_OPT = -I.. \
14
+ INCLUDE_OPT =
15
15
-I../port/$(PORTNAME) \
16
- -I../include \
17
16
-I../../include
18
17
19
18
CFLAGS+ =$(INCLUDE_OPT )
Original file line number Diff line number Diff line change 11
11
*
12
12
*
13
13
* IDENTIFICATION
14
- * $Header: /cvsroot/pgsql/src/backend/tioga/Attic/tgRecipe.c,v 1.1.1.1 1996/07/09 06:22:00 scrappy Exp $
14
+ * $Header: /cvsroot/pgsql/src/backend/tioga/Attic/tgRecipe.c,v 1.2 1996/11/03 06:52:45 scrappy Exp $
15
15
*
16
16
*-------------------------------------------------------------------------
17
17
*/
18
18
19
19
#include <stdlib.h>
20
+ #include "postgres.h"
20
21
#include "tioga/tgRecipe.h"
21
22
22
23
#include "catalog/catalog.h" /*for newoid() */
Original file line number Diff line number Diff line change 4
4
# Makefile for utils/adt
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.1 1996/10/27 09:53:15 bryanh Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.2 1996/11/03 06:52:59 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/utils/adt/acl.c,v 1.2 1996/08/27 07:32:25 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.3 1996/11/03 06:53:01 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
-
15
- #include "config.h"
16
-
17
14
#include <ctype.h>
18
15
#include <string.h>
19
16
#include "postgres.h"
20
- #include "c.h"
21
17
#include "utils/acl.h"
22
18
#include "access/htup.h"
23
19
#include "catalog/pg_user.h"
24
20
#include "utils/syscache.h"
25
- #include "utils/elog.h"
26
21
#include "utils/palloc.h"
22
+ #include "miscadmin.h"
27
23
28
24
static char * getid (char * s , char * n );
29
25
static int32 aclitemeq (AclItem * a1 , AclItem * a2 );
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/bool.c,v 1.1.1.1 1996/07/09 06:22 :03 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/bool.c,v 1.2 1996/11/03 06:53 :03 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
+
15
+ #include "postgres.h"
16
+
14
17
#include "utils/builtins.h" /* where the declarations go */
15
- #include "utils/elog.h"
16
18
#include "utils/palloc.h"
17
19
18
20
/*****************************************************************************
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.1.1.1 1996/07/09 06:22 :04 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.2 1996/11/03 06:53 :04 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
- #include "c .h"
14
+ #include "postgres .h"
15
15
#include "utils/palloc.h"
16
16
#include "utils/builtins.h" /* where function declarations go */
17
17
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/filename.c,v 1.2 1996/08/27 07:32:32 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/filename.c,v 1.3 1996/11/03 06:53:05 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
15
- #include "config.h"
16
-
17
15
#include <string.h>
18
16
#include <stdio.h>
19
17
#ifndef WIN32
20
18
#include <pwd.h>
21
19
#endif /* WIN32 */
22
20
23
21
#include <sys/param.h>
24
- #include "utils/elog.h"
22
+
23
+ #include "postgres.h"
25
24
#include "utils/palloc.h"
26
25
#include "utils/builtins.h" /* where function declarations go */
27
26
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/geo-ops.c,v 1.2 1996/07/22 21:56:01 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/geo-ops.c,v 1.3 1996/11/03 06:53:06 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
16
16
#include <stdio.h> /* for sprintf proto, etc. */
17
17
#include <string.h>
18
18
19
+ #include "postgres.h"
20
+
19
21
#include "utils/geo-decls.h"
20
- #include "utils/elog.h"
21
22
#include "utils/palloc.h"
22
23
23
24
#define LDELIM '('
Original file line number Diff line number Diff line change 12
12
*
13
13
*
14
14
* IDENTIFICATION
15
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.3 1996/08/26 06:32:06 scrappy Exp $
15
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.4 1996/11/03 06:53:08 scrappy Exp $
16
16
*
17
17
*-------------------------------------------------------------------------
18
18
*/
19
19
#include <stdio.h>
20
20
#include <string.h>
21
21
22
+ #include "postgres.h"
23
+
22
24
#include "access/heapam.h"
23
25
#include "utils/tqual.h" /* for NowTimeQual */
24
26
#include "fmgr.h"
25
27
#include "utils/builtins.h" /* for textout() prototype
26
28
and where the declarations go */
27
- #include "utils/elog.h"
28
29
#include "utils/palloc.h"
29
30
30
31
#include "catalog/catname.h"
Original file line number Diff line number Diff line change 4
4
# Makefile for utils/cache
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/utils/cache/Makefile,v 1.1 1996/10/27 09 :53:26 bryanh Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/utils/cache/Makefile,v 1.2 1996/11/03 06 :53:14 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 )
You can’t perform that action at this time.
0 commit comments