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
e1663438
Commit
e1663438
authored
Oct 12, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add SVr4 shared libraries.
parent
66f893f3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
49 additions
and
4 deletions
+49
-4
src/interfaces/ecpg/lib/Makefile.in
src/interfaces/ecpg/lib/Makefile.in
+19
-0
src/interfaces/libpgtcl/Makefile.in
src/interfaces/libpgtcl/Makefile.in
+8
-1
src/interfaces/libpq++/Makefile.in
src/interfaces/libpq++/Makefile.in
+8
-1
src/interfaces/libpq/Makefile.in
src/interfaces/libpq/Makefile.in
+8
-1
src/pl/plpgsql/src/Makefile.in
src/pl/plpgsql/src/Makefile.in
+6
-1
No files found.
src/interfaces/ecpg/lib/Makefile.in
View file @
e1663438
...
...
@@ -16,6 +16,7 @@ endif
# Shared library stuff
shlib
:=
install-shlib-dep
:=
ifeq
($(PORTNAME), linux)
LINUX_ELF
=
@LINUX_ELF@
ifdef
LINUX_ELF
...
...
@@ -24,6 +25,7 @@ ifeq ($(PORTNAME), linux)
LDFLAGS_SL
=
-shared
-soname
libecpg.so.
$(SO_MAJOR_VERSION)
endif
endif
ifeq
($(PORTNAME), bsd)
ifdef
BSD_SHLIB
install-shlib-dep
:=
install-shlib
...
...
@@ -32,18 +34,28 @@ ifeq ($(PORTNAME), bsd)
CFLAGS
+=
$(CFLAGS_SL)
endif
endif
ifeq
($(PORTNAME), solaris_sparc)
install-shlib-dep
:=
install-shlib
shlib
:=
libecpg.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
.
$(SO_PATCHLEVEL)
LDFLAGS_SL
=
-G
-z
text
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), solaris_i386)
install-shlib-dep
:=
install-shlib
shlib
:=
libecpg.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
.
$(SO_PATCHLEVEL)
LDFLAGS_SL
=
-G
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), svr4)
install-shlib-dep
:=
install-shlib
shlib
:=
libecpg.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
.
$(SO_PATCHLEVEL)
LDFLAGS_SL
=
-G
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), univel)
install-shlib-dep
:=
install-shlib
shlib
:=
libecpg.so.1
...
...
@@ -51,6 +63,13 @@ ifeq ($(PORTNAME), univel)
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), unixware)
install-shlib-dep
:=
install-shlib
shlib
:=
libecpg.so.1
LDFLAGS_SL
=
-G
-z
text
CFLAGS
+=
$(CFLAGS_SL)
endif
all
:
libecpg.a $(shlib)
$(shlib)
:
ecpglib.sho typename.sho
...
...
src/interfaces/libpgtcl/Makefile.in
View file @
e1663438
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.2
7 1998/10/12 01:03:57
momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.2
8 1998/10/12 01:10:03
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -84,6 +84,13 @@ ifeq ($(PORTNAME), solaris_i386)
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), svr4)
install-shlib-dep
:=
install-shlib
shlib
:=
libpgtcl.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
LDFLAGS_SL
:=
-G
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), unixware)
install-shlib-dep
:=
install-shlib
shlib
:=
libpgtcl.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
...
...
src/interfaces/libpq++/Makefile.in
View file @
e1663438
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.
5 1998/10/12 01:04:00
momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.
6 1998/10/12 01:10:07
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -71,6 +71,13 @@ ifeq ($(PORTNAME), solaris_i386)
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), svr4)
INSTALL-SHLIB-DEP
:=
install-shlib
SHLIB
:=
libpq++.so.1
LDFLAGS_SL
=
-G
-shared
-soname
$(SHLIB)
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), unixware)
install-shlib-dep
:=
install-shlib
shlib
:=
libpq.so.1
...
...
src/interfaces/libpq/Makefile.in
View file @
e1663438
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.3
5 1998/10/12 01:03:58
momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.3
6 1998/10/12 01:10:05
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -88,6 +88,13 @@ ifeq ($(PORTNAME), solaris_i386)
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), svr4)
install-shlib-dep
:=
install-shlib
shlib
:=
libpq.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
LDFLAGS_SL
:=
-G
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), unixware)
install-shlib-dep
:=
install-shlib
shlib
:=
libpq.so.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
...
...
src/pl/plpgsql/src/Makefile.in
View file @
e1663438
...
...
@@ -4,7 +4,7 @@
# Makefile for the plpgsql shared object
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.
6 1998/10/12 01:04:02
momjian Exp $
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.
7 1998/10/12 01:10:09
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -64,6 +64,11 @@ ifeq ($(PORTNAME), solaris_i386)
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), svr4)
LDFLAGS_SL
:=
-G
CFLAGS
+=
$(CFLAGS_SL)
endif
ifeq
($(PORTNAME), unixware)
LDFLAGS_SL
:=
-G
-z
text
CFLAGS
+=
$(CFLAGS_SL)
...
...
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