Re: autoreconf, autopoint, and gnulib

2011-03-06 Thread Ralf Wildenhues
By the way, do I understand correctly that this whole thing would become less of an issue once the pot-primary branch of git Automake is implemented and merged? (Sorry for the non-progress on this; I'm swamped with other stuff.) Thanks, Ralf

Re: autoreconf, autopoint, and gnulib

2011-03-06 Thread Ralf Wildenhues
Hello Bruno, * Bruno Haible wrote on Sun, Mar 06, 2011 at 10:26:18PM CET: > 1. autopoint, in order to get the gettext infrastructure, > 2. gnulib-tool, in order to override some gettext infrastructure .m4 files > with newer ones, > 3. AUTOPOINT=true autoreconf --install > in order

Re: autoreconf, autopoint, and gnulib

2011-03-06 Thread Bruno Haible
Simon Josefsson wrote: > > Does this work? > > AUTOPOINT=true autoreconf --install > ... > Trying it, autoreconf (automake) complains about missing ABOUT-NLS: > > configure.ac:55: required file `./ABOUT-NLS' not found > > I don't see that file in gnulib. So it doesn't seem to work. What the g

Re: Testsuite of libidn 1.20 fails in gnulib

2011-03-06 Thread Dagobert Michelsen
Hi Simon, Am 05.03.2011 um 12:22 schrieb Simon Josefsson: > Thanks Dagobert for the report and Paul for debugging this. > > Paul Eggert writes: > >> That problem is occurring because libidn is using an old >> version of gnulib's m4/longlong.m4. This bug was fixed >> on 2007-11-12 in gnulib. T

Re: autoreconf, autopoint, and gnulib

2011-03-06 Thread Bruno Haible
Paul Eggert wrote: > I've had some trouble training Emacs developers > who like to run autoconf by hand to use > "autoreconf -I m4" rather than "autoconf". Must I now > ask them to say "AUTOPOINT=true autoreconf -I m4"? > I hope not; that's a bit too much to type. This is not needed, because emac

Re: regex-quote.c syntax support

2011-03-06 Thread Reuben Thomas
On 6 March 2011 13:41, Bruno Haible wrote: > >> RE_NO_BK_REFS -> [:digit:] > > I don't know what you mean by that? '[' and ']' are already in the list of > characters to be escaped. So no need to look at RE_NO_BK_REFS, right? I'm not sure what it has to do with '[' and ']', but indeed if the inpu

Re: regex-quote.c syntax support

2011-03-06 Thread Bruno Haible
Hello Reuben, > > Before we can decide on this, IMO some analysis is needed: > > > >  - What are the possible effects of reg_syntax_t on the string of > >    characters to be escaped? I can see > >      RE_BK_PLUS_QM                   ->    +? > >      RE_INTERVALS, RE_NO_BK_BRACES   ->    {} > >

Re: [PATCH 2/3] sendfd, recvf pass file descriptors along Unix domain sockets

2011-03-06 Thread Bastien ROUCARIES
Le jeudi 3 mars 2011 22:33:21, Eric Blake a écrit : > On 03/01/2011 07:04 AM, Bastien ROUCARIES wrote: > > Recvfd and sendfd can be used to pass an open file descriptor over a Unix > > domain socket from one process to another. > > > Again, memcpy, not type-punning. How can I run test using memc

Re: [PATCH 2/3] sendfd, recvf pass file descriptors along Unix domain sockets

2011-03-06 Thread Bastien ROUCARIES
Le jeudi 3 mars 2011 22:33:21, Eric Blake a écrit : > On 03/01/2011 07:04 AM, Bastien ROUCARIES wrote: > > Recvfd and sendfd can be used to pass an open file descriptor over a Unix > > domain socket from one process to another. > > Have you considered porting this to Windows yet? I like the idea