This commit is contained in:
hangas%netscape.com 1999-06-16 00:46:12 +00:00
Родитель 67ee9dfef9
Коммит f031fb76f6
1 изменённых файлов: 11 добавлений и 5 удалений

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

@ -31,8 +31,9 @@
#include "nsRDFCID.h" #include "nsRDFCID.h"
#include <sys/types.h> // Candice - Removed to allow it to build on Mac
#include <sys/stat.h> //#include <sys/types.h>
//#include <sys/stat.h>
#if defined(XP_MAC) && defined(CompareString) #if defined(XP_MAC) && defined(CompareString)
#undef CompareString #undef CompareString
@ -326,7 +327,10 @@ nsIMdbFactory *nsAddrDatabase::GetMDBFactory()
static nsIMdbFactory *gMDBFactory = NULL; static nsIMdbFactory *gMDBFactory = NULL;
if (!gMDBFactory) if (!gMDBFactory)
{ {
// Candice - Removed to allow it to build on Mac
#if 0
gMDBFactory = MakeMdbFactory(); //new nsIMdbFactory; gMDBFactory = MakeMdbFactory(); //new nsIMdbFactory;
#endif
} }
return gMDBFactory; return gMDBFactory;
} }
@ -491,7 +495,8 @@ NS_IMETHODIMP nsAddrDatabase::OpenMDB(const char *dbName, PRBool create)
if (NS_SUCCEEDED(ret)) if (NS_SUCCEEDED(ret))
{ {
nsIMdbThumb *thumb; nsIMdbThumb *thumb;
struct stat st; // Candice - Removed to allow it to build on Mac
// struct stat st;
char *nativeFileName = nsCRT::strdup(dbName); char *nativeFileName = nsCRT::strdup(dbName);
if (!nativeFileName) if (!nativeFileName)
@ -503,9 +508,10 @@ NS_IMETHODIMP nsAddrDatabase::OpenMDB(const char *dbName, PRBool create)
#if defined(XP_PC) || defined(XP_MAC) #if defined(XP_PC) || defined(XP_MAC)
UnixToNative(nativeFileName); UnixToNative(nativeFileName);
#endif #endif
if (stat(nativeFileName, &st)) // Candice - Removed to allow it to build on Mac
/* if (stat(nativeFileName, &st))
ret = NS_ERROR_FAILURE; // check: use the right error code later ret = NS_ERROR_FAILURE; // check: use the right error code later
else else*/
{ {
mdbOpenPolicy inOpenPolicy; mdbOpenPolicy inOpenPolicy;
mdb_bool canOpen; mdb_bool canOpen;