wscript: better Sailfish/AuroraOS macros

This commit is contained in:
Alibek Omarov 2023-06-02 06:16:40 +03:00
parent 8caa2d142f
commit 13f8a02cdf
2 changed files with 7 additions and 5 deletions

View File

@ -153,18 +153,18 @@ _inline int Sys_Start( void )
pfnChangeGame changeGame = NULL;
const char *game = getenv( E_GAME );
#ifdef XASH_SAILFISH
#if XASH_SAILFISH
const char *home = getenv( "HOME" );
char buf[1024];
snprintf( buf, sizeof( buf ), "%s/xash", home );
setenv( "XASH3D_BASEDIR", buf, true );
#if XASH_SAILFISH == aurora
#if XASH_AURORAOS
setenv( "XASH3D_RODIR", "/usr/share/su.xash.Engine/rodir", true );
#else
setenv( "XASH3D_RODIR", "/usr/share/harbour-xash3d-fwgs/rodir", true );
#endif
#endif // SAILFISH
#endif // XASH_AURORAOS
#endif // XASH_SAILFISH
if( !game )
game = XASH_GAMEDIR;

View File

@ -263,7 +263,9 @@ def configure(conf):
linkflags.append('-lc')
elif conf.env.SAILFISH != None:
# TODO: enable XASH_MOBILE_PLATFORM
conf.env.append_unique('DEFINES', 'XASH_SAILFISH=%s' % conf.env.SAILFISH)
conf.define('XASH_SAILFISH', 1)
if conf.env.SAILFISH == "aurora":
conf.define('XASH_AURORAOS', 1)
# Do not warn us about bug in SDL_Audio headers
conf.env.append_unique('CFLAGS', ['-Wno-attributes'])