Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
0fc2b749
Kaydet (Commit)
0fc2b749
authored
May 18, 2012
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use SSL directory from properties file.
üst
1bddab7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
32 deletions
+8
-32
build_ssl.py
PCbuild/build_ssl.py
+8
-32
No files found.
PCbuild/build_ssl.py
Dosyayı görüntüle @
0fc2b749
...
@@ -64,37 +64,13 @@ def find_working_perl(perls):
...
@@ -64,37 +64,13 @@ def find_working_perl(perls):
print
(
" Please install ActivePerl and ensure it appears on your path"
)
print
(
" Please install ActivePerl and ensure it appears on your path"
)
return
None
return
None
# Locate the best SSL directory given a few roots to look into.
# Fetch SSL directory from VC properties
def
find_best_ssl_dir
(
sources
):
def
get_ssl_dir
():
candidates
=
[]
propfile
=
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'pyproject.vsprops'
))
for
s
in
sources
:
with
open
(
propfile
)
as
f
:
try
:
m
=
re
.
search
(
'openssl-([^"]+)"'
,
f
.
read
())
# note: do not abspath s; the build will fail if any
return
"..
\
..
\
openssl-"
+
m
.
group
(
1
)
# higher up directory name has spaces in it.
fnames
=
os
.
listdir
(
s
)
except
os
.
error
:
fnames
=
[]
for
fname
in
fnames
:
fqn
=
os
.
path
.
join
(
s
,
fname
)
if
os
.
path
.
isdir
(
fqn
)
and
fname
.
startswith
(
"openssl-"
):
candidates
.
append
(
fqn
)
# Now we have all the candidates, locate the best.
best_parts
=
[]
best_name
=
None
for
c
in
candidates
:
parts
=
re
.
split
(
"[.-]"
,
os
.
path
.
basename
(
c
))[
1
:]
# eg - openssl-0.9.7-beta1 - ignore all "beta" or any other qualifiers
if
len
(
parts
)
>=
4
:
continue
if
parts
>
best_parts
:
best_parts
=
parts
best_name
=
c
if
best_name
is
not
None
:
print
(
"Found an SSL directory at '
%
s'"
%
(
best_name
,))
else
:
print
(
"Could not find an SSL directory in '
%
s'"
%
(
sources
,))
sys
.
stdout
.
flush
()
return
best_name
def
create_makefile64
(
makefile
,
m32
):
def
create_makefile64
(
makefile
,
m32
):
"""Create and fix makefile for 64bit
"""Create and fix makefile for 64bit
...
@@ -190,7 +166,7 @@ def main():
...
@@ -190,7 +166,7 @@ def main():
print
(
"No Perl installation was found. Existing Makefiles are used."
)
print
(
"No Perl installation was found. Existing Makefiles are used."
)
sys
.
stdout
.
flush
()
sys
.
stdout
.
flush
()
# Look for SSL 2 levels up from pcbuild - ie, same place zlib etc all live.
# Look for SSL 2 levels up from pcbuild - ie, same place zlib etc all live.
ssl_dir
=
find_best_ssl_dir
((
"..
\\
.."
,)
)
ssl_dir
=
get_ssl_dir
(
)
if
ssl_dir
is
None
:
if
ssl_dir
is
None
:
sys
.
exit
(
1
)
sys
.
exit
(
1
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment