Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7981f20

Browse files
- Issue #3754: fix typo in pthread AC_CACHE_VAL.
1 parent 39e70a4 commit 7981f20

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,8 @@ Tests
864864
Build
865865
-----
866866

867+
- Issue #3754: fix typo in pthread AC_CACHE_VAL.
868+
867869
- Issue #17029: Let h2py search the multiarch system include directory.
868870

869871
- Issue #16953: Fix socket module compilation on platforms with

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6056,7 +6056,7 @@ then
60566056
# function available.
60576057
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -pthread" >&5
60586058
$as_echo_n "checking whether $CC accepts -pthread... " >&6; }
6059-
if ${ac_cv_thread+:} false; then :
6059+
if ${ac_cv_pthread+:} false; then :
60606060
$as_echo_n "(cached) " >&6
60616061
else
60626062
ac_save_cc="$CC"

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ then
12831283
# so we need to run a program to see whether it really made the
12841284
# function available.
12851285
AC_MSG_CHECKING(whether $CC accepts -pthread)
1286-
AC_CACHE_VAL(ac_cv_thread,
1286+
AC_CACHE_VAL(ac_cv_pthread,
12871287
[ac_save_cc="$CC"
12881288
CC="$CC -pthread"
12891289
AC_RUN_IFELSE([AC_LANG_SOURCE([[

0 commit comments

Comments
 (0)