Missing uthash/src/uthash.h
breedx2 opened this issue · 5 comments
Master won't compile because
json-encode.c
line 36 says:
#include "uthash/src/uthash.h"
but this file is not included in the github repository.
I guess uthash should be called out as an external dependency, or else the files should be included with this project. I worked around this by installing the system package uthash-dev
and changing the include in two files to <uthash.h>
.
See this gist:
https://gist.github.com/breedx2/18ab6b4117672a73936e
You need to update the submodule before building:
git submodule update --init
The current instructions in wiki do not represent the current state in master, but I am working on a complete restructuring of the documentation.
Hey, thanks for pointing that out! It never even occurred to me that it might be a git submodule (I so rarely use those!).
Maybe a comment/update to the wiki could help here...but thanks again.
I have upated the wiki with lots of new information, including the compilation using uthash.
Super! Thanks for following up.