зеркало из https://github.com/mozilla/pjs.git
WinCE only.
Defines off_t. Also adding env var for TMP directory.
This commit is contained in:
Родитель
0be172785b
Коммит
f156b97e2d
|
@ -135,7 +135,7 @@ typedef void (*_sigsig)(int inSignal);
|
|||
// From sys/types.h
|
||||
typedef int ptrdiff_t;
|
||||
typedef long _off_t;
|
||||
|
||||
typedef long off_t;
|
||||
|
||||
// From sys/stat.h
|
||||
#if !defined(_STAT_DEFINED)
|
||||
|
|
|
@ -73,7 +73,6 @@ MOZCE_SHUNT_API char* mozce_getenv(const char* inName)
|
|||
char* retval = NULL;
|
||||
|
||||
#ifdef DEBUG_NSPR_ALL
|
||||
|
||||
if (!strcmp(inName, "NSPR_LOG_MODULES"))
|
||||
return "all:5";
|
||||
|
||||
|
@ -88,6 +87,9 @@ MOZCE_SHUNT_API char* mozce_getenv(const char* inName)
|
|||
if (!strcmp(inName, "NS_TIMELINE_ENABLE"))
|
||||
return "1";
|
||||
#endif
|
||||
|
||||
if (!_stricmp(inName, "tmp"))
|
||||
return "/Temp";
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче