only export __shlInit for HP if we aren't on ia64 (which doesn't have the symbol)

r=cls@seawood.org
# 171952
This commit is contained in:
jdunn%netscape.com 2002-10-02 10:10:06 +00:00
Родитель fb741a31ab
Коммит d8ec69fd5b
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -492,8 +492,12 @@ ifdef IS_COMPONENT
ifeq ($(GNU_CC)$(GNU_CXX),)
EXTRA_DSO_LDOPTS += -Wl,-Bsymbolic
ifneq ($(HAS_EXTRAEXPORTS),1)
MKSHLIB += -Wl,+eNSGetModule -Wl,+eerrno -Wl,+e_shlInit
MKCSHLIB += -Wl,+eNSGetModule -Wl,+eerrno -Wl,+e_shlInit
MKSHLIB += -Wl,+eNSGetModule -Wl,+eerrno
MKCSHLIB += -Wl,+eNSGetModule -Wl,+eerrno
ifneq ($(OS_TEST),ia64)
MKSHLIB += -Wl,+e_shlInit
MKCSHLIB += -Wl,+e_shlInit
endif # !ia64
endif # !HAS_EXTRAEXPORTS
endif # non-gnu compilers
endif # IS_COMPONENT