aboutsummaryrefslogtreecommitdiffstats
path: root/config/user-libssl.m4
diff options
context:
space:
mode:
Diffstat (limited to 'config/user-libssl.m4')
-rw-r--r--config/user-libssl.m412
1 files changed, 12 insertions, 0 deletions
diff --git a/config/user-libssl.m4 b/config/user-libssl.m4
new file mode 100644
index 000000000..b65a51400
--- /dev/null
+++ b/config/user-libssl.m4
@@ -0,0 +1,12 @@
+dnl #
+dnl # Check for libssl. Used for userspace password derivation via PBKDF2.
+dnl #
+AC_DEFUN([ZFS_AC_CONFIG_USER_LIBSSL], [
+ LIBSSL=
+
+ AC_CHECK_HEADER([openssl/evp.h], [], [AC_MSG_FAILURE([
+ *** evp.h missing, libssl-devel package required])])
+
+ AC_SUBST([LIBSSL], ["-lssl -lcrypto"])
+ AC_DEFINE([HAVE_LIBSSL], 1, [Define if you have libssl])
+])