aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2016-04-21 14:49:39 +0900
committerBrent Cook <bcook@openbsd.org>2016-05-02 22:12:53 -0500
commitad914139c4c6dde31d8a17116e95f1de32d96386 (patch)
tree0d14475464dbb6e69aeeb54ec0f46fc32ef89ac2 /ssl
parent6a136f72ffd4f972790961e3ed36f551479e44fb (diff)
downloadportable-ad914139c4c6dde31d8a17116e95f1de32d96386.tar.gz
portable-ad914139c4c6dde31d8a17116e95f1de32d96386.tar.bz2
portable-ad914139c4c6dde31d8a17116e95f1de32d96386.zip
fix ld warning "attempted multiple inclusion of file" on Solaris
- To avoid ld warning on Solaris, use abs_top_builddir in Makefile.am
Diffstat (limited to 'ssl')
-rw-r--r--ssl/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/Makefile.am b/ssl/Makefile.am
index 5d038a8..247d5c1 100644
--- a/ssl/Makefile.am
+++ b/ssl/Makefile.am
@@ -6,7 +6,7 @@ EXTRA_DIST = VERSION
6EXTRA_DIST += CMakeLists.txt 6EXTRA_DIST += CMakeLists.txt
7 7
8libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined 8libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined
9libssl_la_LIBADD = ../crypto/libcrypto.la 9libssl_la_LIBADD = $(abs_top_builddir)/crypto/libcrypto.la
10 10
11libssl_la_SOURCES = bio_ssl.c 11libssl_la_SOURCES = bio_ssl.c
12libssl_la_SOURCES += bs_ber.c 12libssl_la_SOURCES += bs_ber.c