diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-06-01 11:11:47 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-06-01 11:11:47 +0000 |
commit | fcfac1bf1e851d94e7e3a161fe7566d7f463ae0b (patch) | |
tree | 3c79a7477ca8b75058b3260a00b39db809e7a008 /regress/lib/libcrypto/poly1305 | |
parent | 5f2f5dbd27852478adc4b3f4b911e4af4f6e5788 (diff) |
Build these tests with WARNINGS=Yes and -Werror, and do the necessary
fixes to keep building.
Diffstat (limited to 'regress/lib/libcrypto/poly1305')
-rw-r--r-- | regress/lib/libcrypto/poly1305/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/lib/libcrypto/poly1305/Makefile b/regress/lib/libcrypto/poly1305/Makefile index 956b46973a5..47e8065e9a0 100644 --- a/regress/lib/libcrypto/poly1305/Makefile +++ b/regress/lib/libcrypto/poly1305/Makefile @@ -1,7 +1,9 @@ -# $OpenBSD: Makefile,v 1.1 2014/05/14 14:46:35 jsing Exp $ +# $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ PROG= poly1305test LDADD= -lcrypto DPADD= ${LIBCRYPTO} +WARNINGS= Yes +CFLAGS+= -Werror .include <bsd.regress.mk> |