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
c7d9aca1
Commit
c7d9aca1
authored
Nov 12, 1998
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix at least a few shared-library problems on Linux.
We have not seen the end of this issue :-(.
parent
87225ca3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
src/Makefile.shlib
src/Makefile.shlib
+3
-2
src/interfaces/libpq/Makefile.in
src/interfaces/libpq/Makefile.in
+5
-1
No files found.
src/Makefile.shlib
View file @
c7d9aca1
...
...
@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.
3 1998/10/31 03:58:51 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.
4 1998/11/12 05:27:00 tgl
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -107,8 +107,9 @@ endif
ifeq
($(PORTNAME), linux)
install-shlib-dep
:=
install-shlib
shlib
:=
lib
$(NAME)$(DLSUFFIX)
.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
LDFLAGS_SL
:=
-shared
-soname
$(shlib)
LDFLAGS_SL
:=
-
Bdynamic
-
shared
-soname
$(shlib)
LDFLAGS_ODBC
:=
-Bsymbolic
-lc
-lm
SHLIB_LINK
+=
-lc
CFLAGS
+=
$(CFLAGS_SL)
endif
...
...
src/interfaces/libpq/Makefile.in
View file @
c7d9aca1
...
...
@@ -6,7 +6,7 @@
# Copyright (c) 1994, Regents of the University of California
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.4
0 1998/10/19 00:00:43
tgl Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.4
1 1998/11/12 05:27:01
tgl Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -34,6 +34,10 @@ ifdef MULTIBYTE
OBJS
+=
common.o wchar.o conv.o
endif
# If crypt is a separate library, rather than part of libc,
# make sure it gets included in shared libpq.
SHLIB_LINK
=
$(
findstring
-lcrypt
,
$(LIBS)
)
# Shared library stuff, also default 'all' target
include
$(SRCDIR)/Makefile.shlib
...
...
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