diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2019-09-09 16:49:04 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2019-09-09 16:49:04 +0000 |
commit | a860ef615d648a0ac7b9fce232aa063532735af1 (patch) | |
tree | 7326e334cec3d1e535a8fb1a02039246e13ee13c /lib | |
parent | 935a3f5f99fed55b2ca3bae063a4a927cf785ebd (diff) |
Install the openssl/cms.h header.
This header includes OPENSSL_NO_CMS guards, so even if things find the
header it provides no useful content (and other code should technically
also be using OPENSSL_NO_CMS...).
ok deraadt@ inoguchi@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/Makefile b/lib/libcrypto/Makefile index 3f86b2d0a14..04d51055b55 100644 --- a/lib/libcrypto/Makefile +++ b/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.35 2019/09/06 17:59:24 jsing Exp $ +# $OpenBSD: Makefile,v 1.36 2019/09/09 16:49:03 jsing Exp $ LIB= crypto LIBREBUILD=y @@ -289,6 +289,7 @@ SRCS+= pcy_cache.c pcy_node.c pcy_data.c pcy_map.c pcy_tree.c pcy_lib.c ${LCRYPTO_SRC}/cast \ ${LCRYPTO_SRC}/chacha \ ${LCRYPTO_SRC}/cmac \ + ${LCRYPTO_SRC}/cms \ ${LCRYPTO_SRC}/comp \ ${LCRYPTO_SRC}/conf \ ${LCRYPTO_SRC}/curve25519 \ @@ -346,6 +347,7 @@ HDRS=\ ${LCRYPTO_SRC}/cast/cast.h \ ${LCRYPTO_SRC}/chacha/chacha.h \ ${LCRYPTO_SRC}/cmac/cmac.h \ + ${LCRYPTO_SRC}/cms/cms.h \ ${LCRYPTO_SRC}/comp/comp.h \ ${LCRYPTO_SRC}/conf/conf.h \ ${LCRYPTO_SRC}/conf/conf_api.h \ |