From: Brett Cannon Date: Sun, 7 Nov 2004 01:24:12 +0000 (+0000) Subject: Move the AC_MSG_RESULT function call for checking for pthread options up into X-Git-Tag: v2.4c1~86 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c601e0fa0b97b796e8d2029208fbbb689a45d0ca;p=python Move the AC_MSG_RESULT function call for checking for pthread options up into the 'if' statement that performed the test. Not all platforms run the test and on those tests configure outputted a rogue 'no' line. --- diff --git a/configure b/configure index a9ce40255e..82af2e6af0 100755 --- a/configure +++ b/configure @@ -4256,10 +4256,10 @@ then fi rm -fr conftest* fi -fi -CXX="$ac_save_cxx" echo "$as_me:$LINENO: result: $ac_cv_cxx_thread" >&5 echo "${ECHO_T}$ac_cv_cxx_thread" >&6 +fi +CXX="$ac_save_cxx" # checks for header files diff --git a/configure.in b/configure.in index d563640026..370fdf56bb 100644 --- a/configure.in +++ b/configure.in @@ -945,9 +945,9 @@ then fi rm -fr conftest* fi +AC_MSG_RESULT($ac_cv_cxx_thread) fi CXX="$ac_save_cxx" -AC_MSG_RESULT($ac_cv_cxx_thread) dnl # check for ANSI or K&R ("traditional") preprocessor dnl AC_MSG_CHECKING(for C preprocessor type)