This commit is contained in:
wtc%netscape.com 2001-05-12 01:29:55 +00:00
Родитель 7499a349b3
Коммит 6a22bef151
1 изменённых файлов: 11 добавлений и 0 удалений

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

@ -67,6 +67,17 @@ endif # WINNT
EXTRA_LIBS = $(LIBNSPR)
# On NCR and SCOOS, we can't link with extra libraries when
# we build a shared library. If we do so, the linker doesn't
# complain, but we would run into weird problems at run-time.
# Therefore on these platforms, we link just the .o files.
ifeq ($(OS_ARCH),NCR)
EXTRA_LIBS =
endif
ifeq ($(OS_ARCH),SCOOS)
EXTRA_LIBS =
endif
ifdef RESOLVE_LINK_SYMBOLS
EXTRA_LIBS += $(OS_LIBS)
endif