Merge pull request #3812 from radarhere/mingw

Detect libimagequant when installed by pacman on MingW
This commit is contained in:
Hugo 2019-05-04 15:58:45 +03:00 committed by GitHub
commit a879c4c1b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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