diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-09-13 05:33:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-13 05:33:02 (GMT) |
commit | 35c94c765bf46e93a0d84e39dbc6eaaba40b1f36 (patch) | |
tree | 69bf5113b64537f9d881f7afef015541c424cc8a /configure | |
parent | 90f7d455b7f4bd53d3af11cb951347c9c8230399 (diff) | |
download | cpython-35c94c765bf46e93a0d84e39dbc6eaaba40b1f36.zip cpython-35c94c765bf46e93a0d84e39dbc6eaaba40b1f36.tar.gz cpython-35c94c765bf46e93a0d84e39dbc6eaaba40b1f36.tar.bz2 |
bpo-34652: Remove lchmod from the big func checking block. (GH-9247)
A fix for 883702ebb8bbfa749ef0040d1b58d6222bf589ee.
(cherry picked from commit ed709d5699716bf7237856dc20aba321e2dfff6d)
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -11327,7 +11327,7 @@ for ac_func in alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ getgrouplist getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \ if_nameindex \ - initgroups kill killpg lchmod lchown lockf linkat lstat lutimes mmap \ + initgroups kill killpg lchown lockf linkat lstat lutimes mmap \ memrchr mbrtowc mkdirat mkfifo \ mkfifoat mknod mknodat mktime mremap nice openat pathconf pause pipe2 plock poll \ posix_fallocate posix_fadvise posix_spawn pread preadv preadv2 \ @@ -11358,10 +11358,16 @@ done # links. Some libc implementations have a stub lchmod implementation that always # returns an error. if test "$MACHDEP" != linux; then + for ac_func in lchmod +do : ac_fn_c_check_func "$LINENO" "lchmod" "ac_cv_func_lchmod" if test "x$ac_cv_func_lchmod" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_LCHMOD 1 +_ACEOF fi +done fi |