Unverified Commit 01493ef2 by Christoph Lobmeyer Committed by GitHub

Fixed install with pip, added new homebrew path (#248)

parent d0921c04
...@@ -242,6 +242,8 @@ class BuildExtCommand(build_ext): ...@@ -242,6 +242,8 @@ class BuildExtCommand(build_ext):
module.include_dirs.append('/usr/local/include') module.include_dirs.append('/usr/local/include')
module.library_dirs.append('/usr/local/lib') module.library_dirs.append('/usr/local/lib')
module.library_dirs.append('/usr/local/opt/openssl/lib') module.library_dirs.append('/usr/local/opt/openssl/lib')
module.include_dirs.append('/opt/homebrew/include')
module.library_dirs.append('/opt/homebrew/opt/openssl/lib')
elif building_for_freebsd: elif building_for_freebsd:
module.define_macros.append(('_GNU_SOURCE', '1')) module.define_macros.append(('_GNU_SOURCE', '1'))
module.define_macros.append(('USE_FREEBSD_PROC', '1')) module.define_macros.append(('USE_FREEBSD_PROC', '1'))
......
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