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
500ce233
Kaydet (Commit)
500ce233
authored
Ara 30, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
only build the nis module when the headers are found #7589
üst
3c8a24e6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
Misc/NEWS
+3
-0
setup.py
setup.py
+1
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
500ce233
...
@@ -83,6 +83,9 @@ C-API
...
@@ -83,6 +83,9 @@ C-API
Build
Build
-----
-----
- Issue #7589: Only build the nis module when the correct header files are
found.
- Switch to OpenSSL 0.9.8l on Windows.
- Switch to OpenSSL 0.9.8l on Windows.
- Issue #7541: when using ``python-config`` with a framework install the compiler might
- Issue #7541: when using ``python-config`` with a framework install the compiler might
...
...
setup.py
Dosyayı görüntüle @
500ce233
...
@@ -1088,7 +1088,7 @@ class PyBuildExt(build_ext):
...
@@ -1088,7 +1088,7 @@ class PyBuildExt(build_ext):
missing
.
append
(
'resource'
)
missing
.
append
(
'resource'
)
# Sun yellow pages. Some systems have the functions in libc.
# Sun yellow pages. Some systems have the functions in libc.
if
platform
not
in
[
'cygwin'
,
'atheos'
,
'qnx6'
]:
if
platform
not
in
[
'cygwin'
,
'atheos'
,
'qnx6'
]
and
find_file
(
'rpcsvc/yp_prot.h'
,
inc_dirs
,
[])
is
not
None
:
if
(
self
.
compiler_obj
.
find_library_file
(
lib_dirs
,
'nsl'
)):
if
(
self
.
compiler_obj
.
find_library_file
(
lib_dirs
,
'nsl'
)):
libs
=
[
'nsl'
]
libs
=
[
'nsl'
]
else
:
else
:
...
...
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