Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-10-26 | cmake: fix readline detection when the readline library is not found | moneromooo-monero | 1 | -1/+3 | |
2018-05-07 | Updating the FindReadline CMake hint to search in homebrew's default directory | Gene Peters | 1 | -1/+1 | |
2018-01-11 | Keep readline optional | Jethro Grassie | 1 | -2/+10 | |
2018-01-02 | Add checks for termcap if needed by readline | Jethro Grassie | 1 | -20/+27 | |
2017-11-28 | fixed linking against libreadline on OpenBSD | ston1th | 1 | -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-19 | cmake: fix building when readline is not found | moneromooo-monero | 1 | -0/+4 | |
2017-06-18 | Add readline support to cli | jethro | 1 | -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. |