From: tb Date: Mon, 17 Apr 2023 13:18:00 +0000 (+0000) Subject: c_zlib.c needs bio_local.h with -DZLIB. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=1732c006a2f72ce4389a17eb090ff319f4ad8112;p=openbsd c_zlib.c needs bio_local.h with -DZLIB. Apparently nobody tried to compile libcrypto with ZLI since Jan 2022. Maybe this means that we can unifdef -U ZLIB or maybe not... --- diff --git a/lib/libcrypto/comp/c_zlib.c b/lib/libcrypto/comp/c_zlib.c index 9db0ae26bc2..009737d59d2 100644 --- a/lib/libcrypto/comp/c_zlib.c +++ b/lib/libcrypto/comp/c_zlib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: c_zlib.c,v 1.25 2022/12/26 07:18:51 jmc Exp $ */ +/* $OpenBSD: c_zlib.c,v 1.26 2023/04/17 13:18:00 tb Exp $ */ /* * --------------------------------------------------------------------------- * Major patches to this file were contributed by @@ -122,6 +122,7 @@ #include #include +#include "bio_local.h" #include "comp_local.h" COMP_METHOD *COMP_zlib(void );