aboutsummaryrefslogtreecommitdiff
path: root/libs/lua/src/Makefile
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-08-24 17:07:05 (GMT)
committerPavel Labath <pavelo@centrum.sk>2011-11-01 10:04:04 (GMT)
commit85ac5c4b2c6a526992f483a6e91867dc2f82a19e (patch)
treebea5be1b9b551c30c7197d5dbef67136f4757858 /libs/lua/src/Makefile
parente1dd8320a430c145ef37914e902558130856b430 (diff)
downloadfluxbox_pavel-master.zip
fluxbox_pavel-master.tar.bz2
Do not depend on readlineHEADmaster
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/Makefile')
-rw-r--r--libs/lua/src/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/lua/src/Makefile b/libs/lua/src/Makefile
index e4a3cd6..ffc5715 100644
--- a/libs/lua/src/Makefile
+++ b/libs/lua/src/Makefile
@@ -96,7 +96,9 @@ generic:
96 $(MAKE) all MYCFLAGS= 96 $(MAKE) all MYCFLAGS=
97 97
98linux: 98linux:
99 $(MAKE) all MYCFLAGS=-DLUA_USE_LINUX MYLIBS="-Wl,-E -ldl -lreadline -lhistory -lncurses" 99 $(MAKE) all MYCFLAGS=-DLUA_USE_LINUX MYLIBS="-Wl,-E -ldl"
100# we don't want to depend on readline, see comment in luaconf.h
101# $(MAKE) all MYCFLAGS=-DLUA_USE_LINUX MYLIBS="-Wl,-E -ldl -lreadline -lhistory -lncurses"
100 102
101macosx: 103macosx:
102 $(MAKE) all MYCFLAGS=-DLUA_USE_LINUX MYLIBS="-lreadline" 104 $(MAKE) all MYCFLAGS=-DLUA_USE_LINUX MYLIBS="-lreadline"