Re: Change http: to https: and update URLs

2019-09-28 Thread Bruno Haible
Hi Paul, > feel free to further improve the citations, wording, quoting, etc. OK... > > There are a few nits, though: > >* http://www.w3.org/TR/html401/loose.dtd is not a URL; it's a > > declaration. > > Thanks, that should be fixed in the attached patch. Thanks. > >* I don't find it

Re: new module 'access'

2019-09-28 Thread Eli Zaretskii
> From: Bruno Haible > Cc: bug-gnulib@gnu.org, psm...@gnu.org > Date: Sat, 28 Sep 2019 15:29:42 +0200 > > > > The module does not attempt to handle all of these, just the first one, > > > because > > > - the function access() is located at the C library level, > > > - it is compatible with wh

Re: new module 'access'

2019-09-28 Thread Bruno Haible
Eli Zaretskii wrote: > > There are different ways to test for "executable" on Windows: > > - execlp/execvp, > > - CreateProcess, > > - system / popen, like you say, > > - cmd.exe, > > - surely more (PowerShell...) > > > > Let's assume that they work differently (cmd.exe definitely works

Re: new module 'access'

2019-09-28 Thread Eli Zaretskii
> From: Bruno Haible > Cc: bug-gnulib@gnu.org, psm...@gnu.org > Date: Sat, 28 Sep 2019 14:06:00 +0200 > > There are different ways to test for "executable" on Windows: > - execlp/execvp, > - CreateProcess, > - system / popen, like you say, > - cmd.exe, > - surely more (PowerShell...) >

Re: new module 'access'

2019-09-28 Thread Bruno Haible
Eli Zaretskii wrote: > > > > +@item > > > > +This function does not support the @code{X_OK} mode on some platforms: > > > > +MSVC 14. > > > > > > This says MSVC, but the code will do the same on MinGW, right? > > > > Yes, I enabled this code also on mingw. With the mingw version I tested, > > it

Re: [PATCH] findprog-in: Set errno to indicate why NULL was returned.

2019-09-28 Thread Bruno Haible
Eli Zaretskii wrote: > The value of EACCES (not EACCESS!) on MS-Windows frequently means the > file cannot be accessed for a reason that has nothing to do with > execute permissions. It could be, for example, that some intermediate > directory in the full file name doesn't exist or is otherwise >

Re: [libvirt] Fwd: libvirtd failing on MacOS in setgroups

2019-09-28 Thread Bruno Haible
Marcus Furlong wrote: > FWIW I compiled libvirt without the setgroups code on Mac and it > worked as expected. Not sure what the implications of that are though? OK, then the fix would be to not use setgroups on Mac, and nothing to do in gnulib. Right? Bruno