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
8fbefe28
Kaydet (Commit)
8fbefe28
authored
Tem 19, 2004
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #993173: Enable audioop on 64-bit platforms.
üst
b0c319a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
Setup.dist
Modules/Setup.dist
+1
-0
setup.py
setup.py
+4
-1
No files found.
Modules/Setup.dist
Dosyayı görüntüle @
8fbefe28
...
...
@@ -223,6 +223,7 @@ GLHACK=-Dclear=__GLclear
# Multimedia modules -- off by default.
# These don't work for 64-bit platforms!!!
# #993173 says audioop works on 64-bit platforms, though.
# These represent audio samples or images as strings:
#audioop audioop.c # Operations on audio samples
...
...
setup.py
Dosyayı görüntüle @
8fbefe28
...
...
@@ -407,10 +407,13 @@ class PyBuildExt(build_ext):
# These don't work for 64-bit platforms!!!
# These represent audio samples or images as strings:
# According to #993173, this one should actually work fine on
# 64-bit platforms.
exts
.
append
(
Extension
(
'audioop'
,
[
'audioop.c'
])
)
# Disabled on 64-bit platforms
if
sys
.
maxint
!=
9223372036854775807L
:
# Operations on audio samples
exts
.
append
(
Extension
(
'audioop'
,
[
'audioop.c'
])
)
# Operations on images
exts
.
append
(
Extension
(
'imageop'
,
[
'imageop.c'
])
)
# Read SGI RGB image files (but coded portably)
...
...
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