Maybe this could be added to the README? Some notes on compiling stud on CentOS / RHEL 6.2. ``` # rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpmRetrieving http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm # yum install openssl-devel # yum install libev-devel ``` and I had to change the #include in stud.c: ``` $ git diff diff --git a/stud.c b/stud.c index 1e83617..1cdca85 100644 --- a/stud.c +++ b/stud.c @@ -60,7 +60,7 @@ #include <openssl/err.h> #include <openssl/engine.h> #include <openssl/asn1.h> -#include <ev.h> +#include <libev/ev.h> #include "ringbuffer.h" #include "shctx.h" ```
Maybe this could be added to the README? Some notes on compiling stud on CentOS / RHEL 6.2.
and I had to change the #include in stud.c: