mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 17:54:32 +03:00
Merge pull request #656 from jacknagel/ft
Adjust Homebrew freetype detection logic
This commit is contained in:
commit
e85114ae73
38
setup.py
38
setup.py
|
@ -205,25 +205,31 @@ class pil_build_ext(build_ext):
|
||||||
# darwin ports installation directories
|
# darwin ports installation directories
|
||||||
_add_directory(library_dirs, "/opt/local/lib")
|
_add_directory(library_dirs, "/opt/local/lib")
|
||||||
_add_directory(include_dirs, "/opt/local/include")
|
_add_directory(include_dirs, "/opt/local/include")
|
||||||
|
|
||||||
# if homebrew is installed, use its lib and include directories
|
# if Homebrew is installed, use its lib and include directories
|
||||||
import subprocess
|
import subprocess
|
||||||
try:
|
try:
|
||||||
prefix = subprocess.check_output(['brew', '--prefix'])
|
prefix = subprocess.check_output(['brew', '--prefix']).strip()
|
||||||
if prefix:
|
|
||||||
prefix = prefix.strip()
|
|
||||||
_add_directory(library_dirs, os.path.join(prefix, 'lib'))
|
|
||||||
_add_directory(include_dirs, os.path.join(prefix, 'include'))
|
|
||||||
|
|
||||||
# freetype2 is a key-only brew under opt/
|
|
||||||
_add_directory(library_dirs, os.path.join(prefix, 'opt', 'freetype', 'lib'))
|
|
||||||
_add_directory(include_dirs, os.path.join(prefix, 'opt', 'freetype', 'include'))
|
|
||||||
except:
|
except:
|
||||||
pass # homebrew not installed
|
# Homebrew not installed
|
||||||
|
prefix = None
|
||||||
# freetype2 ships with X11 (after homebrew, so that homebrew freetype is preferred)
|
|
||||||
_add_directory(library_dirs, "/usr/X11/lib")
|
ft_prefix = None
|
||||||
_add_directory(include_dirs, "/usr/X11/include")
|
|
||||||
|
if prefix:
|
||||||
|
# add Homebrew's include and lib directories
|
||||||
|
_add_directory(library_dirs, os.path.join(prefix, 'lib'))
|
||||||
|
_add_directory(include_dirs, os.path.join(prefix, 'include'))
|
||||||
|
ft_prefix = os.path.join(prefix, 'opt', 'freetype')
|
||||||
|
|
||||||
|
if ft_prefix and os.path.isdir(ft_prefix):
|
||||||
|
# freetype might not be linked into Homebrew's prefix
|
||||||
|
_add_directory(library_dirs, os.path.join(ft_prefix, 'lib'))
|
||||||
|
_add_directory(include_dirs, os.path.join(ft_prefix, 'include'))
|
||||||
|
else:
|
||||||
|
# fall back to freetype from XQuartz if Homebrew's freetype is missing
|
||||||
|
_add_directory(library_dirs, "/usr/X11/lib")
|
||||||
|
_add_directory(include_dirs, "/usr/X11/include")
|
||||||
|
|
||||||
elif sys.platform.startswith("linux"):
|
elif sys.platform.startswith("linux"):
|
||||||
arch_tp = (plat.processor(), plat.architecture()[0])
|
arch_tp = (plat.processor(), plat.architecture()[0])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user