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.
pull/95/head
ston1th 7 years ago
parent 9fad4008ef
commit 25f4ab81ce

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

Loading…
Cancel
Save