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
0bdc18d5
Commit
0bdc18d5
authored
Sep 11, 2006
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add LDAP_LIBS_FE to $(libpq) for static or AIX linking, per Albe Laurenz.
parent
bb87c7b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
src/Makefile.global.in
src/Makefile.global.in
+5
-3
No files found.
src/Makefile.global.in
View file @
0bdc18d5
# -*-makefile-*-
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.22
8 2006/09/10 22:07:02
tgl Exp $
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.22
9 2006/09/11 13:35:08
tgl Exp $
#------------------------------------------------------------------------------
# All PostgreSQL makefiles include this file and use the variables it sets,
...
...
@@ -343,12 +343,14 @@ libpq := -L$(libpq_builddir) -lpq
# If doing static linking, shared library dependency info isn't available,
# so add in the libraries that libpq depends on.
ifeq
($(enable_shared), no)
libpq
+=
$(
filter
-lintl
-lssl
-lcrypto
-lkrb5
-lcrypt
,
$(LIBS)
)
$(PTHREAD_LIBS)
libpq
+=
$(
filter
-lintl
-lssl
-lcrypto
-lkrb5
-lcrypt
,
$(LIBS)
)
\
$(LDAP_LIBS_FE)
$(PTHREAD_LIBS)
else
# On AIX even shared libraries do not remember their required libs,
# so again add in what libpq depends on.
ifeq
($(PORTNAME), aix)
libpq
+=
$(
filter
-lintl
-lssl
-lcrypto
-lkrb5
-lcrypt
,
$(LIBS)
)
$(PTHREAD_LIBS)
libpq
+=
$(
filter
-lintl
-lssl
-lcrypto
-lkrb5
-lcrypt
,
$(LIBS)
)
\
$(LDAP_LIBS_FE)
$(PTHREAD_LIBS)
endif
endif
...
...
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