Commit fa3f9a38 authored by doko@python.org's avatar doko@python.org

- Issue #3754: fix typo in pthread AC_CACHE_VAL.

parent 9abc830c
...@@ -709,6 +709,8 @@ Tests ...@@ -709,6 +709,8 @@ Tests
Build Build
----- -----
- Issue #3754: fix typo in pthread AC_CACHE_VAL.
- Issue #17029: Let h2py search the multiarch system include directory. - Issue #17029: Let h2py search the multiarch system include directory.
- Issue #16953: Fix socket module compilation on platforms with - Issue #16953: Fix socket module compilation on platforms with
......
...@@ -6064,7 +6064,7 @@ then ...@@ -6064,7 +6064,7 @@ then
# function available. # function available.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -pthread" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -pthread" >&5
$as_echo_n "checking whether $CC accepts -pthread... " >&6; } $as_echo_n "checking whether $CC accepts -pthread... " >&6; }
if ${ac_cv_thread+:} false; then : if ${ac_cv_pthread+:} false; then :
$as_echo_n "(cached) " >&6 $as_echo_n "(cached) " >&6
else else
ac_save_cc="$CC" ac_save_cc="$CC"
......
...@@ -1365,7 +1365,7 @@ then ...@@ -1365,7 +1365,7 @@ then
# so we need to run a program to see whether it really made the # so we need to run a program to see whether it really made the
# function available. # function available.
AC_MSG_CHECKING(whether $CC accepts -pthread) AC_MSG_CHECKING(whether $CC accepts -pthread)
AC_CACHE_VAL(ac_cv_thread, AC_CACHE_VAL(ac_cv_pthread,
[ac_save_cc="$CC" [ac_save_cc="$CC"
CC="$CC -pthread" CC="$CC -pthread"
AC_RUN_IFELSE([AC_LANG_SOURCE([[ AC_RUN_IFELSE([AC_LANG_SOURCE([[
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment