mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Turns out the HPUX linker likes -Bsymbolic too. Without this, ODBC
driver does not work because its internal cross-references get bound to similarly named functions in unixODBC shared library.
This commit is contained in:
@ -6,7 +6,7 @@
|
|||||||
# Copyright (c) 1998, Regents of the University of California
|
# Copyright (c) 1998, Regents of the University of California
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.46 2001/02/27 08:13:29 ishii Exp $
|
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.47 2001/03/10 23:15:20 tgl Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -160,7 +160,7 @@ endif
|
|||||||
ifeq ($(PORTNAME), hpux)
|
ifeq ($(PORTNAME), hpux)
|
||||||
# HPUX doesn't believe in version numbers for shlibs
|
# HPUX doesn't believe in version numbers for shlibs
|
||||||
shlib := lib$(NAME)$(DLSUFFIX)
|
shlib := lib$(NAME)$(DLSUFFIX)
|
||||||
LINK.shared = $(LD) -b +b $(libdir)
|
LINK.shared = $(LD) -b +b $(libdir) -Bsymbolic
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(PORTNAME), irix5)
|
ifeq ($(PORTNAME), irix5)
|
||||||
|
Reference in New Issue
Block a user