linux -> unix

This commit is contained in:
Glenn Maynard
2007-05-03 02:15:55 +00:00
parent a4bdd07209
commit 7c8cf2cbdd
3 changed files with 3 additions and 3 deletions
@@ -243,7 +243,7 @@ void ArchHooks_Unix::SetTime( tm newtime )
static LocalizedString COULDNT_FIND_SONGS( "ArchHooks_Unix", "Couldn't find 'Songs'" );
void ArchHooks::MountInitialFilesystems( const RString &sDirOfExecutable )
{
#if defined(LINUX)
#if defined(UNIX)
/* Mount the root filesystem, so we can read files in /proc, /etc, and so on.
* This is /rootfs, not /root, to avoid confusion with root's home directory. */
FILEMAN->Mount( "dir", "/", "/rootfs" );
@@ -8,7 +8,7 @@ LoadingWindow *LoadingWindow::Create()
{
if( !PREFSMAN->m_bShowLoadingWindow )
return new LoadingWindow_Null;
#if defined(LINUX) && !defined(HAVE_GTK)
#if defined(UNIX) && !defined(HAVE_GTK)
return new LoadingWindow_Null;
#endif
/* Don't load NULL by default. */
+1 -1
View File
@@ -15,7 +15,7 @@ using CrashHandler::DebugBreak;
# include <unistd.h>
#endif
#if defined(CRASH_HANDLER) && (defined(LINUX) || defined(MACOSX))
#if defined(CRASH_HANDLER) && (defined(UNIX) || defined(MACOSX))
#include "archutils/Unix/CrashHandler.h"
#endif