aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2022-01-14 21:44:08 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2022-01-14 22:18:37 +0900
commitea53dcd569c3a7aed1d9ad65b520488599120ded (patch)
treee27fc1b509b30a8257a503307efce13e28a720fc /ssl
parent5372a1c07acf182d6336d9fb9215c8a70c953283 (diff)
downloadportable-ea53dcd569c3a7aed1d9ad65b520488599120ded.tar.gz
portable-ea53dcd569c3a7aed1d9ad65b520488599120ded.tar.bz2
portable-ea53dcd569c3a7aed1d9ad65b520488599120ded.zip
Fix build
- Remove pem/pem_seal.c asn1/x_nx509.c asn1/n_pkey.c - Remove evp/m_dss.c evp/m_dss1.c evp/m_ecdsa.c - Add include path crypto/bio to libssl for bio_local.h
Diffstat (limited to 'ssl')
-rw-r--r--ssl/CMakeLists.txt1
-rw-r--r--ssl/Makefile.am2
2 files changed, 3 insertions, 0 deletions
diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt
index a20cb04..cec2417 100644
--- a/ssl/CMakeLists.txt
+++ b/ssl/CMakeLists.txt
@@ -62,6 +62,7 @@ add_library(ssl_obj OBJECT ${SSL_SRC})
62target_include_directories(ssl_obj 62target_include_directories(ssl_obj
63 PRIVATE 63 PRIVATE
64 . 64 .
65 ../crypto/bio
65 ../include/compat 66 ../include/compat
66 PUBLIC 67 PUBLIC
67 ../include) 68 ../include)
diff --git a/ssl/Makefile.am b/ssl/Makefile.am
index 227dfdf..7eb0ccd 100644
--- a/ssl/Makefile.am
+++ b/ssl/Makefile.am
@@ -1,5 +1,7 @@
1include $(top_srcdir)/Makefile.am.common 1include $(top_srcdir)/Makefile.am.common
2 2
3AM_CPPFLAGS += -I$(top_srcdir)/crypto/bio
4
3noinst_LTLIBRARIES = libbs.la 5noinst_LTLIBRARIES = libbs.la
4 6
5if ENABLE_LIBTLS_ONLY 7if ENABLE_LIBTLS_ONLY