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
fa821814
Kaydet (Commit)
fa821814
authored
Eyl 25, 2002
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Disable building of the fpectl module -- it's dangerous or useless
except in the hands of experts. Will backport to 2.2.2.
üst
111ee320
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
14 deletions
+15
-14
setup.py
setup.py
+15
-14
No files found.
setup.py
Dosyayı görüntüle @
fa821814
...
...
@@ -652,20 +652,21 @@ class PyBuildExt(build_ext):
# The library to link fpectl with is platform specific.
# Choose *one* of the options below for fpectl:
if
platform
==
'irix5'
:
# For SGI IRIX (tested on 5.3):
exts
.
append
(
Extension
(
'fpectl'
,
[
'fpectlmodule.c'
],
libraries
=
[
'fpe'
])
)
elif
0
:
# XXX how to detect SunPro?
# For Solaris with SunPro compiler (tested on Solaris 2.5
# with SunPro C 4.2): (Without the compiler you don't have
# -lsunmath.)
#fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
pass
else
:
# For other systems: see instructions in fpectlmodule.c.
#fpectl fpectlmodule.c ...
exts
.
append
(
Extension
(
'fpectl'
,
[
'fpectlmodule.c'
])
)
# Disabled; it's dangerous or useless except in the hands of experts.
## if platform == 'irix5':
## # For SGI IRIX (tested on 5.3):
## exts.append( Extension('fpectl', ['fpectlmodule.c'],
## libraries=['fpe']) )
## elif 0: # XXX how to detect SunPro?
## # For Solaris with SunPro compiler (tested on Solaris 2.5
## # with SunPro C 4.2): (Without the compiler you don't have
## # -lsunmath.)
## #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
## pass
## else:
## # For other systems: see instructions in fpectlmodule.c.
## #fpectl fpectlmodule.c ...
## exts.append( Extension('fpectl', ['fpectlmodule.c']) )
# Andrew Kuchling's zlib module. Note that some versions of zlib
...
...
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