diff options
author | Damien Miller <djm@mindrot.org> | 2015-01-15 02:21:31 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-01-15 02:28:36 +1100 |
commit | 72ef7c148c42db7d5632a29f137f8b87b579f2d9 (patch) | |
tree | 47954a387f4260cc8b1e0ff33bbbaf22fd6f11fc /includes.h | |
parent | 4f38c61c68ae7e3f9ee4b3c38bc86cd39f65ece9 (diff) |
support --without-openssl at configure time
Disables and removes dependency on OpenSSL. Many features don't
work and the set of crypto options is greatly restricted. This
will only work on system with native arc4random or /dev/urandom.
Considered highly experimental for now.
Diffstat (limited to 'includes.h')
-rw-r--r-- | includes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes.h b/includes.h index 095161c28..c3034e37d 100644 --- a/includes.h +++ b/includes.h | |||
@@ -167,7 +167,9 @@ | |||
167 | # endif | 167 | # endif |
168 | #endif | 168 | #endif |
169 | 169 | ||
170 | #ifdef WITH_OPENSSL | ||
170 | #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */ | 171 | #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */ |
172 | #endif | ||
171 | 173 | ||
172 | #include "defines.h" | 174 | #include "defines.h" |
173 | 175 | ||