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
ed709d56
Commit
ed709d56
authored
Sep 12, 2018
by
Benjamin Peterson
Committed by
GitHub
Sep 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-34652: Remove lchmod from the big func checking block. (GH-9247)
A fix for 883702ebb8bbfa749ef0040d1b58d6222bf589ee.
parent
c9a71dd2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
configure
configure
+7
-1
configure.ac
configure.ac
+2
-2
No files found.
configure
View file @
ed709d56
...
...
@@ -11258,7 +11258,7 @@ for ac_func in alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
getgrouplist getgroups getlogin getloadavg getpeername getpgid getpid
\
getpriority getresuid getresgid getpwent getpwnam_r getpwuid_r getspnam getspent getsid getwd
\
if_nameindex
\
initgroups
kill
killpg lch
mod lch
own 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
\
...
...
@@ -11289,10 +11289,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
...
...
configure.ac
View file @
ed709d56
...
...
@@ -3438,7 +3438,7 @@ AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
getgrouplist getgroups getlogin getloadavg getpeername getpgid getpid \
getpriority getresuid getresgid getpwent getpwnam_r getpwuid_r getspnam getspent getsid getwd \
if_nameindex \
initgroups kill killpg lch
mod lch
own 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 \
...
...
@@ -3458,7 +3458,7 @@ AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
# links. Some libc implementations have a stub lchmod implementation that always
# returns an error.
if test "$MACHDEP" != linux; then
AC_CHECK_FUNC(lchmod)
AC_CHECK_FUNC
S
(lchmod)
fi
AC_CHECK_DECL(dirfd,
...
...
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