diff options
author | doko@python.org <doko@python.org> | 2013-01-25 14:34:34 (GMT) |
---|---|---|
committer | doko@python.org <doko@python.org> | 2013-01-25 14:34:34 (GMT) |
commit | 96a9f89b2d67caf622c311e567d068a24962762a (patch) | |
tree | 411dfd9df1af77973a64c39a712295e17f54eebe | |
parent | d5187c2b0cd8452aee4b6cfa4bb882f4ab67ca43 (diff) | |
parent | 7981f202931ebef466464e172625a75161bb5fa0 (diff) | |
download | cpython-96a9f89b2d67caf622c311e567d068a24962762a.zip cpython-96a9f89b2d67caf622c311e567d068a24962762a.tar.gz cpython-96a9f89b2d67caf622c311e567d068a24962762a.tar.bz2 |
- Issue #3754: fix typo in pthread AC_CACHE_VAL.
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -536,6 +536,8 @@ Tests Build ----- +- Issue #3754: fix typo in pthread AC_CACHE_VAL. + - Issue #15484: Fix _PYTHON_PROJECT_BASE for srcdir != builddir builds; use _PYTHON_PROJECT_BASE in distutils/sysconfig.py. @@ -6713,7 +6713,7 @@ then # function available. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -pthread" >&5 $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 else ac_save_cc="$CC" diff --git a/configure.ac b/configure.ac index 9867529..75eb5da 100644 --- a/configure.ac +++ b/configure.ac @@ -1439,7 +1439,7 @@ then # so we need to run a program to see whether it really made the # function available. AC_MSG_CHECKING(whether $CC accepts -pthread) -AC_CACHE_VAL(ac_cv_thread, +AC_CACHE_VAL(ac_cv_pthread, [ac_save_cc="$CC" CC="$CC -pthread" AC_RUN_IFELSE([AC_LANG_SOURCE([[ |