Source: netkit-rsh Version: 0.17-21 Tags: patch User: debian-cr...@lists.debian.org Usertags: ftcbfs
netkit-rsh fails to cross build from source, because it fails to find -lncurses. The library is not present, because there is not build dependency on libncurses-dev. During a native build, ldconfig apparentle creates the relevant .so symlink, so this problem is hidden there. Indeed, netkit-rsh does not actually use the library in any way. It is a left-over from the build system conversion. It can safely be removed and that seems like the supperior solution. Please consider applying the attached patch. Helmut
--- netkit-rsh-0.17.orig/CMakeLists.txt +++ netkit-rsh-0.17/CMakeLists.txt @@ -9,7 +9,6 @@ find_library(USE_CRYPT crypt REQUIRED) find_library(USE_PAM pam) -find_library(USE_TERMCAP lncurses REQUIRED) add_subdirectory(rcp) add_subdirectory(rexec)