Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f6fd794f
Commit
f6fd794f
authored
Jan 08, 2013
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
parent
21b30827
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
31 deletions
+12
-31
Misc/NEWS
Misc/NEWS
+2
-0
configure
configure
+7
-18
configure.ac
configure.ac
+3
-13
No files found.
Misc/NEWS
View file @
f6fd794f
...
...
@@ -821,6 +821,8 @@ Tests
Build
-----
- Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
- Issue #16593: Have BSD 'make -s' do the right thing, thanks to Daniel Shahaf
- Issue #16262: fix out-of-src-tree builds, if mercurial is not installed.
...
...
configure
View file @
f6fd794f
...
...
@@ -9103,28 +9103,20 @@ $as_echo "yes" >&6; }
esac
else
if
test
"
$cross_compiling
"
=
yes
;
then
:
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no"
>
&5
$as_echo
"no"
>
&6
;
}
ipv6
=
no
else
cat
confdefs.h -
<<
_ACEOF
>conftest.
$ac_ext
/* end confdefs.h. */
/* AF_INET6 available check */
#include <sys/types.h>
#include <sys/socket.h>
main()
int
main ()
{
if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
exit(1);
else
exit(0);
int domain = AF_INET6;
;
return 0;
}
_ACEOF
if
ac_fn_c_try_
run
"
$LINENO
"
;
then
:
if
ac_fn_c_try_
compile
"
$LINENO
"
;
then
:
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: yes"
>
&5
$as_echo
"yes"
>
&6
;
}
...
...
@@ -9137,10 +9129,7 @@ $as_echo "no" >&6; }
ipv6
=
no
fi
rm
-f
core
*
.core core.conftest.
*
gmon.out bb.out conftest
$ac_exeext
\
conftest.
$ac_objext
conftest.beam conftest.
$ac_ext
fi
rm
-f
core conftest.err conftest.
$ac_objext
conftest.
$ac_ext
if
test
"
$ipv6
"
=
"yes"
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking if RFC2553 API is available"
>
&5
...
...
configure.ac
View file @
f6fd794f
...
...
@@ -2346,25 +2346,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