diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-04-20 15:25:54 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-04-20 15:25:54 -0300 |
commit | 2aff901c932862ccdb32c145d0034c20fe4fc41d (patch) | |
tree | 9ed1404616f644e8337c4d3b0e16a83231584eb3 /luaconf.h | |
parent | bad231c481f1edb685b2eb0f000915e9f3da2199 (diff) | |
download | lua-2aff901c932862ccdb32c145d0034c20fe4fc41d.tar.gz lua-2aff901c932862ccdb32c145d0034c20fe4fc41d.tar.bz2 lua-2aff901c932862ccdb32c145d0034c20fe4fc41d.zip |
Mac OS defines LUA_USE_AFORMAT and LUA_USE_LONGLONG by default
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.154 2011/04/19 18:31:30 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.155 2011/04/20 16:36:28 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -53,6 +53,8 @@ | |||
53 | #define LUA_USE_POSIX | 53 | #define LUA_USE_POSIX |
54 | #define LUA_USE_DLOPEN /* does not need -ldl */ | 54 | #define LUA_USE_DLOPEN /* does not need -ldl */ |
55 | #define LUA_USE_READLINE /* needs an extra library: -lreadline */ | 55 | #define LUA_USE_READLINE /* needs an extra library: -lreadline */ |
56 | #define LUA_USE_AFORMAT /* assume 'printf' handles 'aA' specifiers */ | ||
57 | #define LUA_USE_LONGLONG /* assume support for long long */ | ||
56 | #endif | 58 | #endif |
57 | 59 | ||
58 | 60 | ||