aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2019-09-09 22:00:57 -0500
committerBrent Cook <busterb@gmail.com>2019-09-09 22:00:57 -0500
commitb43bee6451f0f168cb9c4024c884ca878fd53fc4 (patch)
tree1845f84e8d915613ea0d2df86d36684d0843b73b
parentd2f8b48ed8acf011b9e85d5e749ff23d043418d3 (diff)
downloadportable-b43bee6451f0f168cb9c4024c884ca878fd53fc4.tar.gz
portable-b43bee6451f0f168cb9c4024c884ca878fd53fc4.tar.bz2
portable-b43bee6451f0f168cb9c4024c884ca878fd53fc4.zip
update portable for latest build changes
-rw-r--r--crypto/CMakeLists.txt2
-rw-r--r--crypto/Makefile.am3
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
3AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 3AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1
4AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn 4AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn
5AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec 5AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec
6AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh
6AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa 7AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa
7AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp 8AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp
8AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes 9AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes
@@ -555,6 +556,8 @@ libcrypto_la_SOURCES += ec/ecp_smpl.c
555noinst_HEADERS += ec/ec_lcl.h 556noinst_HEADERS += ec/ec_lcl.h
556 557
557# ecdh 558# ecdh
559libcrypto_la_SOURCES += ecdh/ecdh.h
560libcrypto_la_SOURCES += ecdh/ecdh_kdf.c
558libcrypto_la_SOURCES += ecdh/ech_err.c 561libcrypto_la_SOURCES += ecdh/ech_err.c
559libcrypto_la_SOURCES += ecdh/ech_key.c 562libcrypto_la_SOURCES += ecdh/ech_key.c
560libcrypto_la_SOURCES += ecdh/ech_lib.c 563libcrypto_la_SOURCES += ecdh/ech_lib.c