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
a8428c9e
Commit
a8428c9e
authored
Oct 09, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More bsdi 4.0 cleanups for shared libraries.
parent
765dd1b3
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
9 deletions
+8
-9
src/interfaces/libpgtcl/Makefile.in
src/interfaces/libpgtcl/Makefile.in
+2
-2
src/interfaces/libpq/Makefile.in
src/interfaces/libpq/Makefile.in
+3
-3
src/makefiles/Makefile.bsdi
src/makefiles/Makefile.bsdi
+1
-2
src/pl/plpgsql/src/Makefile.in
src/pl/plpgsql/src/Makefile.in
+2
-2
No files found.
src/interfaces/libpgtcl/Makefile.in
View file @
a8428c9e
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.2
4 1998/10/09 04:22:4
6 momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.2
5 1998/10/09 04:50:0
6 momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -54,7 +54,7 @@ ifeq ($(PORTNAME), bsdi)
...
@@ -54,7 +54,7 @@ ifeq ($(PORTNAME), bsdi)
ifeq
($(DLSUFFIX), .so)
ifeq
($(DLSUFFIX), .so)
install-shlib-dep
:=
install-shlib
install-shlib-dep
:=
install-shlib
shlib
:=
libpgtcl.so
shlib
:=
libpgtcl.so
LDFLAGS_SL
+=
-
O
-
shared
LDFLAGS_SL
+=
-shared
CFLAGS
+=
$(CFLAGS_SL)
CFLAGS
+=
$(CFLAGS_SL)
endif
endif
ifeq
($(DLSUFFIX), .o)
ifeq
($(DLSUFFIX), .o)
...
...
src/interfaces/libpq/Makefile.in
View file @
a8428c9e
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.3
2 1998/10/09 04:22:4
8 momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.3
3 1998/10/09 04:50:0
8 momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -61,13 +61,13 @@ ifeq ($(PORTNAME), bsdi)
...
@@ -61,13 +61,13 @@ ifeq ($(PORTNAME), bsdi)
ifeq
($(DLSUFFIX), .so)
ifeq
($(DLSUFFIX), .so)
install-shlib-dep
:=
install-shlib
install-shlib-dep
:=
install-shlib
shlib
:=
libpq.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
shlib
:=
libpq.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
LDFLAGS_SL
+=
-
O
-
shared
LDFLAGS_SL
+=
-shared
CFLAGS
+=
$(CFLAGS_SL)
CFLAGS
+=
$(CFLAGS_SL)
endif
endif
ifeq
($(DLSUFFIX), .o)
ifeq
($(DLSUFFIX), .o)
install-shlib-dep
:=
install-shlib
install-shlib-dep
:=
install-shlib
shlib
:=
libpq.o.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
shlib
:=
libpq.o.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
LD
:=
shlicc
LD
:=
shlicc
LDFLAGS_SL
+=
-O
-r
LDFLAGS_SL
+=
-O
-r
CFLAGS
+=
$(CFLAGS_SL)
CFLAGS
+=
$(CFLAGS_SL)
endif
endif
...
...
src/makefiles/Makefile.bsdi
View file @
a8428c9e
# for bsdi 4.0 ELF
# for bsdi 4.0 ELF
# if we defined .so in template/bsdi_4.0
# if we defined .so in template/bsdi_4.0
%.so
:
%.o
%.so
:
%.o
$(CC)
-shared
-o
$@
$<
$(LD)
-shared
-o
$@
$<
src/pl/plpgsql/src/Makefile.in
View file @
a8428c9e
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for the plpgsql shared object
# Makefile for the plpgsql shared object
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.
3 1998/10/09 04:22:49
momjian Exp $
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.
4 1998/10/09 04:50:12
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -43,7 +43,7 @@ endif
...
@@ -43,7 +43,7 @@ endif
ifeq
($(PORTNAME), bsdi)
ifeq
($(PORTNAME), bsdi)
ifdef
BSD_SHLIB
ifdef
BSD_SHLIB
ifeq
($(DLSUFFIX), .so)
ifeq
($(DLSUFFIX), .so)
LDFLAGS_SL
+=
-
O
-
shared
LDFLAGS_SL
+=
-shared
CFLAGS
+=
$(CFLAGS_SL)
CFLAGS
+=
$(CFLAGS_SL)
endif
endif
ifeq
($(DLSUFFIX), .o)
ifeq
($(DLSUFFIX), .o)
...
...
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