Not part of build

fixed lib deps.
change repeating precise timers to repeating slack for debug builds - make debuging easier


git-svn-id: svn://10.0.0.236/trunk@107114 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dinglis%qnx.com
2001-11-02 19:12:36 +00:00
parent 23fff4e9fa
commit eb6d97c8d6
2 changed files with 5 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ IS_COMPONENT = 1
EXPORT_LIBRARY = 1
MODULE_NAME = nsPhTimerModule
CPPSRCS += nsTimerPhFactory.cpp
EXTRA_DSO_LDOPTS = $(MOZ_COMPONENT_LIBS)
EXTRA_DSO_LDOPTS = $(MOZ_COMPONENT_LIBS) $(TOOLKIT_DSO_LDOPTS) $(TK_LIBS) $(NULL)
include $(topsrcdir)/config/rules.mk

View File

@@ -306,6 +306,10 @@ NS_METHOD nsTimerPh::SetupTimer()
return NS_ERROR_FAILURE;
}
}
#ifdef DEBUG
if (mType == NS_TYPE_REPEATING_PRECISE)
mType = NS_TYPE_REPEATING_SLACK;
#endif
switch(mType)
{