FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ssh2-python/_setup_libssh2.py at master · ParallelSSH/ssh2-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
ParallelSSH
/
ssh2-python
Public
Notifications
You must be signed in to change notification settings
Fork
76
Star
235
Code
Issues
0
Pull requests
1
Discussions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Security and quality
Insights
Expand file tree
Breadcrumbs
ssh2-python
/
_setup_libssh2.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
46 lines (40 loc) · 1.75 KB
Breadcrumbs
ssh2-python
/
_setup_libssh2.py
Copy path
File metadata and controls
46 lines (40 loc) · 1.75 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# This file is part of ssh2-python.
# Copyright (C) 2017-2021 Panos Kittenis and contributors.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, version 2.1.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import
os
from
glob
import
glob
from
shutil
import
copy2
from
subprocess
import
check_call
from
sys
import
stderr
def
build_ssh2
():
if
bool
(
os
.
environ
.
get
(
'SYSTEM_LIbBSSH2'
,
False
)):
stderr
.
write
(
"Using system libssh2..%s"
%
(
os
.
sep
,))
return
if
os
.
path
.
exists
(
'/usr/local/opt/openssl'
):
os
.
environ
[
'OPENSSL_ROOT_DIR'
]
=
'/usr/local/opt/openssl'
if
os
.
path
.
exists
(
'/opt/homebrew/opt/openssl'
):
os
.
environ
[
'OPENSSL_ROOT_DIR'
]
=
'/opt/homebrew/opt/openssl'
if
not
os
.
path
.
exists
(
'build_dir'
):
os
.
mkdir
(
'build_dir'
)
os
.
chdir
(
'build_dir'
)
check_call
(
'cmake ../libssh2 -DBUILD_SHARED_LIBS=ON
\
-DENABLE_ZLIB_COMPRESSION=ON -DENABLE_CRYPT_NONE=ON
\
-DENABLE_MAC_NONE=ON -DCRYPTO_BACKEND=OpenSSL
\
-DBUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF'
,
shell
=
True
,
env
=
os
.
environ
)
check_call
(
'cmake --build . --config Release'
,
shell
=
True
,
env
=
os
.
environ
)
os
.
chdir
(
'..'
)
for
src
in
glob
(
'build_dir/src/libssh2.so*'
):
copy2
(
src
,
'ssh2/'
)
Back
|
FazBrowse Home
|
New Git URL