diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-02-10 16:51:40 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-02-10 16:51:40 +0000 |
commit | 8213e63d8cd9acbbfa8a13adeb1a88c4738c2b75 (patch) | |
tree | 0902b023ecaff5ecc2d38a4860b3653d2fdb11f4 /src/interfaces | |
parent | d3fb67db260fd1c51b83516e2c4ab73ca4dfd26f (diff) |
Repair BSD/OS shared library fixes.
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/odbc/GNUmakefile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/interfaces/odbc/GNUmakefile b/src/interfaces/odbc/GNUmakefile index 4f2b8fc8d7c..488fad6c3b5 100644 --- a/src/interfaces/odbc/GNUmakefile +++ b/src/interfaces/odbc/GNUmakefile @@ -2,7 +2,7 @@ # # GNUMakefile for psqlodbc (Postgres ODBC driver) # -# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.11 2001/02/10 15:59:16 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.12 2001/02/10 16:51:40 petere Exp $ # #------------------------------------------------------------------------- @@ -32,16 +32,8 @@ 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.) -# -# BSD/OS fails with libc and crt1.o undefined symbols without this. -# bjm 2001-02-09 -# -ifneq ($(PORTNAME), bsdi) + LINK.shared += $(shlib_symbolic) -else -LINK.shared = gcc -shared -Wl,-Bsymbolic,-soname,$(soname) -SHLIB_LINK += -lc -endif odbc_headers = isql.h isqlext.h iodbc.h odbc_includedir = $(includedir)/iodbc |