PR_MemMap is busted on WINCE. Until it is fixed, disable memory map access in js loader. b=318077. r=dougt. WINCE only.

This commit is contained in:
dougt%meer.net 2005-11-29 05:44:40 +00:00
Родитель f3714ce5e2
Коммит a37420ece8
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -84,7 +84,8 @@ static const char kXPConnectServiceContractID[] = "@mozilla.org/js/xpc/XPConnect
static const char kObserverServiceContractID[] = "@mozilla.org/observer-service;1";
/* Some platforms don't have an implementation of PR_MemMap(). */
#if !defined(XP_BEOS) && !defined(XP_OS2)
/* See bug 318077 for WinCE. */
#if !defined(XP_BEOS) && !defined(XP_OS2) && !defined(WINCE)
#define HAVE_PR_MEMMAP
#endif