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
a5b642c9
Kaydet (Commit)
a5b642c9
authored
Eki 08, 2009
tarafından
Ronald Oussoren
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Ensure that _scproxy gets build even when --disable-toolbox-glue
is specified on OSX. Fixes a regression in 2.6.3.
üst
15ae41c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
setup.py
setup.py
+9
-9
No files found.
setup.py
Dosyayı görüntüle @
a5b642c9
...
...
@@ -1347,6 +1347,15 @@ class PyBuildExt(build_ext):
else
:
missing
.
append
(
'sunaudiodev'
)
if
platform
==
'darwin'
:
# _scproxy
exts
.
append
(
Extension
(
"_scproxy"
,
[
os
.
path
.
join
(
srcdir
,
"Mac/Modules/_scproxy.c"
)],
extra_link_args
=
[
'-framework'
,
'SystemConfiguration'
,
'-framework'
,
'CoreFoundation'
]))
if
platform
==
'darwin'
and
(
"--disable-toolbox-glue"
not
in
sysconfig
.
get_config_var
(
"CONFIG_ARGS"
)):
...
...
@@ -1400,15 +1409,6 @@ class PyBuildExt(build_ext):
addMacExtension
(
'_CF'
,
core_kwds
,
[
'cf/pycfbridge.c'
])
addMacExtension
(
'autoGIL'
,
core_kwds
)
# _scproxy
sc_kwds
=
{
'extra_compile_args'
:
carbon_extra_compile_args
,
'extra_link_args'
:
[
'-framework'
,
'SystemConfiguration'
,
'-framework'
,
'CoreFoundation'
],
}
addMacExtension
(
"_scproxy"
,
sc_kwds
)
# Carbon
...
...
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