1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Move -Bsymbolic for HPUX to Makefile.hpux, per Peter E's recommendation.

This commit is contained in:
Tom Lane 2001-03-14 19:35:12 +00:00
parent 3534e3b68f
commit c6c1fea06d
2 changed files with 4 additions and 2 deletions

View File

@ -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.47 2001/03/10 23:15:20 tgl Exp $ # $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.48 2001/03/14 19:35:11 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) -Bsymbolic LINK.shared = $(LD) -b +b $(libdir)
endif endif
ifeq ($(PORTNAME), irix5) ifeq ($(PORTNAME), irix5)

View File

@ -28,7 +28,9 @@ LDFLAGS += -Wl,+b -Wl,$(libdir)
# catch null pointer dereferences # catch null pointer dereferences
LDFLAGS += -Wl,-z LDFLAGS += -Wl,-z
# set up appropriate options for shared library builds
export_dynamic = -Wl,-E export_dynamic = -Wl,-E
shlib_symbolic = -Bsymbolic
INSTALL_SHLIB_OPTS = -m 555 INSTALL_SHLIB_OPTS = -m 555