[issue39619] os.chroot is not enabled on HP-UX builds

2020-02-13 Thread miss-islington
miss-islington added the comment: New changeset 28fc1bac0fbe1f4ae2e3dcba1dee38d2c063a539 by Miss Islington (bot) in branch '3.8': closes bpo-39619 Fix os.chroot on HP-UX 11.31 (GH-18495) https://github.com/python/cpython/commit/28fc1bac0fbe1f4ae2e3dcba1dee38d2c063a539 -- nosy: +miss

[issue39619] os.chroot is not enabled on HP-UX builds

2020-02-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +17885 pull_request: https://github.com/python/cpython/pull/18509 ___ Python tracker ___ __

[issue39619] os.chroot is not enabled on HP-UX builds

2020-02-13 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset a9edf44a2de9b23a1690b36cdfeed7b41ab763bd by Ian Norton in branch 'master': closes bpo-39619 Fix os.chroot on HP-UX 11.31 (GH-18495) https://github.com/python/cpython/commit/a9edf44a2de9b23a1690b36cdfeed7b41ab763bd -- nosy: +benjamin

[issue39619] os.chroot is not enabled on HP-UX builds

2020-02-12 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +17868 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18495 ___ Python tracker ___ __

[issue39619] os.chroot is not enabled on HP-UX builds

2020-02-12 Thread Ian Norton
New submission from Ian Norton : When building on HP-UX using: The configure stage fails to detect chroot(). This is due to setting _XOPEN_SOURCE to a value higher than 500. The fix for this is to not set _XOPEN_SOURCE when configuring for HP-UX -- components: Interpreter Core mess