update portable for latest build changes

This commit is contained in:
Brent Cook 2019-09-09 22:00:57 -05:00
parent d2f8b48ed8
commit b43bee6451
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -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