diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-02-10 11:31:35 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-02-10 11:31:35 +0000 |
commit | 8814d1b2e7b80b5add948e31fb1b717ec1946471 (patch) | |
tree | 0bc84125db96845a8903b21c8ec75a8758efb926 /src | |
parent | 3f4d68cc7b7a4b4086758063a5317856453b3cbe (diff) | |
download | postgresql-8814d1b2e7b80b5add948e31fb1b717ec1946471.tar.gz postgresql-8814d1b2e7b80b5add948e31fb1b717ec1946471.zip |
Allow -Bsymbolic on BSDI for ODBC.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/odbc/GNUmakefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/odbc/GNUmakefile b/src/interfaces/odbc/GNUmakefile index 7265512a9f1..7da15dc666d 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.9 2001/02/10 05:50:27 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.10 2001/02/10 11:31:35 momjian Exp $ # #------------------------------------------------------------------------- @@ -36,8 +36,9 @@ include $(top_srcdir)/src/Makefile.shlib # BSD/OS fails with libc and crt1.o undefined symbols without this. # bjm 2001-02-09 # -ifneq ($(PORTNAME), bsdi) LINK.shared += $(shlib_symbolic) +ifeq ($(PORTNAME), bsdi) +SHLIB_LINK += -lc -R /usr/lib/crt1.o endif odbc_headers = isql.h isqlext.h iodbc.h |