summaryrefslogtreecommitdiff
path: root/regress/lib/libtls
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2016-11-04 17:51:55 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2016-11-04 17:51:55 +0000
commit597bda12c72cf0c7ba557f20e0b53630a87afc8a (patch)
tree7d0cd4ba04b3b48539a85dce807959eaa75974d7 /regress/lib/libtls
parent1770b50c2510982b01bc1d9e26b02ccd2a8cbe1f (diff)
Some tests require internal symbols; have them link with the static
libssl or libtls so they can continue to see them after the shared library namespace is cleaned up ok jsing@
Diffstat (limited to 'regress/lib/libtls')
-rw-r--r--regress/lib/libtls/verify/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libtls/verify/Makefile b/regress/lib/libtls/verify/Makefile
index 94bc9760065..c66348a8a6e 100644
--- a/regress/lib/libtls/verify/Makefile
+++ b/regress/lib/libtls/verify/Makefile
@@ -1,7 +1,7 @@
-# $OpenBSD: Makefile,v 1.1 2014/11/01 11:55:27 jsing Exp $
+# $OpenBSD: Makefile,v 1.2 2016/11/04 17:51:54 guenther Exp $
PROG= verifytest
-LDADD= -lcrypto -lssl -ltls
+LDADD= -lcrypto -lssl -Wl,-Bstatic -ltls -Wl,-Bdynamic
DPADD= ${LIBCRYPTO} ${LIBSSL} ${LIBTLS}
WARNINGS= Yes