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
be47cffc
Kaydet (Commit)
be47cffc
authored
Kas 05, 2013
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #15663: merge build-installer.py changes
üst
b2bc4df4
6fc5f984
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
build-installer.py
Mac/BuildScript/build-installer.py
+5
-5
No files found.
Mac/BuildScript/build-installer.py
Dosyayı görüntüle @
be47cffc
...
...
@@ -193,7 +193,7 @@ def library_recipes():
LT_10_5
=
bool
(
DEPTARGET
<
'10.5'
)
if
DEPTARGET
>
'10.5'
:
if
(
DEPTARGET
>
'10.5'
)
and
(
getVersionTuple
()
>=
(
3
,
4
))
:
result
.
extend
([
dict
(
name
=
"Tcl 8.5.15"
,
...
...
@@ -571,7 +571,7 @@ def checkEnvironment():
# - the traditional version (renamed to _tkinter_library.so) linked
# with /Library/Frameworks/{Tcl,Tk}.framework
# - the default version linked with our builtin copies of Tcl and Tk
if
DEPTARGET
>
'10.5'
:
if
(
DEPTARGET
>
'10.5'
)
and
(
getVersionTuple
()
>=
(
3
,
4
))
:
EXPECTED_SHARED_LIBS
[
'_tkinter_library.so'
]
=
\
EXPECTED_SHARED_LIBS
[
'_tkinter.so'
]
EXPECTED_SHARED_LIBS
[
'_tkinter.so'
]
=
[
...
...
@@ -971,7 +971,7 @@ def buildPython():
# out-of-date and has critical bugs. Save the _tkinter.so that was
# linked with /Library/Frameworks/{Tck,Tk}.framework and build
# another _tkinter.so linked with our builtin Tcl and Tk libs.
if
DEPTARGET
>
'10.5'
:
if
(
DEPTARGET
>
'10.5'
)
and
(
getVersionTuple
()
>=
(
3
,
4
))
:
runCommand
(
"find build -name '_tkinter.so' "
" -execdir mv '{}' _tkinter_library.so
\
;"
)
print
(
"Running make to build builtin _tkinter"
)
...
...
@@ -1012,7 +1012,7 @@ def buildPython():
# users to select which to import by manipulating sys.path
# directly or with PYTHONPATH.
if
DEPTARGET
>
'10.5'
:
if
(
DEPTARGET
>
'10.5'
)
and
(
getVersionTuple
()
>=
(
3
,
4
))
:
TKINTERS
=
[
'builtin'
,
'library'
]
tkinter_moves
=
[(
'_tkinter_'
+
tkn
+
'.so'
,
os
.
path
.
join
(
path_to_lib
,
'lib-tkinter'
,
tkn
))
...
...
@@ -1059,7 +1059,7 @@ def buildPython():
# The files are moved after the entire tree has been walked
# since the shared library checking depends on the files
# having unique names.
if
DEPTARGET
>
'10.5'
:
if
(
DEPTARGET
>
'10.5'
)
and
(
getVersionTuple
()
>=
(
3
,
4
))
:
for
tkm
in
tkinter_moves
:
if
fn
==
tkm
[
0
]:
moves_list
.
append
(
...
...
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