mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-26 17:24:31 +03:00
following rename of find_library_file to _find_library_file
This commit is contained in:
parent
455304a78c
commit
dd78115f0a
4
setup.py
4
setup.py
|
@ -231,9 +231,9 @@ class pil_build_ext(build_ext):
|
|||
|
||||
if _find_library_file(self, "tiff"):
|
||||
feature.tiff = "tiff"
|
||||
if sys.platform == "win32" and find_library_file(self, "libtiff"):
|
||||
if sys.platform == "win32" and _find_library_file(self, "libtiff"):
|
||||
feature.tiff = "libtiff"
|
||||
if sys.platform == "darwin" and find_library_file(self, "libtiff"):
|
||||
if sys.platform == "darwin" and _find_library_file(self, "libtiff"):
|
||||
feature.tiff = "libtiff"
|
||||
|
||||
if _find_library_file(self, "freetype"):
|
||||
|
|
Loading…
Reference in New Issue
Block a user