I'm trying to build this but not having any luck — keeps failing due to not finding the sodium headers:
In file included from /Code/Others/Cocoa/telehash/common/THLine.m:29:
/Code/Others/Cocoa/telehash/common/THCipherSet3a.h:10:10: fatal error: 'sodium.h' file not found
#include <sodium.h>
Looks like libsodium has to be built first; so I cd'd into it and did the usual "./autogen.sh && ./configure && make" thing. This build successfully, but that doesn't fix the Xcode error.
The telehash target has a header path $(PROJECT_DIR)/libsodium/build/include, but there's no build subdirectory in libsodium.
Any idea what to do next?