More tweaks needed to get BeOS to compile for M14. For now, we use the Unix local file implementation. a,r=leaf

This commit is contained in:
cls%seawood.org 2000-02-17 20:24:24 +00:00
Родитель 0a72d00cd7
Коммит 5975077af0
3 изменённых файлов: 4 добавлений и 2 удалений

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

@ -654,7 +654,7 @@ nsHTTPHandler::Init()
#elif defined (XP_MAC)
mAppOSCPU = "PPC";
#elif defined (XP_BEOS)
mAppOSCPU = "BeOS"
mAppOSCPU = "BeOS";
#endif
rv = BuildUserAgent();

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

@ -34,7 +34,7 @@
#ifdef XP_PC
#include "nsLocalFileWin.h"
#else
#ifdef XP_UNIX
#if defined(XP_UNIX) || defined(XP_BEOS)
#include "nsLocalFileUnix.h"
#else
#ifdef XP_MAC

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

@ -93,6 +93,8 @@ static NS_DEFINE_IID(kIStringBundleServiceIID, NS_ISTRINGBUNDLESERVICE_IID);
#define MAX_NAME_LENGTH 128
#elif defined (XP_UNIX)
#define MAX_NAME_LENGTH 1024 //got this one from nsComponentManager.h
#elif defined (XP_BEOS)
#define MAX_NAME_LENGTH MAXNAMLEN
#endif
MOZ_DECL_CTOR_COUNTER(nsInstallInfo);