[Python-checkins] python/dist/src configure.in, 1.474,
1.475 configure, 1.461, 1.462
bcannon at users.sourceforge.net
bcannon at users.sourceforge.net
Sun Nov 7 02:24:18 CET 2004
Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10622
Modified Files:
configure.in configure
Log Message:
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.
Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.474
retrieving revision 1.475
diff -u -d -r1.474 -r1.475
--- configure.in 5 Nov 2004 07:02:41 -0000 1.474
+++ configure.in 7 Nov 2004 01:24:11 -0000 1.475
@@ -945,9 +945,9 @@
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)
Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.461
retrieving revision 1.462
diff -u -d -r1.461 -r1.462
--- configure 6 Nov 2004 04:45:33 -0000 1.461
+++ configure 7 Nov 2004 01:24:12 -0000 1.462
@@ -4256,10 +4256,10 @@
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
More information about the Python-checkins
mailing list