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
b1f528f8
Commit
b1f528f8
authored
Feb 04, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check for -lresolv.
parent
8791d12d
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
285 additions
and
241 deletions
+285
-241
configure
configure
+280
-237
configure.in
configure.in
+1
-0
src/Makefile.shlib
src/Makefile.shlib
+2
-2
src/interfaces/libpq/Makefile
src/interfaces/libpq/Makefile
+2
-2
No files found.
configure
View file @
b1f528f8
This diff is collapsed.
Click to expand it.
configure.in
View file @
b1f528f8
...
@@ -677,6 +677,7 @@ AC_CHECK_LIB(compat, main)
...
@@ -677,6 +677,7 @@ AC_CHECK_LIB(compat, main)
AC_CHECK_LIB(BSD, main)
AC_CHECK_LIB(BSD, main)
AC_CHECK_LIB(gen, main)
AC_CHECK_LIB(gen, main)
AC_CHECK_LIB(PW, main)
AC_CHECK_LIB(PW, main)
AC_CHECK_LIB(resolv, main)
AC_SEARCH_LIBS(crypt, crypt)
AC_SEARCH_LIBS(crypt, crypt)
AC_CHECK_LIB(bind, __inet_ntoa)
AC_CHECK_LIB(bind, __inet_ntoa)
dnl only consider libz to be present if we find <zlib.h> as well
dnl only consider libz to be present if we find <zlib.h> as well
...
...
src/Makefile.shlib
View file @
b1f528f8
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California
# Copyright (c) 1998, Regents of the University of California
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.3
7 2000/12/06 19:37:08
petere Exp $
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.3
8 2001/02/04 14:09:33
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -171,7 +171,7 @@ ifeq ($(PORTNAME), solaris)
...
@@ -171,7 +171,7 @@ ifeq ($(PORTNAME), solaris)
else
else
LINK.shared
+=
-Wl
,-h,
$(soname)
LINK.shared
+=
-Wl
,-h,
$(soname)
endif
endif
SHLIB_LINK
+=
-l
dl
-lsocket
-lresolv
-lnsl
-l
m
-lc
SHLIB_LINK
+=
-lm
-lc
endif
endif
ifeq
($(PORTNAME), osf)
ifeq
($(PORTNAME), osf)
...
...
src/interfaces/libpq/Makefile
View file @
b1f528f8
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
#
#
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.4
8 2001/01/20 23:07:27 tgl
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.4
9 2001/02/04 14:09:33 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -30,7 +30,7 @@ endif
...
@@ -30,7 +30,7 @@ endif
# Add libraries that libpq depends (or might depend) on into the
# Add libraries that libpq depends (or might depend) on into the
# shared library link. (The order in which you list them here doesn't
# shared library link. (The order in which you list them here doesn't
# matter.)
# matter.)
SHLIB_LINK
+=
$(
filter
-lcrypt
-ldes
-lkrb
-lcom_err
-lcrypto
-lk5crypto
-lkrb5
-lssl
-lsocket
-lnsl
,
$(LIBS)
)
SHLIB_LINK
+=
$(
filter
-lcrypt
-ldes
-lkrb
-lcom_err
-lcrypto
-lk5crypto
-lkrb5
-lssl
-lsocket
-lnsl
-lresolv
,
$(LIBS)
)
all
:
all-lib
all
:
all-lib
...
...
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