summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2018-02-08 10:05:43 +0000
committerjsing <>2018-02-08 10:05:43 +0000
commit7796c51b059bdffbe35761879c56baaa3bb4fa7c (patch)
tree1541cb27378a9f3e9512c58c93c18a9bf9c24847
parent8e35141996b2cefdd01eda47240d4a410a88388e (diff)
downloadopenbsd-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/Makefile4
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
3PROG= configtest 3PROG= configtest
4LDADD= -lcrypto -lssl -ltls 4LDADD= -lcrypto -lssl -ltls
5DPADD= ${LIBCRYPTO} ${LIBSSL} ${LIBTLS} 5DPADD= ${LIBCRYPTO} ${LIBSSL} ${LIBTLS}
6 6
7WARNINGS= Yes 7WARNINGS= Yes
8CFLAGS+= -Werror 8CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror
9 9
10.include <bsd.regress.mk> 10.include <bsd.regress.mk>