From 3c91facea0bb93aeb781b5af2fcb7edaaa6cbcea Mon Sep 17 00:00:00 2001 From: "briano%netscape.com" Date: Wed, 29 Sep 1999 01:09:41 +0000 Subject: [PATCH] Fix for BSDI 3.0, specifically, but should help other platforms with shared library difficulties. git-svn-id: svn://10.0.0.236/trunk@49267 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/tools/registry/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mozilla/xpcom/tools/registry/Makefile.in b/mozilla/xpcom/tools/registry/Makefile.in index 5386ee7ceb4..f21fe579a05 100644 --- a/mozilla/xpcom/tools/registry/Makefile.in +++ b/mozilla/xpcom/tools/registry/Makefile.in @@ -26,10 +26,15 @@ CPPSRCS = regExport.cpp regxpcom.cpp SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=) -LIBS += \ +ifdef NO_LD_ARCHIVE_FLAGS +LOST_SYM_LIBS = -lxpcomds_s -lxptinfo -lmozreg_s +endif + +LIBS = \ -lxpcom \ -lmozjs \ $(TK_LIBS) \ + $(LOST_SYM_LIBS) \ $(NSPR_LIBS) \ $(NULL)