]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-19960: Fix building of zlib on macOS without installed headers (GH-14257)
authorNed Deily <nad@python.org>
Mon, 1 Jul 2019 23:15:09 +0000 (19:15 -0400)
committerGitHub <noreply@github.com>
Mon, 1 Jul 2019 23:15:09 +0000 (19:15 -0400)
commitda7f6dbbf52fe7074360a9eae918806da60139c5
tree9a5fa9d8ad61738ab030ee820974bfb92937aca6
parentbc60c47169d1cb33f6fbe1ed64c09a536e82e1c3
bpo-19960: Fix building of zlib on macOS without installed headers (GH-14257)

When building 2.7 on macOS without system header files installed in
``/usr/include``, a few extension modules dependent on system-supplied
third-party libraries were not being built, most notably zlib.
This situation arose in the past when building without the Command
Line Tools and the option to install header files in the traditional
system locations (like /usr/include).  As of macOS 10.14, the
header files are only available in an SDK so the problem addressed
here affects most 2.7 builds.
Misc/NEWS.d/next/macOS/2019-06-20-01-16-16.bpo-19960.LpLUPF.rst [new file with mode: 0644]
setup.py