Re: [PATCH] bootstrap: remove the need for a sorted .gitignore

2013-01-25 Thread Gary V. Vaughan
Hi Bernhard, Padraig, Sorry for the late review, I didn't notice this until after the push notification. Comments interspersed below... On 21 Jan 2013, at 02:20, Bernhard Voelker wrote: > During bootstrap, files may be created which are already included > in .gitignore, but the test to add such

Re: [PATCH] bootstrap: remove the need for a sorted .gitignore

2013-01-25 Thread Pádraig Brady
On 01/20/2013 07:20 PM, Bernhard Voelker wrote: During bootstrap, files may be created which are already included in .gitignore, but the test to add such a file relied on the sort order. Now, it just adds such a new entry and thus only changes the file if the line count would change. * bootstra

Re: bug#13495: Compilation fails on Mac OS X 10.8.0

2013-01-25 Thread Paul Eggert
On 01/25/2013 11:25 AM, Assaf Gordon wrote: > So I'm guessing that even though gnulib's stpncpy code is used, > because the MacOS's native declaration of stpncpy is included, it > causes problems when the macro is expanded to use "__stpncpy_chk". Does the following patch fix things for you? It a

Re: bug#13495: Compilation fails on Mac OS X 10.8.0

2013-01-25 Thread Assaf Gordon
An ugly work-around: "-O1" seems to overcome the messy macro expansion of stpncpy. So either compile everything with CFLAGS="-g -O1", Or compile everything with "-g -O0" until it fails, then compile two problematic objects with "-O1" and continue, Or just compile the program of interest and igno

Re: bug#13495: Compilation fails on Mac OS X 10.8.0

2013-01-25 Thread Assaf Gordon
Paul Eggert wrote, On 01/24/2013 04:38 PM: > On 01/24/13 13:07, Assaf Gordon wrote: >> $ CFLAGS="-g -O0" ./configure > > Isn't it better to use this? > >./configure CFLAGS="-g -O0" > > If that works, it solves your problem. No, doesn't work - same linking error. > Otherwise: > >> $ ma