Fix using /dev/urandom since it wasn't working
[umurmur.git] / src / ssl.h
index 86cd7bcd5ef5be3ee7d93ca20ed54e913bb6b5b4..75b44a09c4578b482dd29ae4d1f7aafa43cb0063 100644 (file)
--- a/src/ssl.h
+++ b/src/ssl.h
 #include <polarssl/ssl.h>
 #include <polarssl/version.h>
 
+#ifdef POLARSSL_VERSION_MAJOR
 #if (POLARSSL_VERSION_MAJOR < 1)
-#error PolarSSL version 1.0.0 or later is required!
+#error PolarSSL version 1.0.0 or greater is required!
+#endif
+#else
+#error PolarSSL version 1.0.0 or greater is required!
 #endif
 
 #ifdef USE_POLARSSL_HAVEGE
+#include <polarssl/havege.h>
     #if (POLARSSL_VERSION_MINOR >= 1)
         #define HAVEGE_RAND (havege_random)
         #define RAND_bytes(_dst_, _size_) do { \