teapot fails to build on OpenSuse Tumbleweed #1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Even with libfltk1, fltk-devel, and fltk-devel-static installed, performing the following:
results in
teapot should be able to find the system fltk.
This is perhaps not surprising as none of the three fltk-related packages install any cmake files, and as far as I can tell, find_package which is being used to look for fltk can only succeed if there is some sort of cmake file.
teapot fails to make on OpenSuse tumbleweedto teapot fails to build on OpenSuse tumbleweedteapot fails to build on OpenSuse tumbleweedto teapot fails to build on OpenSuse TumbleweedOK, so renamed README to README.md in the CMakeLists.txt file; now it will configure (but still can't find fltk), but in compiling fails to link, with many errors like:
undefined reference to
xdrstdio_create'`. So it's not linking a proper xdr library (for opensuse, this would be libtirpc-devel). So first let's get the curses version linking.OK, searching for libtirpc and linking with that if it is found allowed (the curses version) teapot to compile and link, apparently successfully. So I will check just this much in, as that's a partial solution to the problem.