diff options
author | Brent Cook <busterb@gmail.com> | 2019-09-09 22:00:57 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2019-09-09 22:00:57 -0500 |
commit | b43bee6451f0f168cb9c4024c884ca878fd53fc4 (patch) | |
tree | 1845f84e8d915613ea0d2df86d36684d0843b73b | |
parent | d2f8b48ed8acf011b9e85d5e749ff23d043418d3 (diff) | |
download | portable-b43bee6451f0f168cb9c4024c884ca878fd53fc4.tar.gz portable-b43bee6451f0f168cb9c4024c884ca878fd53fc4.tar.bz2 portable-b43bee6451f0f168cb9c4024c884ca878fd53fc4.zip |
update portable for latest build changes
-rw-r--r-- | crypto/CMakeLists.txt | 2 | ||||
-rw-r--r-- | crypto/Makefile.am | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 3b5955c..9509c33 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -468,6 +468,7 @@ set( | |||
468 | ec/ecp_nist.c | 468 | ec/ecp_nist.c |
469 | ec/ecp_oct.c | 469 | ec/ecp_oct.c |
470 | ec/ecp_smpl.c | 470 | ec/ecp_smpl.c |
471 | ecdh/ecdh_kdf.c | ||
471 | ecdh/ech_err.c | 472 | ecdh/ech_err.c |
472 | ecdh/ech_key.c | 473 | ecdh/ech_key.c |
473 | ecdh/ech_lib.c | 474 | ecdh/ech_lib.c |
@@ -959,6 +960,7 @@ target_include_directories(crypto | |||
959 | bn | 960 | bn |
960 | dsa | 961 | dsa |
961 | ec | 962 | ec |
963 | ecdh | ||
962 | ecdsa | 964 | ecdsa |
963 | evp | 965 | evp |
964 | modes | 966 | modes |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index ab4ceb1..2e42918 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -3,6 +3,7 @@ include $(top_srcdir)/Makefile.am.common | |||
3 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 | 3 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 |
4 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn | 4 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn |
5 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec | 5 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec |
6 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh | ||
6 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa | 7 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa |
7 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp | 8 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp |
8 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes | 9 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes |
@@ -555,6 +556,8 @@ libcrypto_la_SOURCES += ec/ecp_smpl.c | |||
555 | noinst_HEADERS += ec/ec_lcl.h | 556 | noinst_HEADERS += ec/ec_lcl.h |
556 | 557 | ||
557 | # ecdh | 558 | # ecdh |
559 | libcrypto_la_SOURCES += ecdh/ecdh.h | ||
560 | libcrypto_la_SOURCES += ecdh/ecdh_kdf.c | ||
558 | libcrypto_la_SOURCES += ecdh/ech_err.c | 561 | libcrypto_la_SOURCES += ecdh/ech_err.c |
559 | libcrypto_la_SOURCES += ecdh/ech_key.c | 562 | libcrypto_la_SOURCES += ecdh/ech_key.c |
560 | libcrypto_la_SOURCES += ecdh/ech_lib.c | 563 | libcrypto_la_SOURCES += ecdh/ech_lib.c |