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
be2b907c
Kaydet (Commit)
be2b907c
authored
Ock 08, 2013
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
üst
3a5fc4bc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
13 deletions
+5
-13
NEWS
Misc/NEWS
+2
-0
configure
configure
+0
-0
configure.ac
configure.ac
+3
-13
No files found.
Misc/NEWS
Dosyayı görüntüle @
be2b907c
...
...
@@ -658,6 +658,8 @@ Tests
Build
-----
- Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
- Issue #15923: fix a mistake in asdl_c.py that resulted in a TypeError after
2801bf875a24 (see #15801).
...
...
configure
Dosyayı görüntüle @
be2b907c
This diff is collapsed.
Click to expand it.
configure.ac
Dosyayı görüntüle @
be2b907c
...
...
@@ -2517,25 +2517,15 @@ AC_ARG_ENABLE(ipv6,
[
dnl the check does not work on cross compilation case...
AC_
RUN_IFELSE([AC_LANG_SOURCE
([[ /* AF_INET6 available check */
AC_
COMPILE_IFELSE([AC_LANG_PROGRAM
([[ /* AF_INET6 available check */
#include <sys/types.h>
#include <sys/socket.h>
main()
{
if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
exit(1);
else
exit(0);
}
]])],[
#include <sys/socket.h>]],
[[int domain = AF_INET6;]])],[
AC_MSG_RESULT(yes)
ipv6=yes
],[
AC_MSG_RESULT(no)
ipv6=no
],[
AC_MSG_RESULT(no)
ipv6=no
])
if test "$ipv6" = "yes"; then
...
...
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