diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2022-01-12 20:04:53 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2022-01-12 20:04:53 +0900 |
commit | 71f437de629735e3f54eb0660e419ccc11f7cb7b (patch) | |
tree | b13b0b57836c6d2fc02df36c045c53e01079eea8 /crypto/CMakeLists.txt | |
parent | 7f5ad60d69c5ade1d3b86c91858b16a78a23c751 (diff) | |
download | portable-71f437de629735e3f54eb0660e419ccc11f7cb7b.tar.gz portable-71f437de629735e3f54eb0660e419ccc11f7cb7b.tar.bz2 portable-71f437de629735e3f54eb0660e419ccc11f7cb7b.zip |
Follow upstream file changes and fix build
- Add asn1_lib.c
- Consolidation of ASN.1 code
Add asn1_item.c asn1_old.c
Remove a_d2i_fp.c a_digest.c a_dup.c a_i2d_fp.c a_sign.c a_verify.c
- Merge evp_asn1.c into a_type.c
- Merge asn_pack.c into asn1_item.c
- Rename tls13_key_share.c to tls_key_share.c
- Add bio/bio_local.h dh/dh_local.h ocsp/ocsp_local.h
- Add comp/comp_local.h
- Add define LIBRESSL_CRYPTO_INTERNAL to regress build
Diffstat (limited to 'crypto/CMakeLists.txt')
-rw-r--r-- | crypto/CMakeLists.txt | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 196ae4a..4e68731 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -245,11 +245,7 @@ set( | |||
245 | aes/aes_ofb.c | 245 | aes/aes_ofb.c |
246 | aes/aes_wrap.c | 246 | aes/aes_wrap.c |
247 | asn1/a_bitstr.c | 247 | asn1/a_bitstr.c |
248 | asn1/a_d2i_fp.c | ||
249 | asn1/a_digest.c | ||
250 | asn1/a_dup.c | ||
251 | asn1/a_enum.c | 248 | asn1/a_enum.c |
252 | asn1/a_i2d_fp.c | ||
253 | asn1/a_int.c | 249 | asn1/a_int.c |
254 | asn1/a_mbstr.c | 250 | asn1/a_mbstr.c |
255 | asn1/a_object.c | 251 | asn1/a_object.c |
@@ -257,7 +253,6 @@ set( | |||
257 | asn1/a_pkey.c | 253 | asn1/a_pkey.c |
258 | asn1/a_print.c | 254 | asn1/a_print.c |
259 | asn1/a_pubkey.c | 255 | asn1/a_pubkey.c |
260 | asn1/a_sign.c | ||
261 | asn1/a_strex.c | 256 | asn1/a_strex.c |
262 | asn1/a_string.c | 257 | asn1/a_string.c |
263 | asn1/a_strnid.c | 258 | asn1/a_strnid.c |
@@ -265,19 +260,19 @@ set( | |||
265 | asn1/a_time_tm.c | 260 | asn1/a_time_tm.c |
266 | asn1/a_type.c | 261 | asn1/a_type.c |
267 | asn1/a_utf8.c | 262 | asn1/a_utf8.c |
268 | asn1/a_verify.c | ||
269 | asn1/ameth_lib.c | 263 | asn1/ameth_lib.c |
270 | asn1/asn1_err.c | 264 | asn1/asn1_err.c |
271 | asn1/asn1_gen.c | 265 | asn1/asn1_gen.c |
266 | asn1/asn1_item.c | ||
267 | asn1/asn1_lib.c | ||
268 | asn1/asn1_old.c | ||
272 | asn1/asn1_old_lib.c | 269 | asn1/asn1_old_lib.c |
273 | asn1/asn1_par.c | 270 | asn1/asn1_par.c |
274 | asn1/asn1_types.c | 271 | asn1/asn1_types.c |
275 | asn1/asn_mime.c | 272 | asn1/asn_mime.c |
276 | asn1/asn_moid.c | 273 | asn1/asn_moid.c |
277 | asn1/asn_pack.c | ||
278 | asn1/bio_asn1.c | 274 | asn1/bio_asn1.c |
279 | asn1/bio_ndef.c | 275 | asn1/bio_ndef.c |
280 | asn1/evp_asn1.c | ||
281 | asn1/n_pkey.c | 276 | asn1/n_pkey.c |
282 | asn1/nsseq.c | 277 | asn1/nsseq.c |
283 | asn1/p5_pbe.c | 278 | asn1/p5_pbe.c |
@@ -993,8 +988,10 @@ target_include_directories(crypto_obj | |||
993 | PRIVATE | 988 | PRIVATE |
994 | . | 989 | . |
995 | asn1 | 990 | asn1 |
991 | bio | ||
996 | bn | 992 | bn |
997 | bytestring | 993 | bytestring |
994 | dh | ||
998 | dsa | 995 | dsa |
999 | ec | 996 | ec |
1000 | ecdh | 997 | ecdh |
@@ -1002,6 +999,8 @@ target_include_directories(crypto_obj | |||
1002 | evp | 999 | evp |
1003 | hmac | 1000 | hmac |
1004 | modes | 1001 | modes |
1002 | ocsp | ||
1003 | rsa | ||
1005 | x509 | 1004 | x509 |
1006 | ../include/compat | 1005 | ../include/compat |
1007 | PUBLIC | 1006 | PUBLIC |