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
9cf0a82f
Commit
9cf0a82f
authored
Dec 16, 2000
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix linker options for ODBC driver. See comment in
src/interfaces/odbc/GNUmakefile.
parent
2a81896a
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
3 deletions
+16
-3
src/interfaces/odbc/GNUmakefile
src/interfaces/odbc/GNUmakefile
+6
-1
src/makefiles/Makefile.bsdi
src/makefiles/Makefile.bsdi
+1
-0
src/makefiles/Makefile.freebsd
src/makefiles/Makefile.freebsd
+1
-0
src/makefiles/Makefile.irix5
src/makefiles/Makefile.irix5
+1
-0
src/makefiles/Makefile.linux
src/makefiles/Makefile.linux
+1
-0
src/makefiles/Makefile.netbsd
src/makefiles/Makefile.netbsd
+1
-0
src/makefiles/Makefile.openbsd
src/makefiles/Makefile.openbsd
+1
-0
src/makefiles/Makefile.solaris
src/makefiles/Makefile.solaris
+2
-2
src/makefiles/Makefile.unixware
src/makefiles/Makefile.unixware
+2
-0
No files found.
src/interfaces/odbc/GNUmakefile
View file @
9cf0a82f
...
...
@@ -2,7 +2,7 @@
#
# GNUMakefile for psqlodbc (Postgres ODBC driver)
#
# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.
7 2000/10/28 15:10:36
petere Exp $
# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.
8 2000/12/16 18:14:25
petere Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -30,6 +30,11 @@ all: all-lib
# Shared library stuff
include
$(top_srcdir)/src/Makefile.shlib
# Symbols must be resolved to the version in the shared library because
# the driver manager (e.g., iodbc) provides some symbols with the same
# names and we don't want those. (This issue is probably ELF specific.)
LINK.shared
+=
$(shlib_symbolic)
odbc_headers
=
isql.h isqlext.h iodbc.h
odbc_includedir
=
$(includedir)
/iodbc
...
...
src/makefiles/Makefile.bsdi
View file @
9cf0a82f
...
...
@@ -15,6 +15,7 @@ endif
ifeq
($(DLSUFFIX), .so)
CFLAGS_SL
=
-fpic
export_dynamic
=
-export-dynamic
shlib_symbolic
=
-Bsymbolic
else
CFLAGS_SL
=
endif
...
...
src/makefiles/Makefile.freebsd
View file @
9cf0a82f
...
...
@@ -3,6 +3,7 @@ AROPT = cr
ifdef
ELF_SYSTEM
export_dynamic
=
-export-dynamic
rpath
=
-R
$(libdir)
shlib_symbolic
=
-Bsymbolic
endif
DLSUFFIX
=
.so
...
...
src/makefiles/Makefile.irix5
View file @
9cf0a82f
MK_NO_LORDER
=
true
AROPT
=
crs
rpath
=
-Wl
,-rpath,
$(libdir)
shlib_symbolic
=
-Wl
,-B,symbolic
DLSUFFIX
=
.so
# PIC is default
...
...
src/makefiles/Makefile.linux
View file @
9cf0a82f
AROPT
=
crs
export_dynamic
=
-export-dynamic
rpath
=
-Wl
,-rpath,
$(libdir)
shlib_symbolic
=
-Wl
,-Bsymbolic
DLSUFFIX
=
.so
CFLAGS_SL
=
-fpic
...
...
src/makefiles/Makefile.netbsd
View file @
9cf0a82f
...
...
@@ -3,6 +3,7 @@ AROPT = cr
ifdef
ELF_SYSTEM
export_dynamic
=
-Wl
,-E
rpath
=
-Wl
,-R
$(libdir)
shlib_symbolic
=
-Wl
,-Bsymbolic
endif
DLSUFFIX
=
.so
...
...
src/makefiles/Makefile.openbsd
View file @
9cf0a82f
...
...
@@ -3,6 +3,7 @@ AROPT = cr
ifdef
ELF_SYSTEM
export_dynamic
=
-Wl
,-E
rpath
=
-R
$(libdir)
shlib_symbolic
=
-Bsymbolic
endif
DLSUFFIX
=
.so
...
...
src/makefiles/Makefile.solaris
View file @
9cf0a82f
# $Header: /cvsroot/pgsql/src/makefiles/Makefile.solaris,v 1.
5 2000/11/04 16:35:5
5 petere Exp $
# $Header: /cvsroot/pgsql/src/makefiles/Makefile.solaris,v 1.
6 2000/12/16 18:14:2
5 petere Exp $
AROPT
=
crs
...
...
@@ -8,7 +8,7 @@ rpath = -Wl,-rpath,$(libdir)
else
rpath
=
-Wl
,-R
$(libdir)
endif
shlib_symbolic
=
-Wl
,-Bsymbolic
DLSUFFIX
=
.so
ifeq
($(GCC), yes)
...
...
src/makefiles/Makefile.unixware
View file @
9cf0a82f
...
...
@@ -3,6 +3,8 @@ export_dynamic = -Wl,-Bexport
ifeq
($(ld_R_works), yes)
rpath
=
-Wl
,-R
$(libdir)
endif
shlib_symbolic
=
-Wl
,-Bsymbolic
DLSUFFIX
=
.so
ifeq
($(GCC), yes)
CFLAGS_SL
=
-fpic
...
...
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