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
e2a8163c
Commit
e2a8163c
authored
Nov 18, 1996
by
Bryan Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove linux define of __USE_POSIX, which doesn't appear to do anything.
parent
b55d49f5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
11 deletions
+16
-11
src/backend/tcop/Makefile
src/backend/tcop/Makefile
+14
-3
src/backend/tcop/postgres.c
src/backend/tcop/postgres.c
+2
-8
No files found.
src/backend/tcop/Makefile
View file @
e2a8163c
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for tcop
# Makefile for tcop
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.
7 1996/11/14 07:33:34
bryanh Exp $
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.
8 1996/11/18 02:26:55
bryanh Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -31,12 +31,23 @@ all: SUBSYS.o
...
@@ -31,12 +31,23 @@ all: SUBSYS.o
SUBSYS.o
:
$(OBJS)
SUBSYS.o
:
$(OBJS)
$(LD)
-r
-o
SUBSYS.o
$(OBJS)
$(LD)
-r
-o
SUBSYS.o
$(OBJS)
utility.o
:
../parse.h
# The following dependencies are picked up by the make dep, but since
# not everyone can do make dep, and these are particularly important
# dependencies (because they don't even exist until you make them),
# they are hardcoded here.
utility.o
:
../parse.h ../fmgr.h
aclchk.o
:
../fmgr.h
fastpath.o
:
../fmgr.h
postgres.o
:
../fmgr.h
../parse.h
:
../parse.h
:
$(MAKE)
-C
.. parse.h
$(MAKE)
-C
.. parse.h
dep
:
../parse.h
../fmgr.h
:
$(MAKE)
-C
.. fmgr.h
dep
:
../parse.h ../fmgr.h
$(CC)
-MM
$(INCLUDE_OPT)
*
.c
>
depend
$(CC)
-MM
$(INCLUDE_OPT)
*
.c
>
depend
clean
:
clean
:
...
...
src/backend/tcop/postgres.c
View file @
e2a8163c
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.2
0 1996/11/16 09:03:44
bryanh Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.2
1 1996/11/18 02:26:57
bryanh Exp $
*
*
* NOTES
* NOTES
* this is the "main" module of the postgres backend and
* this is the "main" module of the postgres backend and
...
@@ -17,12 +17,6 @@
...
@@ -17,12 +17,6 @@
*/
*/
#include "libpq/pqsignal.h"
/* substitute for <signal.h> */
#include "libpq/pqsignal.h"
/* substitute for <signal.h> */
#if defined(linux)
#ifndef __USE_POSIX
#define __USE_POSIX
#endif
#endif
/* defined(linux) */
#include <unistd.h>
#include <unistd.h>
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
...
@@ -1268,7 +1262,7 @@ PostgresMain(int argc, char *argv[])
...
@@ -1268,7 +1262,7 @@ PostgresMain(int argc, char *argv[])
*/
*/
if
(
IsUnderPostmaster
==
false
)
{
if
(
IsUnderPostmaster
==
false
)
{
puts
(
"
\n
POSTGRES backend interactive interface"
);
puts
(
"
\n
POSTGRES backend interactive interface"
);
puts
(
"$Revision: 1.2
0 $ $Date: 1996/11/16 09:03:44
$"
);
puts
(
"$Revision: 1.2
1 $ $Date: 1996/11/18 02:26:57
$"
);
}
}
/* ----------------
/* ----------------
...
...
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