1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-21 00:42:43 +03:00

Fix linker options for ODBC driver. See comment in

src/interfaces/odbc/GNUmakefile.
This commit is contained in:
Peter Eisentraut
2000-12-16 18:14:25 +00:00
parent 2a81896a2a
commit 9cf0a82fc3
9 changed files with 16 additions and 3 deletions

View File

@@ -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