зеркало из https://github.com/mozilla/pjs.git
Find proper resource directory for Mac, rather than /usr/local/netscape/bin.
This commit is contained in:
Родитель
89d2f00c13
Коммит
0149341721
|
@ -26,6 +26,7 @@
|
|||
#include "prmem.h"
|
||||
#include "prprf.h"
|
||||
#include "prenv.h"
|
||||
#include "nsSpecialSystemDirectory.h"
|
||||
|
||||
#ifdef XP_PC
|
||||
#include <windows.h>
|
||||
|
@ -260,7 +261,11 @@ MangleResourceIntoFileURL(const char* aResourceFileName)
|
|||
#endif
|
||||
|
||||
#ifdef XP_MAC
|
||||
resourceBase = nsCRT::strdup("usr/local/netscape/bin");
|
||||
// resourceBase = nsCRT::strdup("usr/local/netscape/bin");
|
||||
nsSpecialSystemDirectory netscapeDir(nsSpecialSystemDirectory::OS_CurrentProcessDirectory);
|
||||
nsFilePath netscapePath(netscapeDir);
|
||||
resourceBase = nsCRT::strdup(1+(const char *)netscapePath);
|
||||
|
||||
#endif /* XP_MAC */
|
||||
|
||||
// Join base path to resource name
|
||||
|
|
Загрузка…
Ссылка в новой задаче