Closed
Bug 62884
Opened 25 years ago
Closed 25 years ago
libimport.so had a unresolved dependency on nsUIntArray32
Categories
(SeaMonkey :: General, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: jdunn, Assigned: jdunn)
References
Details
nsImportMail.o has an unresolved symbol nsUIntArray32
libimport.so includes nsImportMail.o but does not link
against libmsgbaseutil.so.
i want to include -lmsgbaseutil in the linking.
(NOTE: I am also changing NSPR_LIBS + XPCOM_LIBS to just MOZ_COMPONENT_LIBS)
Index: Makefile.in
===================================================================
RCS file: /cvsroot/mozilla/mailnews/import/src/Makefile.in,v
retrieving revision 1.5
diff -c -r1.5 Makefile.in
*** Makefile.in 2000/11/20 07:13:44 1.5
--- Makefile.in 2000/12/15 00:25:06
***************
*** 31,36 ****
--- 31,42 ----
IS_COMPONENT = 1
REQUIRES = xpcom mailnews addrbook uconv mork msgbase msgbaseutil profile
intl locale necko rdf msgdb rdfutil
+ ifeq ($(USE_SHORT_LIBNAME),1)
+ EXTRA_DSO_LIBS = msgbutil
+ else
+ EXTRA_DSO_LIBS = msgbaseutil
+ endif
+
CPPSRCS = \
nsImportFactory.cpp \
nsImportService.cpp \
***************
*** 54,61 ****
EXTRA_DSO_LDOPTS += \
-L$(DIST)/bin \
! $(NSPR_LIBS) \
! $(XPCOM_LIBS) \
$(NULL)
--- 60,67 ----
EXTRA_DSO_LDOPTS += \
-L$(DIST)/bin \
! $(MOZ_COMPONENT_LIBS) \
! $(EXTRA_DSO_LIBS) \
$(NULL)
cls, looking for a r=
fix checked in.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•