diff options
author | jsing <> | 2018-02-08 10:05:43 +0000 |
---|---|---|
committer | jsing <> | 2018-02-08 10:05:43 +0000 |
commit | 7796c51b059bdffbe35761879c56baaa3bb4fa7c (patch) | |
tree | 1541cb27378a9f3e9512c58c93c18a9bf9c24847 | |
parent | 8e35141996b2cefdd01eda47240d4a410a88388e (diff) | |
download | openbsd-7796c51b059bdffbe35761879c56baaa3bb4fa7c.tar.gz openbsd-7796c51b059bdffbe35761879c56baaa3bb4fa7c.tar.bz2 openbsd-7796c51b059bdffbe35761879c56baaa3bb4fa7c.zip |
Tweak compiler flags to include -DLIBRESSL_INTERNAL and make more warnings
fatal.
-rw-r--r-- | src/regress/lib/libtls/config/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libtls/config/Makefile b/src/regress/lib/libtls/config/Makefile index 846d1ab0e5..02c36c5d93 100644 --- a/src/regress/lib/libtls/config/Makefile +++ b/src/regress/lib/libtls/config/Makefile | |||
@@ -1,10 +1,10 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2017/12/09 16:43:09 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2018/02/08 10:05:43 jsing Exp $ |
2 | 2 | ||
3 | PROG= configtest | 3 | PROG= configtest |
4 | LDADD= -lcrypto -lssl -ltls | 4 | LDADD= -lcrypto -lssl -ltls |
5 | DPADD= ${LIBCRYPTO} ${LIBSSL} ${LIBTLS} | 5 | DPADD= ${LIBCRYPTO} ${LIBSSL} ${LIBTLS} |
6 | 6 | ||
7 | WARNINGS= Yes | 7 | WARNINGS= Yes |
8 | CFLAGS+= -Werror | 8 | CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror |
9 | 9 | ||
10 | .include <bsd.regress.mk> | 10 | .include <bsd.regress.mk> |