diff options
author | jsing <> | 2021-03-21 17:22:37 +0000 |
---|---|---|
committer | jsing <> | 2021-03-21 17:22:37 +0000 |
commit | d80f02f1a1af44e9d5abc9866168fefa7c4a6b7a (patch) | |
tree | cfb587afd0de2bd37eac9e2ee531ed28ceff73c9 | |
parent | 1ecb4854420873b81260e82cb317673609053858 (diff) | |
download | openbsd-d80f02f1a1af44e9d5abc9866168fefa7c4a6b7a.tar.gz openbsd-d80f02f1a1af44e9d5abc9866168fefa7c4a6b7a.tar.bz2 openbsd-d80f02f1a1af44e9d5abc9866168fefa7c4a6b7a.zip |
Build options regress with -DLIBRESSL_INTERNAL.
This is currently needed for DTLS1_2_VERSION, however it should be used
here regardless.
-rw-r--r-- | src/regress/usr.bin/openssl/options/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/usr.bin/openssl/options/Makefile b/src/regress/usr.bin/openssl/options/Makefile index ba3857ad39..ac932e7d71 100644 --- a/src/regress/usr.bin/openssl/options/Makefile +++ b/src/regress/usr.bin/openssl/options/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2014/12/28 14:01:33 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2021/03/21 17:22:37 jsing Exp $ |
2 | 2 | ||
3 | PROG= optionstest | 3 | PROG= optionstest |
4 | SRCS= optionstest.c | 4 | SRCS= optionstest.c |
@@ -7,7 +7,7 @@ LDADD= -lcrypto -lssl | |||
7 | DPADD= ${LIBCRYPTO} ${LIBSSL} | 7 | DPADD= ${LIBCRYPTO} ${LIBSSL} |
8 | 8 | ||
9 | OSSLSRC= ${.CURDIR}/../../../../usr.bin/openssl/ | 9 | OSSLSRC= ${.CURDIR}/../../../../usr.bin/openssl/ |
10 | CFLAGS+= -I${OSSLSRC} | 10 | CFLAGS+= -DLIBRESSL_INTERNAL -I${OSSLSRC} |
11 | 11 | ||
12 | .PATH: ${OSSLSRC} | 12 | .PATH: ${OSSLSRC} |
13 | SRCS+= apps.c | 13 | SRCS+= apps.c |