diff options
author | Brent Cook <busterb@gmail.com> | 2020-10-06 19:40:29 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2020-10-06 19:40:29 -0500 |
commit | b9918fc1ecfa74d6d3d9a3c533603a9677108d24 (patch) | |
tree | 9b0f7db267b0c5346996ceb55e31946862db1b69 /tls | |
parent | 0ef7d54fbcc9f4e51d3f56479df8d2e24bb7c5ae (diff) | |
parent | 5a29b0472d5d0d1aa9936e430a87299fdb0f17ba (diff) | |
download | portable-b9918fc1ecfa74d6d3d9a3c533603a9677108d24.tar.gz portable-b9918fc1ecfa74d6d3d9a3c533603a9677108d24.tar.bz2 portable-b9918fc1ecfa74d6d3d9a3c533603a9677108d24.zip |
Land #610, Statically link libcrypto/ssl into libtls
Diffstat (limited to '')
-rw-r--r-- | tls/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tls/Makefile.am b/tls/Makefile.am index 942abf9..4cea3a2 100644 --- a/tls/Makefile.am +++ b/tls/Makefile.am | |||
@@ -1,5 +1,8 @@ | |||
1 | include $(top_srcdir)/Makefile.am.common | 1 | include $(top_srcdir)/Makefile.am.common |
2 | 2 | ||
3 | -include $(abs_top_builddir)/crypto/libcrypto_la_objects.mk | ||
4 | -include $(abs_top_builddir)/ssl/libssl_la_objects.mk | ||
5 | |||
3 | lib_LTLIBRARIES = libtls.la | 6 | lib_LTLIBRARIES = libtls.la |
4 | 7 | ||
5 | EXTRA_DIST = VERSION | 8 | EXTRA_DIST = VERSION |
@@ -7,8 +10,10 @@ EXTRA_DIST += CMakeLists.txt | |||
7 | EXTRA_DIST += tls.sym | 10 | EXTRA_DIST += tls.sym |
8 | 11 | ||
9 | libtls_la_LDFLAGS = -version-info @LIBTLS_VERSION@ -no-undefined -export-symbols $(top_srcdir)/tls/tls.sym | 12 | libtls_la_LDFLAGS = -version-info @LIBTLS_VERSION@ -no-undefined -export-symbols $(top_srcdir)/tls/tls.sym |
10 | libtls_la_LIBADD = $(abs_top_builddir)/ssl/libssl.la | 13 | libtls_la_LIBADD = $(libcrypto_la_objects) |
11 | libtls_la_LIBADD += $(abs_top_builddir)/crypto/libcrypto.la | 14 | libtls_la_LIBADD += $(libcompat_la_objects) |
15 | libtls_la_LIBADD += $(libcompatnoopt_la_objects) | ||
16 | libtls_la_LIBADD += $(libssl_la_objects) | ||
12 | libtls_la_LIBADD += $(PLATFORM_LDADD) | 17 | libtls_la_LIBADD += $(PLATFORM_LDADD) |
13 | 18 | ||
14 | libtls_la_CPPFLAGS = $(AM_CPPFLAGS) | 19 | libtls_la_CPPFLAGS = $(AM_CPPFLAGS) |