]> granicus.if.org Git - python/commitdiff
Deprecate OSF* support
authorJesus Cea <jcea@jcea.es>
Mon, 3 May 2010 21:18:48 +0000 (21:18 +0000)
committerJesus Cea <jcea@jcea.es>
Mon, 3 May 2010 21:18:48 +0000 (21:18 +0000)
Misc/NEWS
configure
configure.in

index 35c246bdb9842a8dac647f0d248e17a12c53f068..6b4f316b5f0e4d777754d1d30d13b5702c2242e1 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -204,6 +204,9 @@ Core and Builtins
   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
index f0eb99e6daf72d0d7ccd9d6d36f7c8a243f0a7a6..d3fce2f38f0d3e248f6345ee310b17e985a79b7a 100755 (executable)
--- a/configure
+++ b/configure
 
 
 
+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"
index f991823f2211af2d8f6634ba31ffcbbbe88e6223..7aa86d46cf6281ce21d173f6c6f0ab19fa18cec0 100644 (file)
@@ -4165,6 +4165,13 @@ fi],
 [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)`