diff options
author | Brent Cook <busterb@gmail.com> | 2019-01-19 05:08:40 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2019-01-19 05:09:13 -0600 |
commit | 7c4d13138a455c17b0f7a9e0d113adda639affb0 (patch) | |
tree | f1ecb41238baadfd05de1a317a08a200abc12ae8 /crypto | |
parent | f1dfe95403b0423f8de0d72b6632911e5e68c9fd (diff) | |
download | portable-7c4d13138a455c17b0f7a9e0d113adda639affb0.tar.gz portable-7c4d13138a455c17b0f7a9e0d113adda639affb0.tar.bz2 portable-7c4d13138a455c17b0f7a9e0d113adda639affb0.zip |
fix build
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/CMakeLists.txt | 4 | ||||
-rw-r--r-- | crypto/Makefile.am | 3 |
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 | |||
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/ecdsa | ||
6 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp | 7 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp |
7 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes | 8 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes |
8 | AM_CPPFLAGS += -I$(top_srcdir)/crypto | 9 | AM_CPPFLAGS += -I$(top_srcdir)/crypto |
@@ -520,6 +521,7 @@ libcrypto_la_SOURCES += ec/ec_curve.c | |||
520 | libcrypto_la_SOURCES += ec/ec_cvt.c | 521 | libcrypto_la_SOURCES += ec/ec_cvt.c |
521 | libcrypto_la_SOURCES += ec/ec_err.c | 522 | libcrypto_la_SOURCES += ec/ec_err.c |
522 | libcrypto_la_SOURCES += ec/ec_key.c | 523 | libcrypto_la_SOURCES += ec/ec_key.c |
524 | libcrypto_la_SOURCES += ec/ec_kmeth.c | ||
523 | libcrypto_la_SOURCES += ec/ec_lib.c | 525 | libcrypto_la_SOURCES += ec/ec_lib.c |
524 | libcrypto_la_SOURCES += ec/ec_mult.c | 526 | libcrypto_la_SOURCES += ec/ec_mult.c |
525 | libcrypto_la_SOURCES += ec/ec_oct.c | 527 | libcrypto_la_SOURCES += ec/ec_oct.c |
@@ -567,6 +569,7 @@ libcrypto_la_SOURCES += engine/tb_digest.c | |||
567 | libcrypto_la_SOURCES += engine/tb_dsa.c | 569 | libcrypto_la_SOURCES += engine/tb_dsa.c |
568 | libcrypto_la_SOURCES += engine/tb_ecdh.c | 570 | libcrypto_la_SOURCES += engine/tb_ecdh.c |
569 | libcrypto_la_SOURCES += engine/tb_ecdsa.c | 571 | libcrypto_la_SOURCES += engine/tb_ecdsa.c |
572 | libcrypto_la_SOURCES += engine/tb_eckey.c | ||
570 | libcrypto_la_SOURCES += engine/tb_pkmeth.c | 573 | libcrypto_la_SOURCES += engine/tb_pkmeth.c |
571 | libcrypto_la_SOURCES += engine/tb_rand.c | 574 | libcrypto_la_SOURCES += engine/tb_rand.c |
572 | libcrypto_la_SOURCES += engine/tb_rsa.c | 575 | libcrypto_la_SOURCES += engine/tb_rsa.c |