diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2018-02-08 10:05:44 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2018-02-08 10:05:44 +0000 |
commit | 547c57ad07d50f27a88cd77960b00e91c4572409 (patch) | |
tree | c62cb7a9025205a0c48f58b2976248be60a9e1c9 /regress | |
parent | 131387ddf547f0f393ad90b4add0564331cdad2b (diff) |
Tweak compiler flags to include -DLIBRESSL_INTERNAL and make more warnings
fatal.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libtls/config/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libtls/config/Makefile b/regress/lib/libtls/config/Makefile index 846d1ab0e5b..02c36c5d93d 100644 --- a/regress/lib/libtls/config/Makefile +++ b/regress/lib/libtls/config/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.1 2017/12/09 16:43:09 jsing Exp $ +# $OpenBSD: Makefile,v 1.2 2018/02/08 10:05:43 jsing Exp $ PROG= configtest LDADD= -lcrypto -lssl -ltls DPADD= ${LIBCRYPTO} ${LIBSSL} ${LIBTLS} WARNINGS= Yes -CFLAGS+= -Werror +CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror .include <bsd.regress.mk> |