fixed linking against libreadline on OpenBSD

To fix the linking error described here https://github.com/monero-project/monero/pull/2841#issuecomment-346129030 we also need to link libcurses.
This commit is contained in:
ston1th 2017-11-28 18:55:37 +01:00
parent 9fad4008ef
commit 25f4ab81ce
1 changed files with 4 additions and 0 deletions

View File

@ -68,3 +68,7 @@ main()
if(NOT Readline_LIBRARY)
set(Readline_LIBRARY "")
endif()
if(Readline_LIBRARY AND OPENBSD)
list(APPEND EXTRA_LIBRARIES curses)
endif()