diff options
author | jsing <> | 2019-09-09 16:49:03 +0000 |
---|---|---|
committer | jsing <> | 2019-09-09 16:49:03 +0000 |
commit | 0e79c6924e00e48c99118d09ca930eca7cadb690 (patch) | |
tree | 411605cf25c46c73bf8ddcc1d8c7678b35b839e2 /src | |
parent | 79f43db0e9e6910673a15e03e802c3cc28083b8a (diff) | |
download | openbsd-0e79c6924e00e48c99118d09ca930eca7cadb690.tar.gz openbsd-0e79c6924e00e48c99118d09ca930eca7cadb690.tar.bz2 openbsd-0e79c6924e00e48c99118d09ca930eca7cadb690.zip |
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 'src')
-rw-r--r-- | src/lib/libcrypto/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 3f86b2d0a1..04d51055b5 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.35 2019/09/06 17:59:24 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.36 2019/09/09 16:49:03 jsing Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | 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 | |||
289 | ${LCRYPTO_SRC}/cast \ | 289 | ${LCRYPTO_SRC}/cast \ |
290 | ${LCRYPTO_SRC}/chacha \ | 290 | ${LCRYPTO_SRC}/chacha \ |
291 | ${LCRYPTO_SRC}/cmac \ | 291 | ${LCRYPTO_SRC}/cmac \ |
292 | ${LCRYPTO_SRC}/cms \ | ||
292 | ${LCRYPTO_SRC}/comp \ | 293 | ${LCRYPTO_SRC}/comp \ |
293 | ${LCRYPTO_SRC}/conf \ | 294 | ${LCRYPTO_SRC}/conf \ |
294 | ${LCRYPTO_SRC}/curve25519 \ | 295 | ${LCRYPTO_SRC}/curve25519 \ |
@@ -346,6 +347,7 @@ HDRS=\ | |||
346 | ${LCRYPTO_SRC}/cast/cast.h \ | 347 | ${LCRYPTO_SRC}/cast/cast.h \ |
347 | ${LCRYPTO_SRC}/chacha/chacha.h \ | 348 | ${LCRYPTO_SRC}/chacha/chacha.h \ |
348 | ${LCRYPTO_SRC}/cmac/cmac.h \ | 349 | ${LCRYPTO_SRC}/cmac/cmac.h \ |
350 | ${LCRYPTO_SRC}/cms/cms.h \ | ||
349 | ${LCRYPTO_SRC}/comp/comp.h \ | 351 | ${LCRYPTO_SRC}/comp/comp.h \ |
350 | ${LCRYPTO_SRC}/conf/conf.h \ | 352 | ${LCRYPTO_SRC}/conf/conf.h \ |
351 | ${LCRYPTO_SRC}/conf/conf_api.h \ | 353 | ${LCRYPTO_SRC}/conf/conf_api.h \ |