From 7c9cec219bf36efd3f68bc65044fcca88887f6bc Mon Sep 17 00:00:00 2001 From: "dougt%meer.net" Date: Sat, 23 Jul 2005 04:38:02 +0000 Subject: [PATCH] Shunt timeline getenv support. npodb --- build/wince/shunt/process.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build/wince/shunt/process.cpp b/build/wince/shunt/process.cpp index 366df4cb102..883dc596f5e 100755 --- a/build/wince/shunt/process.cpp +++ b/build/wince/shunt/process.cpp @@ -81,7 +81,13 @@ MOZCE_SHUNT_API char* mozce_getenv(const char* inName) return "nspr.log"; #endif - +#ifdef TIMELINE + if (!strcmp(inName, "NS_TIMELINE_LOG_FILE")) + return "\\bin\\timeline.log"; + + if (!strcmp(inName, "NS_TIMELINE_ENABLE")) + return "1"; +#endif return retval; }