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

Skip to content

Commit 454ea92

Browse files
- Issue #3754: fix typo in pthread AC_CACHE_VAL.
2 parents 900475f + 96a9f89 commit 454ea92

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
@@ -749,6 +749,8 @@ Tests
749749
Build
750750
-----
751751

752+
- Issue #3754: fix typo in pthread AC_CACHE_VAL.
753+
752754
- Issue #15484: Fix _PYTHON_PROJECT_BASE for srcdir != builddir builds;
753755
use _PYTHON_PROJECT_BASE in distutils/sysconfig.py.
754756

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6713,7 +6713,7 @@ then
67136713
# function available.
67146714
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -pthread" >&5
67156715
$as_echo_n "checking whether $CC accepts -pthread... " >&6; }
6716-
if ${ac_cv_thread+:} false; then :
6716+
if ${ac_cv_pthread+:} false; then :
67176717
$as_echo_n "(cached) " >&6
67186718
else
67196719
ac_save_cc="$CC"

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1439,7 +1439,7 @@ then
14391439
# so we need to run a program to see whether it really made the
14401440
# function available.
14411441
AC_MSG_CHECKING(whether $CC accepts -pthread)
1442-
AC_CACHE_VAL(ac_cv_thread,
1442+
AC_CACHE_VAL(ac_cv_pthread,
14431443
[ac_save_cc="$CC"
14441444
CC="$CC -pthread"
14451445
AC_RUN_IFELSE([AC_LANG_SOURCE([[

0 commit comments

Comments
 (0)