scons, cmake: by default, search for GNU readline support

This commit is contained in:
Chris Beck 2014-11-22 00:03:30 -05:00
parent 316c7afba4
commit 2152b48a14
2 changed files with 2 additions and 2 deletions

View file

@ -88,7 +88,7 @@ option(ENABLE_PANDORA "Add support for the OpenPandora by deactivating libvorbis
option(ENABLE_SDL_GPU "Enable building with SDL_gpu (experimental" OFF)
option(ENABLE_BOOST_FILESYSTEM "Enable building with the boost filesystem and boost locale code" ON)
option(ENABLE_LIBPNG "Enable support for writing png files (screenshots, images)" ON)
option(ENABLE_READLINE "Enable using readline for history in lua console" OFF)
option(ENABLE_READLINE "Enable using GNU readline for history in lua console" ON)
if(NOT DEFINED ENABLE_DISPLAY_REVISION)
# Test whether the code is used in a repository if not autorevision will

View file

@ -106,7 +106,7 @@ opts.AddVariables(
BoolVariable("fast", "Make scons faster at cost of less precise dependency tracking.", False),
BoolVariable("lockfile", "Create a lockfile to prevent multiple instances of scons from being run at the same time on this working copy.", False),
BoolVariable("OS_ENV", "Forward the entire OS environment to scons", False),
BoolVariable("readline", "Clear to disable readline support in lua console", False),
BoolVariable("readline", "Clear to disable GNU readline support in lua console", True),
BoolVariable("sdl2", "Build with SDL2 support (experimental!)", False)
)