Features of LuaCheia are: * Portable and ported to Apple OS X, POSIX/X Window System and Microsoft Windows platforms. Use GNU autoconf to support automatic building on a wide variety of systems. * Standard binary distributions for the supported platforms. One-stop shopping for users interested in experimenting with Lua, or using it for general-purpose scripting. * Modularity. Only a very small core is mandatory, which is essentially the stock official Lua 5 distribution with bug patches. LuaCheia is implemented as a wrapper and bootscript around the normal stand-alone Lua executable. The wrapper can easily be pointed at a modified Lua interpreter if you like to experiment with the core itself. * Incorporate many different useful libraries. * Libraries are loaded dynamically so the core stays small. * Ample, standardized documentation (partly TODO).
19 lines
537 B
Text
19 lines
537 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2004/01/23 00:28:05 poppnk Exp $
|
|
--- src/modules/gluahost/gluax.h.orig 2004-01-22 23:47:22.000000000 +0000
|
|
+++ src/modules/gluahost/gluax.h 2004-01-22 23:47:53.000000000 +0000
|
|
@@ -74,14 +74,11 @@
|
|
#define PLATFORM_DARWIN
|
|
#endif
|
|
#define PLATFORM_NAME "darwin"
|
|
-#elif (defined __unix__)
|
|
+#else
|
|
#ifndef PLATFORM_POSIX
|
|
#define PLATFORM_POSIX
|
|
#endif
|
|
#define PLATFORM_NAME "posix"
|
|
-#else
|
|
- #error "Unknown platform!"
|
|
- #define PLATFORM_NAME NULL
|
|
#endif
|
|
|
|
#ifdef _MSC_VER // Visual C++
|