aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2019-01-19 05:08:40 -0600
committerBrent Cook <busterb@gmail.com>2019-01-19 05:09:13 -0600
commit7c4d13138a455c17b0f7a9e0d113adda639affb0 (patch)
treef1ecb41238baadfd05de1a317a08a200abc12ae8 /crypto
parentf1dfe95403b0423f8de0d72b6632911e5e68c9fd (diff)
downloadportable-7c4d13138a455c17b0f7a9e0d113adda639affb0.tar.gz
portable-7c4d13138a455c17b0f7a9e0d113adda639affb0.tar.bz2
portable-7c4d13138a455c17b0f7a9e0d113adda639affb0.zip
fix build
Diffstat (limited to 'crypto')
-rw-r--r--crypto/CMakeLists.txt4
-rw-r--r--crypto/Makefile.am3
2 files changed, 7 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index 250be82..de932c9 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -359,6 +359,7 @@ set(
359 ec/ec_cvt.c 359 ec/ec_cvt.c
360 ec/ec_err.c 360 ec/ec_err.c
361 ec/ec_key.c 361 ec/ec_key.c
362 ec/ec_kmeth.c
362 ec/ec_lib.c 363 ec/ec_lib.c
363 ec/ec_mult.c 364 ec/ec_mult.c
364 ec/ec_oct.c 365 ec/ec_oct.c
@@ -397,6 +398,7 @@ set(
397 engine/tb_dsa.c 398 engine/tb_dsa.c
398 engine/tb_ecdh.c 399 engine/tb_ecdh.c
399 engine/tb_ecdsa.c 400 engine/tb_ecdsa.c
401 engine/tb_eckey.c
400 engine/tb_pkmeth.c 402 engine/tb_pkmeth.c
401 engine/tb_rand.c 403 engine/tb_rand.c
402 engine/tb_rsa.c 404 engine/tb_rsa.c
@@ -833,6 +835,8 @@ target_include_directories(crypto
833 asn1 835 asn1
834 bn 836 bn
835 dsa 837 dsa
838 ec
839 ecdsa
836 evp 840 evp
837 modes 841 modes
838 ../include/compat 842 ../include/compat
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index d72e182..716003c 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/ecdsa
6AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp 7AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp
7AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes 8AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes
8AM_CPPFLAGS += -I$(top_srcdir)/crypto 9AM_CPPFLAGS += -I$(top_srcdir)/crypto
@@ -520,6 +521,7 @@ libcrypto_la_SOURCES += ec/ec_curve.c
520libcrypto_la_SOURCES += ec/ec_cvt.c 521libcrypto_la_SOURCES += ec/ec_cvt.c
521libcrypto_la_SOURCES += ec/ec_err.c 522libcrypto_la_SOURCES += ec/ec_err.c
522libcrypto_la_SOURCES += ec/ec_key.c 523libcrypto_la_SOURCES += ec/ec_key.c
524libcrypto_la_SOURCES += ec/ec_kmeth.c
523libcrypto_la_SOURCES += ec/ec_lib.c 525libcrypto_la_SOURCES += ec/ec_lib.c
524libcrypto_la_SOURCES += ec/ec_mult.c 526libcrypto_la_SOURCES += ec/ec_mult.c
525libcrypto_la_SOURCES += ec/ec_oct.c 527libcrypto_la_SOURCES += ec/ec_oct.c
@@ -567,6 +569,7 @@ libcrypto_la_SOURCES += engine/tb_digest.c
567libcrypto_la_SOURCES += engine/tb_dsa.c 569libcrypto_la_SOURCES += engine/tb_dsa.c
568libcrypto_la_SOURCES += engine/tb_ecdh.c 570libcrypto_la_SOURCES += engine/tb_ecdh.c
569libcrypto_la_SOURCES += engine/tb_ecdsa.c 571libcrypto_la_SOURCES += engine/tb_ecdsa.c
572libcrypto_la_SOURCES += engine/tb_eckey.c
570libcrypto_la_SOURCES += engine/tb_pkmeth.c 573libcrypto_la_SOURCES += engine/tb_pkmeth.c
571libcrypto_la_SOURCES += engine/tb_rand.c 574libcrypto_la_SOURCES += engine/tb_rand.c
572libcrypto_la_SOURCES += engine/tb_rsa.c 575libcrypto_la_SOURCES += engine/tb_rsa.c