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