After few days fiddling around, and wasting too much time forgetting about ldconfig (it appears sigar install does not run it)
I've got hypertable building.
More importantly for my experiment, I've also ported cephBroker to the new libcephfs api, so cephBroker builds against the ceph release binaries
It was just a matter of...
1. installing the libcef binaries.. apt-get install libcephfs1
2. fixing the cmake/FindCeph.cmake to find cephfs/libcephfs.h
3. woefully hacking cmake/FindCeph.cmake to find the systems own openSSL -
find_library(SSL_LIB NAMES ssl
PATHS /usr/lib/x86_64-linux-gnu )
(sorry)
4. grabbing the new cephBroker from the ceph codebase.
5. Adding the couple of (unused in ceph) verify_checksum bools to open and pread
6. removing ceph_version from main.cc as it has been dropped in the new ceph api.
I have yet to test it out, but it builds :)
I can put this in a pull request if any maintainers like, I think only the openSSL hackery needs some elegance applied.
I'll be trying this out in the next few days
Cheers.