From 5f4320924d6eb7750cf9edecde4acbeb0206b4ec Mon Sep 17 00:00:00 2001 From: "Jerry.Kirk%Nexwarecorp.com" Date: Tue, 7 Dec 1999 12:57:31 +0000 Subject: [PATCH] Added $(TK_LIBS) to EXTRA_LIBS for Neutrino because Timers require the photon native library to be linked in to work properly. r=rhp --- mailnews/compose/tests/compose2/Makefile.in | 5 +++++ mailnews/compose/tests/sendlater/Makefile.in | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/mailnews/compose/tests/compose2/Makefile.in b/mailnews/compose/tests/compose2/Makefile.in index d548b4813b7..a682682653d 100644 --- a/mailnews/compose/tests/compose2/Makefile.in +++ b/mailnews/compose/tests/compose2/Makefile.in @@ -39,6 +39,11 @@ LIBS = \ -lmsgbaseutil \ $(NULL) +# The Timer libs for Photon/Neutrino require the Toolkit libs to also be linked +# in. +ifeq ($(TARGET_OS),nto) +EXTRA_LIBS += $(TK_LIBS) +endif include $(topsrcdir)/config/rules.mk diff --git a/mailnews/compose/tests/sendlater/Makefile.in b/mailnews/compose/tests/sendlater/Makefile.in index 4d43665f4ca..e815aec7f51 100644 --- a/mailnews/compose/tests/sendlater/Makefile.in +++ b/mailnews/compose/tests/sendlater/Makefile.in @@ -39,5 +39,11 @@ LIBS = \ $(NSPR_LIBS) \ $(NULL) +# The Timer libs for Photon/Neutrino require the Toolkit libs to also be linked +# in. +ifeq ($(TARGET_OS),nto) +EXTRA_LIBS += $(TK_LIBS) +endif + include $(topsrcdir)/config/rules.mk