We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1211a4e commit 95b26f5Copy full SHA for 95b26f5
setup.py
@@ -61,7 +61,10 @@
61
62
runtime_library_dirs = ["$ORIGIN/."] if not SYSTEM_LIBSSH2 else None
63
_lib_dir = os.path.abspath("./build_dir/src") if not SYSTEM_LIBSSH2 else "/usr/local/lib"
64
-include_dirs = ["libssh2/include"] if ON_WINDOWS or not SYSTEM_LIBSSH2 else ["/usr/local/include"]
+include_dirs = ["libssh2/include"] if ON_WINDOWS or not SYSTEM_LIBSSH2 else [
65
+ "/usr/local/include",
66
+ "/opt/local/include",
67
+]
68
69
extensions = [
70
Extension(sources[i].split('.')[0].replace(os.path.sep, '.'),
0 commit comments