[issue42598] Some configure checks rely on implicit function declaration

2020-12-13 Thread Ned Deily
Ned Deily added the comment: Thanks for noticing the failures and for the PR! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker

[issue42598] Some configure checks rely on implicit function declaration

2020-12-13 Thread Ned Deily
Ned Deily added the comment: New changeset 9feda9f871498463fe502d63204cf9cd6c1f4706 by Miss Islington (bot) in branch '3.8': bpo-42598: Fix implicit function declarations in configure (GH-23690) (GH-23757) https://github.com/python/cpython/commit/9feda9f871498463fe502d63204cf9cd6c1f4706

[issue42598] Some configure checks rely on implicit function declaration

2020-12-13 Thread Ned Deily
Ned Deily added the comment: New changeset 3dcdbdeb4833e45430ccc9cb3432f779a6fd8c94 by Miss Islington (bot) in branch '3.9': bpo-42598: Fix implicit function declarations in configure (GH-23690) (GH-23756) https://github.com/python/cpython/commit/3dcdbdeb4833e45430ccc9cb3432f779a6fd8c94

[issue42598] Some configure checks rely on implicit function declaration

2020-12-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +22613 pull_request: https://github.com/python/cpython/pull/23757 ___ Python tracker ___

[issue42598] Some configure checks rely on implicit function declaration

2020-12-13 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +22612 pull_request: https://github.com/python/cpython/pull/23756 ___ Python tracker

[issue42598] Some configure checks rely on implicit function declaration

2020-12-13 Thread Ned Deily
Ned Deily added the comment: New changeset 674fa0a740151e0416c9383f127b16014e805990 by Joshua Root in branch 'master': bpo-42598: Fix implicit function declarations in configure (GH-23690) https://github.com/python/cpython/commit/674fa0a740151e0416c9383f127b16014e805990 -- nosy:

[issue42598] Some configure checks rely on implicit function declaration

2020-12-08 Thread Joshua Root
Change by Joshua Root : -- keywords: +patch pull_requests: +22558 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23690 ___ Python tracker ___

[issue42598] Some configure checks rely on implicit function declaration

2020-12-08 Thread Joshua Root
New submission from Joshua Root : There are several cases in the configure script of exit being used without including stdlib.h, and one case of close being used without including unistd.h. A compiler that does not allow implicit function declaration, such as clang in Xcode 12, will error