This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Disable POSIX for certain/older NetBSD versions
Type: Stage:
Components: None Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: loewis, marc
Priority: normal Keywords: patch

Created on 2003-12-05 15:32 by marc, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
nbsd-configure.in.diff marc, 2003-12-05 15:32 patch against Python-2.3.3c1
Messages (4)
msg45025 - (view) Author: Marc Recht (marc) Date: 2003-12-05 15:32
The attached patch we have in NetBSD's pkgsrc and disables 
_XOPEN_SOURCE_EXTENDED for NetBSD 1.5*, 1.6, 1.6.* and 
NetBSD(-current) NetBSD 1.6[A-S]. This are the versions prior 
_NETBSD_SOURCE. And without this change non-POSIX functions 
like eg. os.setgroups are unavailable.
msg45026 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2003-12-05 19:08
Logged In: YES 
user_id=21627

Doesn't 1.6.* talk about future versions? It should not do
that, instead, it should explicitly list all versions to
which the patch applies.
msg45027 - (view) Author: Marc Recht (marc) Date: 2003-12-05 19:18
Logged In: YES 
user_id=205

Indeed, tt does talk about future versions, but only of the
maintenance branch. No interface changes will haben there.
(Especially not wrt POSIX).  These will happen with NetBSD
2.0 and are in NetBSD-current (1.6[A-Z]*) right now.
(So, actually 1.6A is "newer" than 1.6.*)
msg45028 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2006-11-25 15:40
Thanks for the patch. Committed as r52843 and r52844.
History
Date User Action Args
2022-04-11 14:56:01adminsetgithub: 39668
2003-12-05 15:32:32marccreate