[Python-checkins] r80728 - in python/branches/py3k: Misc/NEWS configure configure.in

jesus.cea python-checkins at python.org
Mon May 3 23:18:48 CEST 2010


Author: jesus.cea
Date: Mon May  3 23:18:48 2010
New Revision: 80728

Log:
Deprecate OSF* support

Modified:
   python/branches/py3k/Misc/NEWS
   python/branches/py3k/configure
   python/branches/py3k/configure.in

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Mon May  3 23:18:48 2010
@@ -204,6 +204,9 @@
   libraries are: Mach C threads, SunOS LWP, GNU pth, Irix threads. Support code
   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.
 
 - Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which

Modified: python/branches/py3k/configure
==============================================================================
--- python/branches/py3k/configure	(original)
+++ python/branches/py3k/configure	Mon May  3 23:18:48 2010
@@ -13554,6 +13554,12 @@
 
 
 
+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)`
 do
   THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"

Modified: python/branches/py3k/configure.in
==============================================================================
--- python/branches/py3k/configure.in	(original)
+++ python/branches/py3k/configure.in	Mon May  3 23:18:48 2010
@@ -4165,6 +4165,13 @@
 [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)
 
 for h in `(cd $srcdir;echo Python/thread_*.h)`


More information about the Python-checkins mailing list