Replace remaining ND_BUILD64BIT_ARCH definitions with ADDRESS_SIZE
parent
b47c5e02f6
commit
04a10663ff
|
|
@ -140,13 +140,13 @@ LLDir_Mac::LLDir_Mac()
|
|||
std::string FSCacheDirName = secondLifeString;
|
||||
// This was lifted from Cinder's fix for FIRE-8226.
|
||||
#ifdef OPENSIM
|
||||
#ifdef ND_BUILD64BIT_ARCH
|
||||
#if ADDRESS_SIZE == 64
|
||||
FSCacheDirName.append("OS_x64");
|
||||
#else
|
||||
FSCacheDirName.append("OS");
|
||||
#endif
|
||||
#else
|
||||
#ifdef ND_BUILD64BIT_ARCH
|
||||
#if ADDRESS_SIZE == 64
|
||||
FSCacheDirName.append("_x64");
|
||||
#endif
|
||||
#endif // OPENSIM
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ void exportFlashVars()
|
|||
};
|
||||
|
||||
std::string strExpectedArch = "ia32";
|
||||
#ifdef ND_BUILD64BIT_ARCH
|
||||
#if ADDRESS_SIZE == 64
|
||||
strExpectedArch = "x64";
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue