diff options
-rw-r--r-- | crypto/Makefile.am | 7 | ||||
-rw-r--r-- | ssl/Makefile.am | 14 |
2 files changed, 16 insertions, 5 deletions
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 34bdd43..83531db 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -4,6 +4,7 @@ AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL | |||
4 | 4 | ||
5 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 | 5 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 |
6 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn | 6 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn |
7 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/bytestring | ||
7 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec | 8 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec |
8 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh | 9 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh |
9 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa | 10 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa |
@@ -439,6 +440,12 @@ noinst_HEADERS += bn/bn_prime.h | |||
439 | libcrypto_la_SOURCES += buffer/buf_err.c | 440 | libcrypto_la_SOURCES += buffer/buf_err.c |
440 | libcrypto_la_SOURCES += buffer/buf_str.c | 441 | libcrypto_la_SOURCES += buffer/buf_str.c |
441 | libcrypto_la_SOURCES += buffer/buffer.c | 442 | libcrypto_la_SOURCES += buffer/buffer.c |
443 | noinst_HEADERS += bytestring/bytestring.h | ||
444 | |||
445 | # bytestring | ||
446 | libcrypto_la_SOURCES += bytestring/bs_ber.c | ||
447 | libcrypto_la_SOURCES += bytestring/bs_cbb.c | ||
448 | libcrypto_la_SOURCES += bytestring/bs_cbs.c | ||
442 | 449 | ||
443 | # camellia | 450 | # camellia |
444 | libcrypto_la_SOURCES += camellia/cmll_cfb.c | 451 | libcrypto_la_SOURCES += camellia/cmll_cfb.c |
diff --git a/ssl/Makefile.am b/ssl/Makefile.am index d12928e..8a778ca 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am | |||
@@ -1,7 +1,9 @@ | |||
1 | include $(top_srcdir)/Makefile.am.common | 1 | include $(top_srcdir)/Makefile.am.common |
2 | 2 | ||
3 | noinst_LTLIBRARIES = libbs.la | ||
4 | |||
3 | if ENABLE_LIBTLS_ONLY | 5 | if ENABLE_LIBTLS_ONLY |
4 | noinst_LTLIBRARIES = libssl.la | 6 | noinst_LTLIBRARIES += libssl.la |
5 | else | 7 | else |
6 | lib_LTLIBRARIES = libssl.la | 8 | lib_LTLIBRARIES = libssl.la |
7 | endif | 9 | endif |
@@ -21,11 +23,14 @@ libssl_la_objects.mk: Makefile | |||
21 | 23 | ||
22 | libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined -export-symbols $(top_srcdir)/ssl/ssl.sym | 24 | libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined -export-symbols $(top_srcdir)/ssl/ssl.sym |
23 | libssl_la_LIBADD = $(abs_top_builddir)/crypto/libcrypto.la $(PLATFORM_LDADD) | 25 | libssl_la_LIBADD = $(abs_top_builddir)/crypto/libcrypto.la $(PLATFORM_LDADD) |
26 | libssl_la_LIBADD += libbs.la | ||
27 | |||
28 | libbs_la_SOURCES = bs_ber.c | ||
29 | libbs_la_SOURCES += bs_cbb.c | ||
30 | libbs_la_SOURCES += bs_cbs.c | ||
31 | noinst_HEADERS = bytestring.h | ||
24 | 32 | ||
25 | libssl_la_SOURCES = bio_ssl.c | 33 | libssl_la_SOURCES = bio_ssl.c |
26 | libssl_la_SOURCES += bs_ber.c | ||
27 | libssl_la_SOURCES += bs_cbb.c | ||
28 | libssl_la_SOURCES += bs_cbs.c | ||
29 | libssl_la_SOURCES += d1_both.c | 34 | libssl_la_SOURCES += d1_both.c |
30 | libssl_la_SOURCES += d1_lib.c | 35 | libssl_la_SOURCES += d1_lib.c |
31 | libssl_la_SOURCES += d1_pkt.c | 36 | libssl_la_SOURCES += d1_pkt.c |
@@ -75,7 +80,6 @@ libssl_la_SOURCES += tls13_record.c | |||
75 | libssl_la_SOURCES += tls13_record_layer.c | 80 | libssl_la_SOURCES += tls13_record_layer.c |
76 | libssl_la_SOURCES += tls13_server.c | 81 | libssl_la_SOURCES += tls13_server.c |
77 | 82 | ||
78 | noinst_HEADERS = bytestring.h | ||
79 | noinst_HEADERS += srtp.h | 83 | noinst_HEADERS += srtp.h |
80 | noinst_HEADERS += dtls_locl.h | 84 | noinst_HEADERS += dtls_locl.h |
81 | noinst_HEADERS += ssl_locl.h | 85 | noinst_HEADERS += ssl_locl.h |