Some cleanup of SSL handling. Remove stuff related to pre PolarSSL 1.0.0.
[umurmur.git] / src / ssl.h
index 86cd7bcd5ef5be3ee7d93ca20ed54e913bb6b5b4..2aba396aae6f6d902a5f9826a597c2f05f64c2cc 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