aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindReadline.cmake (follow)
AgeCommit message (Collapse)AuthorFilesLines
2018-10-26cmake: fix readline detection when the readline library is not foundmoneromooo-monero1-1/+3
2018-05-07Updating the FindReadline CMake hint to search in homebrew's default directoryGene Peters1-1/+1
2018-01-11Keep readline optionalJethro Grassie1-2/+10
2018-01-02Add checks for termcap if needed by readlineJethro Grassie1-20/+27
2017-11-28fixed linking against libreadline on OpenBSDston1th1-0/+4
To fix the linking error described here https://github.com/monero-project/monero/pull/2841#issuecomment-346129030 we also need to link libcurses.
2017-11-19cmake: fix building when readline is not foundmoneromooo-monero1-0/+4
2017-06-18Add readline support to clijethro1-0/+66
This PR adds readline support to the daemon and monero-wallet-cli. Only GNU readline is supported (e.g. not libedit) and there are cmake checks to ensure this. There is a cmake variable, Readline_ROOT_DIR that can specify a directory to find readline, otherwise some default paths are searched. There is also a cmake option, USE_READLINE, that defaults to ON. If set to ON, if readline is not found, the build continues but without readline support. One negative side effect of using readline is that the color prompt in the wallet-cli now has no color and just uses terminal default. I know how to fix this but it's quite a big change so will tackle another time.