diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2016-04-21 14:49:39 +0900 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2016-05-02 22:12:53 -0500 |
commit | ad914139c4c6dde31d8a17116e95f1de32d96386 (patch) | |
tree | 0d14475464dbb6e69aeeb54ec0f46fc32ef89ac2 /ssl | |
parent | 6a136f72ffd4f972790961e3ed36f551479e44fb (diff) | |
download | portable-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.am | 2 |
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 | |||
6 | EXTRA_DIST += CMakeLists.txt | 6 | EXTRA_DIST += CMakeLists.txt |
7 | 7 | ||
8 | libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined | 8 | libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined |
9 | libssl_la_LIBADD = ../crypto/libcrypto.la | 9 | libssl_la_LIBADD = $(abs_top_builddir)/crypto/libcrypto.la |
10 | 10 | ||
11 | libssl_la_SOURCES = bio_ssl.c | 11 | libssl_la_SOURCES = bio_ssl.c |
12 | libssl_la_SOURCES += bs_ber.c | 12 | libssl_la_SOURCES += bs_ber.c |