mirror of
https://github.com/openssl/openssl.git
synced 2024-12-24 17:33:53 +08:00
Make sure to implement the cryptodev engine only when /dev/crypto exists.
This commit is contained in:
parent
8cbccedf7c
commit
b84d5b72f1
@ -46,6 +46,18 @@ ENGINE_load_cryptodev(void)
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
|
||||
#if OpenBSD < 200112
|
||||
|
||||
void
|
||||
ENGINE_load_cryptodev(void)
|
||||
{
|
||||
/* This is a NOP unless we have release 3.0 (released december 2001) */
|
||||
return;
|
||||
}
|
||||
|
||||
#else /* OpenBSD 3.0 or above */
|
||||
|
||||
#include <crypto/cryptodev.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <errno.h>
|
||||
@ -1114,4 +1126,5 @@ ENGINE_load_cryptodev(void)
|
||||
ERR_clear_error();
|
||||
}
|
||||
|
||||
#endif /* OpenBSD 3.0 or above */
|
||||
#endif /* __OpenBSD__ */
|
||||
|
Loading…
Reference in New Issue
Block a user