|
2 | 2 | #
|
3 | 3 | # GNUMakefile for psqlodbc (Postgres ODBC driver)
|
4 | 4 | #
|
5 |
| -# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.7 2000/10/28 15:10:36 petere Exp $ |
| 5 | +# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.8 2000/12/16 18:14:25 petere Exp $ |
6 | 6 | #
|
7 | 7 | #-------------------------------------------------------------------------
|
8 | 8 |
|
@@ -30,6 +30,11 @@ all: all-lib
|
30 | 30 | # Shared library stuff
|
31 | 31 | include$(top_srcdir)/src/Makefile.shlib
|
32 | 32 |
|
| 33 | +# Symbols must be resolved to the version in the shared library because |
| 34 | +# the driver manager (e.g., iodbc) provides some symbols with the same |
| 35 | +# names and we don't want those. (This issue is probably ELF specific.) |
| 36 | +LINK.shared +=$(shlib_symbolic) |
| 37 | + |
33 | 38 | odbc_headers = isql.h isqlext.h iodbc.h
|
34 | 39 | odbc_includedir =$(includedir)/iodbc
|
35 | 40 |
|
|