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
26d008c6
Commit
26d008c6
authored
Oct 27, 2000
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use compiler driver, not linker, to link shared libraries on Unixware.
parent
7e77668e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
src/Makefile.shlib
src/Makefile.shlib
+14
-2
No files found.
src/Makefile.shlib
View file @
26d008c6
...
...
@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.2
8 2000/10/25 16:13:52
petere Exp $
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.2
9 2000/10/27 20:09:48
petere Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -184,7 +184,19 @@ endif
ifeq
($(PORTNAME), unixware)
shlib
:=
lib
$(NAME)$(DLSUFFIX)
.
$(SO_MAJOR_VERSION)
.
$(SO_MINOR_VERSION)
LINK.shared
=
$(LD)
-G
-z
text
ifndef
cplusplus
ifeq
($(GCC), yes)
LINK.shared
=
$(CC)
-shared
else
LINK.shared
=
$(CC)
-G
endif
else
ifeq
($(GXX), yes)
LINK.shared
=
$(CXX)
-shared
else
LINK.shared
=
$(CXX)
-G
endif
endif
endif
ifeq
($(PORTNAME), win)
...
...
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