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 /tests/Makefile.am | |
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 '')
-rw-r--r-- | tests/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index eb10eec..2737ebb 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -1,7 +1,10 @@ | |||
1 | include $(top_srcdir)/Makefile.am.common | 1 | include $(top_srcdir)/Makefile.am.common |
2 | 2 | ||
3 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes | 3 | AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL |
4 | |||
4 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 | 5 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 |
6 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/bio | ||
7 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes | ||
5 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/x509 | 8 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/x509 |
6 | AM_CPPFLAGS += -I $(top_srcdir)/ssl | 9 | AM_CPPFLAGS += -I $(top_srcdir)/ssl |
7 | AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl | 10 | AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl |