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
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
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
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
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