Skip to content

Commit c62bf24

Browse files
Apply suggestions from Petr
Co-authored-by: Petr Viktorin <[email protected]>
1 parent 6b63689 commit c62bf24

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Doc/whatsnew/3.14.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,7 @@ Build changes
13141314
It is still technically possible to build CPython without it for special needs, like bootstrapping.
13151315
Such builds are not supported, but we can accept pull requests to keep them working.
13161316
As an exception, zlib is not required on WASI.
1317-
(Contributed by Stan Ulbrych in :gh:`130297`.)
1317+
(Contributed by Stan Ulbrych and Gregory P. Smith in :gh:`91246`.)
13181318

13191319
.. _whatsnew314-pep761:
13201320

configure.ac

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5350,9 +5350,12 @@ AS_CASE([$ac_sys_system],
53505350
],
53515351
[*], [
53525352
if test "$have_zlib" != "yes"; then
5353-
AC_MSG_ERROR([m4_normalize([
5354-
zlib.h and libz are required. Install your OS's zlib-devel or
5355-
zlib1g-dev equivalent library or get it from https://zlib.net/.
5353+
AC_MSG_WARN([m4_normalize([
5354+
zlib (zlib.h and libz) was not found. Building CPython
5355+
without zlib is not supported, although it might work
5356+
for limited use cases.
5357+
Install your OS's zlib-devel or zlib1g-dev equivalent
5358+
library or get it from https://zlib.net/.
53565359
])])
53575360
fi
53585361
BINASCII_CFLAGS="$ZLIB_CFLAGS"

0 commit comments

Comments
 (0)