зеркало из https://github.com/mozilla/pjs.git
Cleaning up ifdef logic, adding BeOS case.
This commit is contained in:
Родитель
8af396b2eb
Коммит
345930fc4f
|
@ -40,19 +40,18 @@
|
||||||
// this is only needed as long as our libmime hack is in place
|
// this is only needed as long as our libmime hack is in place
|
||||||
#include "prio.h"
|
#include "prio.h"
|
||||||
|
|
||||||
#ifdef XP_UNIX
|
#if defined(XP_UNIX)
|
||||||
#define ARTICLE_PATH "/usr/tmp/tempMessage.eml"
|
#define ARTICLE_PATH "/usr/tmp/tempMessage.eml"
|
||||||
#define ERROR_PATH "/usr/tmp/errorMessage.htm"
|
#define ERROR_PATH "/usr/tmp/errorMessage.htm"
|
||||||
#endif
|
#elif defined(XP_PC)
|
||||||
|
|
||||||
#ifdef XP_PC
|
|
||||||
#define ARTICLE_PATH "c:\\temp\\tempMessage.eml"
|
#define ARTICLE_PATH "c:\\temp\\tempMessage.eml"
|
||||||
#define ERROR_PATH "c:\\temp\\errorMessage.htm"
|
#define ERROR_PATH "c:\\temp\\errorMessage.htm"
|
||||||
#endif
|
#elif defined(XP_MAC)
|
||||||
|
|
||||||
#ifdef XP_MAC
|
|
||||||
#define ARTICLE_PATH "tempMessage.eml"
|
#define ARTICLE_PATH "tempMessage.eml"
|
||||||
#define ERROR_PATH "errorMessage.htm"
|
#define ERROR_PATH "errorMessage.htm"
|
||||||
|
#elif defined(XP_BEOS)
|
||||||
|
#define ARTICLE_PATH "/tmp/tempMessage.eml"
|
||||||
|
#define ERROR_PATH "/tmp/errorMessage.htm"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// State Flags (Note, I use the word state in terms of storing
|
// State Flags (Note, I use the word state in terms of storing
|
||||||
|
|
Загрузка…
Ссылка в новой задаче