diff options
| author | jsing <> | 2014-07-08 15:53:53 +0000 |
|---|---|---|
| committer | jsing <> | 2014-07-08 15:53:53 +0000 |
| commit | 7afb360c691a50252631f701035b15ed0177a3c8 (patch) | |
| tree | 49f2bc722972f2ceb00e71eda3015f5bd53a79eb | |
| parent | 4e034cc02822d664dec3b2e45e8e620fd3301ed3 (diff) | |
| download | openbsd-7afb360c691a50252631f701035b15ed0177a3c8.tar.gz openbsd-7afb360c691a50252631f701035b15ed0177a3c8.tar.bz2 openbsd-7afb360c691a50252631f701035b15ed0177a3c8.zip | |
Include -DLIBRESSL_INTERNAL in regress makefiles.
ok miod@
Diffstat (limited to '')
39 files changed, 78 insertions, 78 deletions
diff --git a/src/regress/lib/libcrypto/aead/Makefile b/src/regress/lib/libcrypto/aead/Makefile index e25112884a..344bdcbbf1 100644 --- a/src/regress/lib/libcrypto/aead/Makefile +++ b/src/regress/lib/libcrypto/aead/Makefile | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:45 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= aeadtest | 3 | PROG= aeadtest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | REGRESS_TARGETS=regress-aeadtest | 9 | REGRESS_TARGETS=regress-aeadtest |
| 10 | 10 | ||
diff --git a/src/regress/lib/libcrypto/aeswrap/Makefile b/src/regress/lib/libcrypto/aeswrap/Makefile index 45234533c5..dbdf48d183 100644 --- a/src/regress/lib/libcrypto/aeswrap/Makefile +++ b/src/regress/lib/libcrypto/aeswrap/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.3 2014/06/01 11:11:45 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= aes_wrap | 3 | PROG= aes_wrap |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/base64/Makefile b/src/regress/lib/libcrypto/base64/Makefile index 6ae6583b38..2cc004c530 100644 --- a/src/regress/lib/libcrypto/base64/Makefile +++ b/src/regress/lib/libcrypto/base64/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:45 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= base64test | 3 | PROG= base64test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/bf/Makefile b/src/regress/lib/libcrypto/bf/Makefile index b43e61dd4b..989b3bb8f4 100644 --- a/src/regress/lib/libcrypto/bf/Makefile +++ b/src/regress/lib/libcrypto/bf/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:45 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= bftest | 3 | PROG= bftest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/bio/Makefile b/src/regress/lib/libcrypto/bio/Makefile index 9955cd4b8f..fab7d44d50 100644 --- a/src/regress/lib/libcrypto/bio/Makefile +++ b/src/regress/lib/libcrypto/bio/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2014/06/22 14:30:52 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= biotest | 3 | PROG= biotest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/bn/general/Makefile b/src/regress/lib/libcrypto/bn/general/Makefile index 506c5d7e9e..d686dabd0e 100644 --- a/src/regress/lib/libcrypto/bn/general/Makefile +++ b/src/regress/lib/libcrypto/bn/general/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2014/06/20 10:30:40 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= bntest | 3 | PROG= bntest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/bn/mont/Makefile b/src/regress/lib/libcrypto/bn/mont/Makefile index 3a946b41a8..eda36001a3 100644 --- a/src/regress/lib/libcrypto/bn/mont/Makefile +++ b/src/regress/lib/libcrypto/bn/mont/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2014/06/20 10:38:22 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= mont | 3 | PROG= mont |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/cast/Makefile b/src/regress/lib/libcrypto/cast/Makefile index 0ee8e85e29..cdb7da5312 100644 --- a/src/regress/lib/libcrypto/cast/Makefile +++ b/src/regress/lib/libcrypto/cast/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:45 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= casttest | 3 | PROG= casttest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/chacha/Makefile b/src/regress/lib/libcrypto/chacha/Makefile index 182879c693..685cbdbab1 100644 --- a/src/regress/lib/libcrypto/chacha/Makefile +++ b/src/regress/lib/libcrypto/chacha/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:45 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= chachatest | 3 | PROG= chachatest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/cts128/Makefile b/src/regress/lib/libcrypto/cts128/Makefile index 31dd52bfce..801d1d7182 100644 --- a/src/regress/lib/libcrypto/cts128/Makefile +++ b/src/regress/lib/libcrypto/cts128/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= cts128test | 3 | PROG= cts128test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/des/Makefile b/src/regress/lib/libcrypto/des/Makefile index b79698341d..356346730a 100644 --- a/src/regress/lib/libcrypto/des/Makefile +++ b/src/regress/lib/libcrypto/des/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= destest | 3 | PROG= destest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/dh/Makefile b/src/regress/lib/libcrypto/dh/Makefile index 66e42eeb31..3eaacc4296 100644 --- a/src/regress/lib/libcrypto/dh/Makefile +++ b/src/regress/lib/libcrypto/dh/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= dhtest | 3 | PROG= dhtest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/dsa/Makefile b/src/regress/lib/libcrypto/dsa/Makefile index b18840dec6..0574c6e282 100644 --- a/src/regress/lib/libcrypto/dsa/Makefile +++ b/src/regress/lib/libcrypto/dsa/Makefile | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= dsatest | 3 | PROG= dsatest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | REGRESS_TARGETS=regress-dsatest | 9 | REGRESS_TARGETS=regress-dsatest |
| 10 | 10 | ||
diff --git a/src/regress/lib/libcrypto/ec/Makefile b/src/regress/lib/libcrypto/ec/Makefile index f0ee5a0465..c3e7975415 100644 --- a/src/regress/lib/libcrypto/ec/Makefile +++ b/src/regress/lib/libcrypto/ec/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= ectest | 3 | PROG= ectest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/ecdh/Makefile b/src/regress/lib/libcrypto/ecdh/Makefile index 433648e93a..b645771f7b 100644 --- a/src/regress/lib/libcrypto/ecdh/Makefile +++ b/src/regress/lib/libcrypto/ecdh/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= ecdhtest | 3 | PROG= ecdhtest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/ecdsa/Makefile b/src/regress/lib/libcrypto/ecdsa/Makefile index 59a43f7bbf..0c2e26a85e 100644 --- a/src/regress/lib/libcrypto/ecdsa/Makefile +++ b/src/regress/lib/libcrypto/ecdsa/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= ecdsatest | 3 | PROG= ecdsatest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/engine/Makefile b/src/regress/lib/libcrypto/engine/Makefile index b63454181b..7f11b0d382 100644 --- a/src/regress/lib/libcrypto/engine/Makefile +++ b/src/regress/lib/libcrypto/engine/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= enginetest | 3 | PROG= enginetest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/evp/Makefile b/src/regress/lib/libcrypto/evp/Makefile index ce012a1849..33c77fc1dd 100644 --- a/src/regress/lib/libcrypto/evp/Makefile +++ b/src/regress/lib/libcrypto/evp/Makefile | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= evptest | 3 | PROG= evptest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | REGRESS_TARGETS=regress-evptest | 9 | REGRESS_TARGETS=regress-evptest |
| 10 | 10 | ||
diff --git a/src/regress/lib/libcrypto/exp/Makefile b/src/regress/lib/libcrypto/exp/Makefile index 3c2cac8976..3914201431 100644 --- a/src/regress/lib/libcrypto/exp/Makefile +++ b/src/regress/lib/libcrypto/exp/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= exptest | 3 | PROG= exptest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/gcm128/Makefile b/src/regress/lib/libcrypto/gcm128/Makefile index 1119fc3c1e..4069d1db31 100644 --- a/src/regress/lib/libcrypto/gcm128/Makefile +++ b/src/regress/lib/libcrypto/gcm128/Makefile | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.3 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= gcm128test | 3 | PROG= gcm128test |
| 4 | SRC= ${.CURDIR}/../../../../lib/libssl/src/crypto/modes | 4 | SRC= ${.CURDIR}/../../../../lib/libssl/src/crypto/modes |
| @@ -7,6 +7,6 @@ CFLAGS+=-I${SRC} | |||
| 7 | LDADD= -lcrypto | 7 | LDADD= -lcrypto |
| 8 | DPADD= ${LIBCRYPTO} | 8 | DPADD= ${LIBCRYPTO} |
| 9 | #WARNINGS= Yes | 9 | #WARNINGS= Yes |
| 10 | #CFLAGS+= -Werror | 10 | #CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 11 | 11 | ||
| 12 | .include <bsd.regress.mk> | 12 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/hmac/Makefile b/src/regress/lib/libcrypto/hmac/Makefile index 727bacc03d..6705336211 100644 --- a/src/regress/lib/libcrypto/hmac/Makefile +++ b/src/regress/lib/libcrypto/hmac/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= hmactest | 3 | PROG= hmactest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/idea/Makefile b/src/regress/lib/libcrypto/idea/Makefile index d689876864..b04ff3d2b5 100644 --- a/src/regress/lib/libcrypto/idea/Makefile +++ b/src/regress/lib/libcrypto/idea/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= ideatest | 3 | PROG= ideatest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/ige/Makefile b/src/regress/lib/libcrypto/ige/Makefile index 3e3fa98e31..a0197e059f 100644 --- a/src/regress/lib/libcrypto/ige/Makefile +++ b/src/regress/lib/libcrypto/ige/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= igetest | 3 | PROG= igetest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/md4/Makefile b/src/regress/lib/libcrypto/md4/Makefile index b142120e12..a46047a40a 100644 --- a/src/regress/lib/libcrypto/md4/Makefile +++ b/src/regress/lib/libcrypto/md4/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= md4test | 3 | PROG= md4test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/md5/Makefile b/src/regress/lib/libcrypto/md5/Makefile index 0c1de513b5..d620dfa48a 100644 --- a/src/regress/lib/libcrypto/md5/Makefile +++ b/src/regress/lib/libcrypto/md5/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= md5test | 3 | PROG= md5test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/mdc2/Makefile b/src/regress/lib/libcrypto/mdc2/Makefile index 9aa57ab23a..67764ec7df 100644 --- a/src/regress/lib/libcrypto/mdc2/Makefile +++ b/src/regress/lib/libcrypto/mdc2/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= mdc2test | 3 | PROG= mdc2test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/pkcs7/Makefile b/src/regress/lib/libcrypto/pkcs7/Makefile index 4257f6b794..aceb169e16 100644 --- a/src/regress/lib/libcrypto/pkcs7/Makefile +++ b/src/regress/lib/libcrypto/pkcs7/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2014/07/02 16:29:36 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= pkcs7test | 3 | PROG= pkcs7test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/poly1305/Makefile b/src/regress/lib/libcrypto/poly1305/Makefile index 47e8065e9a..4e3096c2cd 100644 --- a/src/regress/lib/libcrypto/poly1305/Makefile +++ b/src/regress/lib/libcrypto/poly1305/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= poly1305test | 3 | PROG= poly1305test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/pqueue/Makefile b/src/regress/lib/libcrypto/pqueue/Makefile index 654ec95682..48b9e53183 100644 --- a/src/regress/lib/libcrypto/pqueue/Makefile +++ b/src/regress/lib/libcrypto/pqueue/Makefile | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.5 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.6 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= pq_test | 3 | PROG= pq_test |
| 4 | SRC= ${.CURDIR}/../../../../lib/libssl/src/ssl | 4 | SRC= ${.CURDIR}/../../../../lib/libssl/src/ssl |
| @@ -7,7 +7,7 @@ CFLAGS+= -I${SRC} | |||
| 7 | LDADD= -lssl -lcrypto | 7 | LDADD= -lssl -lcrypto |
| 8 | DPADD= ${LIBSSL} ${LIBCRYPTO} | 8 | DPADD= ${LIBSSL} ${LIBCRYPTO} |
| 9 | WARNINGS= Yes | 9 | WARNINGS= Yes |
| 10 | CFLAGS+= -Werror | 10 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 11 | 11 | ||
| 12 | REGRESS_TARGETS= regress-pq_test | 12 | REGRESS_TARGETS= regress-pq_test |
| 13 | 13 | ||
diff --git a/src/regress/lib/libcrypto/rand/Makefile b/src/regress/lib/libcrypto/rand/Makefile index 4ceadcee0a..0235a43ef1 100644 --- a/src/regress/lib/libcrypto/rand/Makefile +++ b/src/regress/lib/libcrypto/rand/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= randtest | 3 | PROG= randtest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/rc2/Makefile b/src/regress/lib/libcrypto/rc2/Makefile index 91d642ac32..99e7c748d7 100644 --- a/src/regress/lib/libcrypto/rc2/Makefile +++ b/src/regress/lib/libcrypto/rc2/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= rc2test | 3 | PROG= rc2test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/rc4/Makefile b/src/regress/lib/libcrypto/rc4/Makefile index 37651f7f2d..bbb62d328b 100644 --- a/src/regress/lib/libcrypto/rc4/Makefile +++ b/src/regress/lib/libcrypto/rc4/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= rc4test | 3 | PROG= rc4test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/rmd/Makefile b/src/regress/lib/libcrypto/rmd/Makefile index 8f92e69ac1..843b6b54c9 100644 --- a/src/regress/lib/libcrypto/rmd/Makefile +++ b/src/regress/lib/libcrypto/rmd/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= rmdtest | 3 | PROG= rmdtest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/sha/Makefile b/src/regress/lib/libcrypto/sha/Makefile index 6863772ff8..249fb9956e 100644 --- a/src/regress/lib/libcrypto/sha/Makefile +++ b/src/regress/lib/libcrypto/sha/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= shatest | 3 | PROG= shatest |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/sha1/Makefile b/src/regress/lib/libcrypto/sha1/Makefile index 57530ea384..2bb0b45ec9 100644 --- a/src/regress/lib/libcrypto/sha1/Makefile +++ b/src/regress/lib/libcrypto/sha1/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= sha1test | 3 | PROG= sha1test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/sha256/Makefile b/src/regress/lib/libcrypto/sha256/Makefile index b97b9926de..6e5f9d714b 100644 --- a/src/regress/lib/libcrypto/sha256/Makefile +++ b/src/regress/lib/libcrypto/sha256/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= sha256test | 3 | PROG= sha256test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/sha512/Makefile b/src/regress/lib/libcrypto/sha512/Makefile index 31658f9f07..354860eae1 100644 --- a/src/regress/lib/libcrypto/sha512/Makefile +++ b/src/regress/lib/libcrypto/sha512/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= sha512test | 3 | PROG= sha512test |
| 4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
| 5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libcrypto/utf8/Makefile b/src/regress/lib/libcrypto/utf8/Makefile index b5767ac204..996f5467af 100644 --- a/src/regress/lib/libcrypto/utf8/Makefile +++ b/src/regress/lib/libcrypto/utf8/Makefile | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.3 2014/06/01 11:11:46 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= utf8test | 3 | PROG= utf8test |
| 4 | CPPFLAGS+=-I${.CURDIR}/../../../../lib/libssl/src/crypto/asn1 | 4 | CPPFLAGS+=-I${.CURDIR}/../../../../lib/libssl/src/crypto/asn1 |
| 5 | LDADD= -lcrypto | 5 | LDADD= -lcrypto |
| 6 | DPADD= ${LIBCRYPTO} | 6 | DPADD= ${LIBCRYPTO} |
| 7 | WARNINGS=Yes | 7 | WARNINGS=Yes |
| 8 | CFLAGS+= -Werror | 8 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 9 | 9 | ||
| 10 | .include <bsd.regress.mk> | 10 | .include <bsd.regress.mk> |
diff --git a/src/regress/lib/libssl/ssl/Makefile b/src/regress/lib/libssl/ssl/Makefile index b7359155da..581341c310 100644 --- a/src/regress/lib/libssl/ssl/Makefile +++ b/src/regress/lib/libssl/ssl/Makefile | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2014/06/01 14:47:14 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ |
| 2 | 2 | ||
| 3 | PROG= ssltest | 3 | PROG= ssltest |
| 4 | LDADD= -lcrypto -lssl | 4 | LDADD= -lcrypto -lssl |
| 5 | DPADD= ${LIBCRYPTO} ${LIBSSL} | 5 | DPADD= ${LIBCRYPTO} ${LIBSSL} |
| 6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
| 7 | CFLAGS+= -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror |
| 8 | 8 | ||
| 9 | REGRESS_TARGETS=regress-ssltest | 9 | REGRESS_TARGETS=regress-ssltest |
| 10 | 10 | ||
