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
dd10d0de
Commit
dd10d0de
authored
Nov 01, 1996
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More chanes for bsdi_2_1 removal
parent
fba75d0f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
12 deletions
+14
-12
src/Makefile.global
src/Makefile.global
+5
-5
src/backend/Makefile
src/backend/Makefile
+2
-2
src/backend/port/bsdi/Makefile
src/backend/port/bsdi/Makefile
+5
-1
src/include/storage/buf_internals.h
src/include/storage/buf_internals.h
+1
-2
src/include/storage/ipc.h
src/include/storage/ipc.h
+1
-2
No files found.
src/Makefile.global
View file @
dd10d0de
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.4
7 1996/11/01 02:32:16
momjian Exp $
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.4
8 1996/11/01 03:32:57
momjian Exp $
#
# NOTES
# This is seen by any Makefiles that include mk/postgres.mk. To
...
...
@@ -425,15 +425,15 @@ MK_PORT= bsdi
CC
=
gcc
PRE_BSDI_2_1
=
N
PRE_BSDI_2_1
=
false
ifeq
($(shell uname -r), 2.0)
PRE_BSDI_2_1
=
Y
PRE_BSDI_2_1
=
true
endif
ifeq
($(shell uname -r), 2.01)
PRE_BSDI_2_1
=
Y
PRE_BSDI_2_1
=
true
endif
ifeq
($(PRE_BSDI_2_1),
N
)
ifeq
($(PRE_BSDI_2_1),
false
)
# cc is gcc v1.42
# gcc is gcc v2.7.2
LEX
=
lex
...
...
src/backend/Makefile
View file @
dd10d0de
...
...
@@ -34,7 +34,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.1
2 1996/11/01 01:46:00
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.1
3 1996/11/01 03:35:43
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -64,7 +64,7 @@ LDADD+= -lln
endif
ifeq
($(PORTNAME), bsdi)
ifeq
($(PRE_BSDI_2_1),
N
)
ifeq
($(PRE_BSDI_2_1),
false
)
LDADD
+=
-ldl
-lipc
else
LDADD
+=
-ldld
-lipc
...
...
src/backend/port/bsdi/Makefile
View file @
dd10d0de
...
...
@@ -4,7 +4,7 @@
# Makefile for port/bsdi
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/bsdi/Attic/Makefile,v 1.
2 1996/11/01 01:46:21
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/port/bsdi/Attic/Makefile,v 1.
3 1996/11/01 03:35:54
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -17,7 +17,11 @@ INCLUDE_OPT = -I../.. \
CFLAGS
+=
$(INCLUDE_OPT)
ifeq
($(PRE_BSDI_2_1), false)
OBJS
=
port.o
else
OBJS
=
dynloader.o port.o
endif
all
:
SUBSYS.o
...
...
src/include/storage/buf_internals.h
View file @
dd10d0de
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: buf_internals.h,v 1.
2 1996/10/31 09:49:42 scrappy
Exp $
* $Id: buf_internals.h,v 1.
3 1996/11/01 03:36:13 momjian
Exp $
*
* NOTE
* If BUFFERPAGE0 is defined, then 0 will be used as a
...
...
@@ -163,7 +163,6 @@ struct sbufdesc {
#if defined(PORTNAME_BSD44_derived) || \
defined(PORTNAME_bsdi) || \
defined(PORTNAME_bsdi_2_1) || \
defined(PORTNAME_i386_solaris) || \
defined(PORTNAME_linux) || \
defined(PORTNAME_sparc) || \
...
...
src/include/storage/ipc.h
View file @
dd10d0de
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: ipc.h,v 1.
6 1996/10/31 09:49:48 scrappy
Exp $
* $Id: ipc.h,v 1.
7 1996/11/01 03:36:16 momjian
Exp $
*
* NOTES
* This file is very architecture-specific. This stuff should actually
...
...
@@ -33,7 +33,6 @@
defined(PORTNAME_alpha) || \
defined(PORTNAME_BSD44_derived) || \
defined(PORTNAME_bsdi) || \
defined(PORTNAME_bsdi_2_1) || \
defined(PORTNAME_hpux) || \
defined(PORTNAME_i386_solaris) || \
defined(PORTNAME_irix5) || \
...
...
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