mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Deprecate OSF* support
This commit is contained in:
parent
70cce42f15
commit
6a792298e7
3 changed files with 16 additions and 0 deletions
|
@ -204,6 +204,9 @@ Core and Builtins
|
||||||
libraries are: Mach C threads, SunOS LWP, GNU pth, Irix threads. Support code
|
libraries are: Mach C threads, SunOS LWP, GNU pth, Irix threads. Support code
|
||||||
will be entirely removed in 3.3.
|
will be entirely removed in 3.3.
|
||||||
|
|
||||||
|
- Support for OSF* has been disabled. If nobody stands up, support will be
|
||||||
|
removed in 3.3. See http://bugs.python.org/issue8606 .
|
||||||
|
|
||||||
- Peephole constant folding had missed UNARY_POSITIVE.
|
- Peephole constant folding had missed UNARY_POSITIVE.
|
||||||
|
|
||||||
- Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which
|
- Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which
|
||||||
|
|
6
configure
vendored
6
configure
vendored
|
@ -13554,6 +13554,12 @@ fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
case $ac_sys_system in
|
||||||
|
OSF*) as_fn_error "OSF* systems are deprecated unless somebody volunteers. Check http://bugs.python.org/issue8606" "$LINENO" 5 ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for h in `(cd $srcdir;echo Python/thread_*.h)`
|
for h in `(cd $srcdir;echo Python/thread_*.h)`
|
||||||
do
|
do
|
||||||
THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
|
THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
|
||||||
|
|
|
@ -4165,6 +4165,13 @@ fi],
|
||||||
[AC_MSG_RESULT(no)])
|
[AC_MSG_RESULT(no)])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
case $ac_sys_system in
|
||||||
|
OSF*) AC_MSG_ERROR(OSF* systems are deprecated unless somebody volunteers. Check http://bugs.python.org/issue8606) ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
AC_SUBST(THREADHEADERS)
|
AC_SUBST(THREADHEADERS)
|
||||||
|
|
||||||
for h in `(cd $srcdir;echo Python/thread_*.h)`
|
for h in `(cd $srcdir;echo Python/thread_*.h)`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue