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
0f857a1d
Commit
0f857a1d
authored
Jun 30, 2012
by
doko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Issue #3754: Some unrelated configure.ac cleanups.
parent
8f591bbd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
7 deletions
+16
-7
configure
configure
+9
-4
configure.ac
configure.ac
+7
-3
No files found.
configure
View file @
0f857a1d
...
...
@@ -9860,13 +9860,13 @@ fi
if
test
-z
"
$with_pymalloc
"
then
with_pymalloc
=
"yes"
ABIFLAGS
=
"
${
ABIFLAGS
}
m"
fi
if
test
"
$with_pymalloc
"
!=
"no"
then
$as_echo
"#define WITH_PYMALLOC 1"
>>
confdefs.h
ABIFLAGS
=
"
${
ABIFLAGS
}
m"
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$with_pymalloc
"
>
&5
$as_echo
"
$with_pymalloc
"
>
&6
;
}
...
...
@@ -9964,8 +9964,13 @@ then
else
MACHDEP_OBJS
=
"
$MACHDEP_OBJS
$extra_machdep_objs
"
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: MACHDEP_OBJS"
>
&5
$as_echo
"MACHDEP_OBJS"
>
&6
;
}
if
test
-z
"
$MACHDEP_OBJS
"
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: none"
>
&5
$as_echo
"none"
>
&6
;
}
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$MACHDEP_OBJS
"
>
&5
$as_echo
"
$MACHDEP_OBJS
"
>
&6
;
}
fi
# checks for library functions
for
ac_func
in
alarm accept4 setitimer getitimer bind_textdomain_codeset
chown
\
...
...
@@ -11497,7 +11502,7 @@ fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_cv_buggy_getaddrinfo
"
>
&5
$as_echo
"
$ac_cv_buggy_getaddrinfo
"
>
&6
;
}
if
test
$have_getaddrinfo
=
no
-o
"
$ac_cv_buggy_getaddrinfo
"
=
yes
if
test
$have_getaddrinfo
=
no
||
test
"
$ac_cv_buggy_getaddrinfo
"
=
yes
then
if
test
$ipv6
=
yes
then
...
...
configure.ac
View file @
0f857a1d
...
...
@@ -2594,12 +2594,12 @@ AC_ARG_WITH(pymalloc,
if test -z "$with_pymalloc"
then
with_pymalloc="yes"
ABIFLAGS="${ABIFLAGS}m"
fi
if test "$with_pymalloc" != "no"
then
AC_DEFINE(WITH_PYMALLOC, 1,
[Define if you want to compile in Python-specific mallocs])
ABIFLAGS="${ABIFLAGS}m"
fi
AC_MSG_RESULT($with_pymalloc)
...
...
@@ -2668,7 +2668,11 @@ then
else
MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
fi
AC_MSG_RESULT(MACHDEP_OBJS)
if test -z "$MACHDEP_OBJS"; then
AC_MSG_RESULT([none])
else
AC_MSG_RESULT([$MACHDEP_OBJS])
fi
# checks for library functions
AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
...
...
@@ -3128,7 +3132,7 @@ fi
AC_MSG_RESULT($ac_cv_buggy_getaddrinfo)
if test $have_getaddrinfo = no
-o
"$ac_cv_buggy_getaddrinfo" = yes
if test $have_getaddrinfo = no
|| test
"$ac_cv_buggy_getaddrinfo" = yes
then
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