aboutsummaryrefslogtreecommitdiff
path: root/libs/lua/src/luaconf.h
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-08-24 17:07:05 (GMT)
committerPaul Tagliamonte <paultag@fluxbox.org>2012-04-07 02:13:14 (GMT)
commit6393edaf7e7fc3142a59eb913511b975888c7361 (patch)
tree8e8c1b181bd2efe4e2014e55df3a37b4fcf12c85 /libs/lua/src/luaconf.h
parentb30a7a63368caf73587f96fee5016d89e919ffcf (diff)
downloadfluxbox_paul-6393edaf7e7fc3142a59eb913511b975888c7361.zip
fluxbox_paul-6393edaf7e7fc3142a59eb913511b975888c7361.tar.bz2
Do not depend on readlinefluxbox-lua-integration-latest
Readline is only used in the standalone lua interpreter, and we don't really need that. It would be silly to pull readline as a dependency for this reason.
Diffstat (limited to 'libs/lua/src/luaconf.h')
-rw-r--r--libs/lua/src/luaconf.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/libs/lua/src/luaconf.h b/libs/lua/src/luaconf.h
index e2cb261..bc34b13 100644
--- a/libs/lua/src/luaconf.h
+++ b/libs/lua/src/luaconf.h
@@ -36,7 +36,12 @@
36#if defined(LUA_USE_LINUX) 36#if defined(LUA_USE_LINUX)
37#define LUA_USE_POSIX 37#define LUA_USE_POSIX
38#define LUA_USE_DLOPEN /* needs an extra library: -ldl */ 38#define LUA_USE_DLOPEN /* needs an extra library: -ldl */
39#define LUA_USE_READLINE /* needs some extra libraries */ 39/*
40 * we don't define LUA_USE_READLINE, because readline is only used in the standalone lua
41 * interpreter, and we don't really need that. It would be silly to pull readline as a dependency
42 * for this reason.
43 */
44//#define LUA_USE_READLINE /* needs some extra libraries */
40#endif 45#endif
41 46
42#if defined(LUA_USE_MACOSX) 47#if defined(LUA_USE_MACOSX)