Commit 02c98aee by plusvic

Add /usr/local/lib and /usr/local/include to library and include paths respectively

parent 00d3ce34
...@@ -159,6 +159,8 @@ class BuildExtCommand(build_ext): ...@@ -159,6 +159,8 @@ class BuildExtCommand(build_ext):
building_for_osx = True building_for_osx = True
module.include_dirs.append('/opt/local/include') module.include_dirs.append('/opt/local/include')
module.library_dirs.append('/opt/local/lib') module.library_dirs.append('/opt/local/lib')
module.include_dirs.append('/usr/local/include')
module.library_dirs.append('/usr/local/lib')
else: else:
building_for_osx = False building_for_osx = False
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment