Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6a792298
Commit
6a792298
authored
May 03, 2010
by
Jesus Cea
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deprecate OSF* support
parent
70cce42f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
Misc/NEWS
Misc/NEWS
+3
-0
configure
configure
+6
-0
configure.in
configure.in
+7
-0
No files found.
Misc/NEWS
View file @
6a792298
...
...
@@ -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
...
...
configure
View file @
6a792298
...
...
@@ -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
"
...
...
configure.in
View file @
6a792298
...
...
@@ -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)`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment