From b43bee6451f0f168cb9c4024c884ca878fd53fc4 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Mon, 9 Sep 2019 22:00:57 -0500 Subject: update portable for latest build changes --- crypto/CMakeLists.txt | 2 ++ crypto/Makefile.am | 3 +++ 2 files changed, 5 insertions(+) (limited to 'crypto') 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( ec/ecp_nist.c ec/ecp_oct.c ec/ecp_smpl.c + ecdh/ecdh_kdf.c ecdh/ech_err.c ecdh/ech_key.c ecdh/ech_lib.c @@ -959,6 +960,7 @@ target_include_directories(crypto bn dsa ec + ecdh ecdsa evp 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 AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec +AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes @@ -555,6 +556,8 @@ libcrypto_la_SOURCES += ec/ecp_smpl.c noinst_HEADERS += ec/ec_lcl.h # ecdh +libcrypto_la_SOURCES += ecdh/ecdh.h +libcrypto_la_SOURCES += ecdh/ecdh_kdf.c libcrypto_la_SOURCES += ecdh/ech_err.c libcrypto_la_SOURCES += ecdh/ech_key.c libcrypto_la_SOURCES += ecdh/ech_lib.c -- cgit v1.2.3-55-g6feb