Detect libimagequant when installed by pacman on MingW

This commit is contained in:
Andrew Murray 2019-04-27 10:42:53 +10:00
parent 6d5b8926be
commit 303465d38a
2 changed files with 8 additions and 3 deletions

View File

@ -439,9 +439,13 @@ class pil_build_ext(build_ext):
# alpine, at least
_add_directory(library_dirs, "/lib")
# on Windows, look for the OpenJPEG libraries in the location that
# the official installer puts them
if sys.platform == "win32":
if PLATFORM_MINGW:
_add_directory(include_dirs,
"C:\\msys64\\mingw32\\include\\libimagequant")
# on Windows, look for the OpenJPEG libraries in the location that
# the official installer puts them
program_files = os.environ.get('ProgramFiles', '')
best_version = (0, 0)
best_path = None

View File

@ -5,7 +5,8 @@ pacman -S --noconfirm mingw32/mingw-w64-i686-python3-pip \
mingw32/mingw-w64-i686-python3-setuptools \
mingw32/mingw-w64-i686-python2-pip \
mingw32/mingw-w64-i686-python2-setuptools \
mingw-w64-i686-libjpeg-turbo
mingw-w64-i686-libjpeg-turbo \
mingw-w64-i686-libimagequant
C:/msys64/mingw32/bin/python3 -m pip install --upgrade pip