aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2014-12-14 20:38:02 -0600
committerBrent Cook <bcook@openbsd.org>2014-12-14 20:38:02 -0600
commitc2dccc1418f878d2d50ea6524169720c66304884 (patch)
treebf50464a7e70c6c726787ee82d96fdee1c48fdc3
parenta29b174e317545cd7b03aa830fc7e366ed15458b (diff)
downloadportable-c2dccc1418f878d2d50ea6524169720c66304884.tar.gz
portable-c2dccc1418f878d2d50ea6524169720c66304884.tar.bz2
portable-c2dccc1418f878d2d50ea6524169720c66304884.zip
add all LIBADD dependencies for tls
The libtool transitive dependency magic does not seem to work for cross-compilation, so explicitly specify them here.
-rw-r--r--tls/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/tls/Makefile.am b/tls/Makefile.am
index cba2b9e..8a88632 100644
--- a/tls/Makefile.am
+++ b/tls/Makefile.am
@@ -7,7 +7,7 @@ EXTRA_DIST = VERSION
7 7
8libtls_la_LDFLAGS = -version-info @LIBTLS_VERSION@ -no-undefined 8libtls_la_LDFLAGS = -version-info @LIBTLS_VERSION@ -no-undefined
9libtls_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) 9libtls_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS)
10libtls_la_LIBADD = ../ssl/libssl.la 10libtls_la_LIBADD = ../crypto/libcrypto.la ../ssl/libssl.la $(PLATFORM_LDADD)
11 11
12libtls_la_SOURCES = tls.c 12libtls_la_SOURCES = tls.c
13libtls_la_SOURCES += tls_client.c 13libtls_la_SOURCES += tls_client.c