From 6a792298e7ba74dd3f127d26efb903f5f3fb6f67 Mon Sep 17 00:00:00 2001 From: Jesus Cea Date: Mon, 3 May 2010 21:18:48 +0000 Subject: Deprecate OSF* support --- Misc/NEWS | 3 +++ configure | 6 ++++++ configure.in | 7 +++++++ 3 files changed, 16 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 35c246b..6b4f316 100644 --- 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 diff --git a/configure b/configure index f0eb99e..d3fce2f 100755 --- a/configure +++ b/configure @@ -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)` do THREADHEADERS="$THREADHEADERS \$(srcdir)/$h" diff --git a/configure.in b/configure.in index f991823..7aa86d4 100644 --- a/configure.in +++ b/configure.in @@ -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)` -- cgit v0.12