Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/luajit-rocks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonan Collobert <locronan@fb.com>2014-09-11 00:41:28 +0400
committerRonan Collobert <locronan@fb.com>2014-09-11 00:41:28 +0400
commit9dc61ae51366fdb12c07b4506e04909ad7330704 (patch)
treeb98449298a949800a88863616fe400870b3c9eb6 /lua-5.1
parent087405069e0fe559322f3b1c6db02ea62bf06ea5 (diff)
lua-5.1: fix readline support
Diffstat (limited to 'lua-5.1')
-rw-r--r--lua-5.1/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua-5.1/CMakeLists.txt b/lua-5.1/CMakeLists.txt
index 4bf9a39..10127d2 100644
--- a/lua-5.1/CMakeLists.txt
+++ b/lua-5.1/CMakeLists.txt
@@ -33,7 +33,7 @@ ENDIF()
# Readline support
FIND_PACKAGE(Readline)
IF(READLINE_FOUND)
- SET(DLUA_USE_READLINE 1)
+ SET(LUA_USE_READLINE 1)
LIST(APPEND LIBS ${READLINE_LIBRARIES})
INCLUDE_DIRECTORIES(${READLINE_INCLUDE_DIR})
ENDIF(READLINE_FOUND)