diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-06-15 06:15:00 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-06-15 06:15:00 +0000 |
commit | 24f35c8af4dbb55aa6a8250a0c0677339c02e295 (patch) | |
tree | 3e86cd2c0325c5d4f8101b180d698d18ab89cd53 | |
parent | f21df565c832c45ada69edbfe732759f0011058d (diff) |
Switch to using TLS_INT instead of handrolling it
-rw-r--r-- | regress/lib/libtls/signer/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/regress/lib/libtls/signer/Makefile b/regress/lib/libtls/signer/Makefile index d87f9031840..7110e9ff5e8 100644 --- a/regress/lib/libtls/signer/Makefile +++ b/regress/lib/libtls/signer/Makefile @@ -1,8 +1,7 @@ -# $OpenBSD: Makefile,v 1.2 2022/03/24 15:58:57 tb Exp $ +# $OpenBSD: Makefile,v 1.3 2022/06/15 06:14:59 tb Exp $ PROG= signertest -LDADD= -lcrypto -lssl -LDADD+= -Wl,-Bstatic -ltls -Wl,-Bdynamic +LDADD= -lcrypto -lssl ${TLS_INT} DPADD= ${LIBCRYPTO} ${LIBSSL} ${LIBTLS} WARNINGS= Yes |