diff options
| author | megamage <none@none> | 2009-05-25 13:17:41 -0500 |
|---|---|---|
| committer | megamage <none@none> | 2009-05-25 13:17:41 -0500 |
| commit | b96dea29c7432b776f7874ca536070682e9e426b (patch) | |
| tree | 02100dfe87b40abb4ac1ff5cb01c9f3e90d0909c /src/framework | |
| parent | a2f8a735aeec5517a1e28dd9202f241966be7691 (diff) | |
| parent | 1efdaa89601f5b617b6abfc8b023ccac8e915ff6 (diff) | |
*Merge.
--HG--
branch : trunk
Diffstat (limited to 'src/framework')
| -rw-r--r-- | src/framework/Platform/Define.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/framework/Platform/Define.h b/src/framework/Platform/Define.h index 1516d697048..57c5b1b59cd 100644 --- a/src/framework/Platform/Define.h +++ b/src/framework/Platform/Define.h @@ -64,10 +64,18 @@ # endif //__APPLE_CC__ && BIG_ENDIAN # if defined(__APPLE_CC__) # define TRINITY_SCRIPT_EXT ".dylib" -# define TRINITY_SCRIPT_NAME "../lib/libtrinityscript" +# if defined(DO_SCRIPTS) +# define TRINITY_SCRIPT_NAME "../lib/libtrinityscript" +# else +# define TRINITY_SCRIPT_NAME "../lib/libtrinityinterface" +# endif // DO_SCRIPTS # else # define TRINITY_SCRIPT_EXT ".so" -# define TRINITY_SCRIPT_NAME "libtrinityscript" +# if defined(DO_SCRIPTS) +# define TRINITY_SCRIPT_NAME "libtrinityscript" +# else +# define TRINITY_SCRIPT_NAME "libtrinityinterface" +# endif // DO_SCRIPTS # endif //__APPLE_CC__ # define TRINITY_PATH_MAX PATH_MAX #endif //PLATFORM |
