first bits of new spidermonkey/nspr build for windows.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3724 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2006-12-19 18:28:24 +00:00
parent 87bbe09645
commit 738c2464d3
3 changed files with 167 additions and 1 deletions

View File

@@ -101,7 +101,7 @@ PRMJ_LocalGMTDifference()
ltime.tm_gmtoff = 0;
return timelocal(&ltime) - (24 * 3600);
#else
return mktime(&ltime) - (24L * 3600L);
return (JSInt32)(mktime(&ltime) - (24L * 3600L));
#endif
#endif
}