Re: [PATCH 2/5] Import idx.h from gnulib

2020-12-25 Thread Paul Eggert
On 12/25/20 12:34 PM, Florian Weimer wrote: This file is linked into the library itself, so we can only accept something that is under a compatible license (probably LGPLv2 or later). I installed the attached patch to the Gnulib copy of idx.h to do that. This uses the same wording as what's

Re: [PATCH] Fix omission from 741631c9b012baab1725e43557fabf384d71f169

2020-12-25 Thread Bruno Haible
Thanks, applied. Note that MODULES.html.sh is probably so much out of date, that I did not dare to publish it on www.gnu.org when publishing the Gnulib manual recently. Bruno

[PATCH] Fix omission from 741631c9b012baab1725e43557fabf384d71f169

2020-12-25 Thread Thien-Thi Nguyen
Please find attached: From c7152f4a69dc4966a728e82cd2a035a11b720e9f Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Fri, 25 Dec 2020 18:27:37 -0500 Subject: [PATCH] Fix omission from 741631c9b012baab1725e43557fabf384d71f169 * MODULES.html.sh (func_all_modules): Do s/free/free-posix/. ---

Re: [PATCH 2/5] Import idx.h from gnulib

2020-12-25 Thread Bruno Haible
Florian Weimer wrote: > > diff --git a/include/idx.h b/include/idx.h > > new file mode 100644 > > index 00..ad7d31a2bc > > --- /dev/null > > +++ b/include/idx.h > > @@ -0,0 +1,113 @@ > > +/* A type for indices and sizes. > > + > > + Copyright (C) 2020 Free Software Foundation, Inc. > > +

Re: [PATCH 2/5] Import idx.h from gnulib

2020-12-25 Thread Florian Weimer
* Adhemerval Zanella via Libc-alpha: > diff --git a/include/idx.h b/include/idx.h > new file mode 100644 > index 00..ad7d31a2bc > --- /dev/null > +++ b/include/idx.h > @@ -0,0 +1,113 @@ > +/* A type for indices and sizes. > + > + Copyright (C) 2020 Free Software Foundation, Inc. > + > +

Re: C++ and read redefinition

2020-12-25 Thread Bruno Haible
> 2020-12-25 Bruno Haible > > Make it possible to turn off each of the Windows oldnames workarounds. And likewise for 'mkdir'. 2020-12-25 Bruno Haible Make it possible to turn off the mkdir override on Windows. * lib/sys_stat.in.h (mkdir): Conditionalize through

Re: C++ and read redefinition

2020-12-25 Thread Bruno Haible
On 2020-12-06 I committed this: > * lib/fcntl.in.h (creat, open): In C++ mode, when GNULIB_NAMESPACE is > defined: 1. Define a symbol in this namespace. 2. Don't redirect using > a preprocessor #define. > * lib/math.in.h (j0, j1, jn, y0, y1, yn): Likewise. > ...