diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | doc/glibc-functions/lchmod.texi | 3 | ||||
-rw-r--r-- | lib/sys_stat.in.h | 2 |
3 files changed, 10 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2020-02-08 Bruno Haible <bruno@clisp.org> + lchmod: Ensure declaration on HP-UX. + * lib/sys_stat.in.h (lchown): Declare also on HP-UX. + * doc/glibc-functions/lchmod.texi: Mention the HP-UX problem. + +2020-02-08 Bruno Haible <bruno@clisp.org> + fchmodat: Strengthen tests. * tests/test-fchmodat.c (BASE): New macro. (main): Use it, to avoid conflicts with other unit tests. Verify that diff --git a/doc/glibc-functions/lchmod.texi b/doc/glibc-functions/lchmod.texi index 6cc48b4539..7a2e9d018c 100644 --- a/doc/glibc-functions/lchmod.texi +++ b/doc/glibc-functions/lchmod.texi @@ -10,6 +10,9 @@ Portability problems fixed by Gnulib: This function is missing on some platforms: OpenBSD 3.8, Minix 3.1.8, AIX 5.1, IRIX 6.5, Solaris 11.4, Cygwin, mingw, MSVC 14, Android 9.0. @item +This function is not declared on some platforms: +HP-UX 11.31. +@item This function always fails with @code{errno} set to @code{ENOSYS}, even when the file is not a symbolic link: GNU/Linux with glibc 2.31. diff --git a/lib/sys_stat.in.h b/lib/sys_stat.in.h index 4f9eb5976f..65661f468a 100644 --- a/lib/sys_stat.in.h +++ b/lib/sys_stat.in.h @@ -525,7 +525,7 @@ _GL_FUNCDECL_RPL (lchmod, int, _GL_CXXALIAS_RPL (lchmod, int, (char const *filename, mode_t mode)); # else -# if !@HAVE_LCHMOD@ +# if !@HAVE_LCHMOD@ || defined __hpux _GL_FUNCDECL_SYS (lchmod, int, (const char *filename, mode_t mode) _GL_ARG_NONNULL ((1))); # endif |