Ifdefs for mach-o build. We do too have a splash screen. r=beard/rs=sfraser.

This commit is contained in:
pinkerton%netscape.com 2001-11-06 15:39:06 +00:00
Родитель a22a9c92e4
Коммит 3e831fafb6
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -279,7 +279,7 @@ static char *sWatcherServiceContractID = "@mozilla.org/embedcomp/window-watcher;
/*********************************************/
// Default implemenations for nativeAppSupport
// If your platform implements these functions if def out this code.
#if !defined (XP_MAC ) && !defined(NTO) && !defined( XP_PC ) && !defined( XP_BEOS )
#if !defined (XP_MAC ) && !defined(XP_MACOSX) && !defined(NTO) && !defined( XP_PC ) && !defined( XP_BEOS )
nsresult NS_CreateSplashScreen( nsISplashScreen **aResult )
{
@ -1504,7 +1504,7 @@ static PRBool GetWantSplashScreen(int argc, char* argv[])
int i;
PRBool dosplash;
// We can't use the command line service here because it isn't running yet
#if defined(XP_UNIX) && !defined(NTO)
#if defined(XP_UNIX) && !defined(NTO) && !defined(XP_MACOSX)
dosplash = PR_FALSE;
for (i=1; i<argc; i++)
if ((PL_strcasecmp(argv[i], "-splash") == 0)