summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorjrmarino <draco@marino.st>2016-10-21 08:48:31 -0500
committerRich Salz <rsalz@openssl.org>2016-10-22 04:25:17 -0400
commit2df7f11fad886cf54c98a17e95932d9b5987f488 (patch)
treec5b63d5f1507abdec36fb0c2de7ae630386594c0 /include
parent4fab3e24d62c810bc9165920af1c67c6215c7418 (diff)
Fix support for DragonFly BSD
The __DragonFly__ macros were introduced in issue #1546 along with a function naming fix, but it was decided they should be handled separately. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1765)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/engine.h b/include/openssl/engine.h
index 319371e425..3bafa188e6 100644
--- a/include/openssl/engine.h
+++ b/include/openssl/engine.h
@@ -745,7 +745,7 @@ typedef int (*dynamic_bind_engine) (ENGINE *e, const char *id,
*/
void *ENGINE_get_static_state(void);
-# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
+# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(HAVE_CRYPTODEV)
DEPRECATEDIN_1_1_0(void ENGINE_setup_bsd_cryptodev(void))
# endif