mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-05 20:07:47 +03:00
Fix #2220 : MacOSX homebrew build not finding boost libs
This commit is contained in:
parent
e79c695732
commit
331cef16ef
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -152,11 +152,12 @@ else:
|
|||
for include in os.environ.get("INCLUDEDIR", "").split(":"):
|
||||
_include_dirs.append(include)
|
||||
|
||||
_library_dirs += [sysconfig.get_config_var("LIBDIR"), '/opt/local/lib']
|
||||
_library_dirs += [sysconfig.get_config_var("LIBDIR"), '/opt/local/lib', '/usr/local/lib']
|
||||
if osx_check():
|
||||
_include_dirs += [
|
||||
'/opt/local/include/boost-1_35',
|
||||
'/opt/local/include/boost-1_36',
|
||||
'/usr/local/include'
|
||||
'/sw/include/boost-1_35',
|
||||
'/sw/include/boost'
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue