diff options
author | Ryan Moeller <freqlabs@FreeBSD.org> | 2020-08-27 13:05:41 +0000 |
---|---|---|
committer | Ryan Moeller <freqlabs@FreeBSD.org> | 2020-08-27 13:05:41 +0000 |
commit | 40d0fd287510e744186261385793f3c208bfcbc7 (patch) | |
tree | c6561ebf78807daf448f397cffb55ea5f8f6db09 /cddl | |
parent | d96e599643a5e16e27ac0552bc802e8b174aacb2 (diff) | |
download | src-40d0fd287510e744186261385793f3c208bfcbc7.tar.gz src-40d0fd287510e744186261385793f3c208bfcbc7.zip |
libzfs: Add missing crypto dependency
libzfs_crypto.c uses PKCS5_PBKDF2_HMAC_SHA1 from libcrypto.
Reported by: John Kennedy
Sponsored by: iXsystems, Inc.
Notes
Notes:
svn path=/head/; revision=364861
Diffstat (limited to 'cddl')
-rw-r--r-- | cddl/lib/libzfs/Makefile | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/cddl/lib/libzfs/Makefile b/cddl/lib/libzfs/Makefile index 6cee41cb732d..cd30840c5b2c 100644 --- a/cddl/lib/libzfs/Makefile +++ b/cddl/lib/libzfs/Makefile @@ -12,7 +12,21 @@ PACKAGE= runtime LIB= zfs -LIBADD= md pthread umem util uutil m avl bsdxml geom nvpair z zfs_core zutil +LIBADD= \ + avl \ + bsdxml \ + crypto \ + geom \ + m \ + md \ + nvpair \ + pthread \ + umem \ + util \ + uutil \ + z \ + zfs_core \ + zutil INCS= libzfs.h USER_C = \ |