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
94764b24
Kaydet (Commit)
94764b24
authored
Eki 28, 2013
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19373: Apply upstream change to Tk 8.5.15 fixing OS X 10.9
screen refresh problem.
üst
8797dcd9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
build-installer.py
Mac/BuildScript/build-installer.py
+6
-2
issue19373_tk_8_5_15_source.patch
Mac/BuildScript/issue19373_tk_8_5_15_source.patch
+13
-0
No files found.
Mac/BuildScript/build-installer.py
Dosyayı görüntüle @
94764b24
...
...
@@ -215,6 +215,9 @@ def library_recipes():
name
=
"Tk 8.5.15"
,
url
=
"ftp://ftp.tcl.tk/pub/tcl//tcl8_5/tk8.5.15-src.tar.gz"
,
checksum
=
'55b8e33f903210a4e1c8bce0f820657f'
,
patches
=
[
"issue19373_tk_8_5_15_source.patch"
,
],
buildDir
=
"unix"
,
configure_pre
=
[
'--enable-aqua'
,
...
...
@@ -797,8 +800,6 @@ def buildRecipe(recipe, basedir, archList):
workDir
=
extractArchive
(
buildDir
,
sourceArchive
)
os
.
chdir
(
workDir
)
if
'buildDir'
in
recipe
:
os
.
chdir
(
recipe
[
'buildDir'
])
for
patch
in
recipe
.
get
(
'patches'
,
()):
if
isinstance
(
patch
,
tuple
):
...
...
@@ -825,6 +826,9 @@ def buildRecipe(recipe, basedir, archList):
runCommand
(
'sh
%
s'
%
shellQuote
(
fn
))
os
.
unlink
(
fn
)
if
'buildDir'
in
recipe
:
os
.
chdir
(
recipe
[
'buildDir'
])
if
configure
is
not
None
:
configure_args
=
[
"--prefix=/usr/local"
,
...
...
Mac/BuildScript/issue19373_tk_8_5_15_source.patch
0 → 100644
Dosyayı görüntüle @
94764b24
Issue #19373: Patch to Tk 8.5.15 to correct refresh problem on OS x 10.9.
From upstream checkin https://core.tcl.tk/tk/info/5a5abf71f9
--- tk8.5.15/macosx/tkMacOSXDraw.c 2013-09-16 09:41:21.000000000 -0700
+++ Tk_Source_Code-5a5abf71f9fdb0da/macosx/tkMacOSXDraw.c 2013-10-27 13:27:00.000000000 -0700
@@ -1688,6 +1688,7 @@
{
if (dcPtr->context) {
CGContextSynchronize(dcPtr->context);
+ [[dcPtr->view window] setViewsNeedDisplay:YES];
[[dcPtr->view window] enableFlushWindow];
if (dcPtr->focusLocked) {
[dcPtr->view unlockFocus];
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