diff options
author | Pavel Labath <pavelo@centrum.sk> | 2011-08-24 17:07:05 (GMT) |
---|---|---|
committer | Pavel Labath <pavelo@centrum.sk> | 2011-08-24 17:07:05 (GMT) |
commit | eac6442b817d003b3f383e6b5b1cc4d6d4167f5e (patch) | |
tree | 6905c152394b2cb7e15d4d2a5812c400c135e901 /libs/lua/src/Makefile | |
parent | 26ed16299ebd7170195929083d5f9194f400bbc7 (diff) | |
download | fluxbox_pavel-eac6442b817d003b3f383e6b5b1cc4d6d4167f5e.zip fluxbox_pavel-eac6442b817d003b3f383e6b5b1cc4d6d4167f5e.tar.bz2 |
Do not depend on readline
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/Makefile | 4 |
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 | ||
98 | linux: | 98 | linux: |
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 | ||
101 | macosx: | 103 | macosx: |
102 | $(MAKE) all MYCFLAGS=-DLUA_USE_LINUX MYLIBS="-lreadline" | 104 | $(MAKE) all MYCFLAGS=-DLUA_USE_LINUX MYLIBS="-lreadline" |