I get the following error when compiling (gcc version 5.3.0):
../src/main.c:85:10:` error: variably modified ‘leader_host’ at file scope
char leader_host[IP_STR_LEN];
^
../src/main.c:94:10: error: variably modified ‘host’ at file scope
char `host[IP_STR_LEN];
^
The problem is IP_STR_LEN being variably defined.
For testing I used #define IP_STR_LEN 15, which made ticketd compile.