Bugzilla bug 112198: On Darwin we must link libnssckbi.dylib with -bundle

so that we can load it correctly.  Thanks to Brian Ryner for the patch.
This commit is contained in:
wtc%netscape.com 2002-02-10 06:18:17 +00:00
Родитель da15146da7
Коммит 2cb1de5abe
1 изменённых файлов: 8 добавлений и 1 удалений

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

@ -30,7 +30,7 @@
# may use your version of this file under either the MPL or the
# GPL.
#
CONFIG_CVS_ID = "@(#) $RCSfile: config.mk,v $ $Revision: 1.3 $ $Date: 2001/01/31 21:29:31 $ $Name: $"
CONFIG_CVS_ID = "@(#) $RCSfile: config.mk,v $ $Revision: 1.4 $ $Date: 2002/02/10 06:18:17 $ $Name: $"
#
# Override TARGETS variable so that only shared libraries
@ -49,3 +49,10 @@ endif
ifdef BUILD_IDG
DEFINES += -DNSSDEBUG
endif
#
# To create a loadable module on Darwin, we must use -bundle.
#
ifeq ($(OS_ARCH),Darwin)
DSO_LDOPTS := $(subst -dynamiclib,-bundle,$(DSO_LDOPTS))
endif