Re: [perl #47349] [BUG] 'make' failure on Darwin

2007-11-14 Thread Joshua Isom
On Nov 13, 2007, at 9:06 PM, James Keenan via RT wrote: On Sun Nov 11 22:29:21 2007, ptc wrote: My next guess now is that the -std=c89 gcc compiler option doesn't play nicely with your system headers. I've removed the compiler flag in r22809, see how you go. Paul It did. Now Darwin is

[perl #47349] [BUG] 'make' failure on Darwin

2007-11-13 Thread James Keenan via RT
On Sun Nov 11 22:29:21 2007, ptc wrote: > > My next guess now is that the -std=c89 gcc compiler option doesn't > play nicely with your system headers. I've removed the compiler flag > in r22809, see how you go. > > Paul > It did. Now Darwin is back to failing just one non-coding-standards t

Re: [perl #47349] [BUG] 'make' failure on Darwin

2007-11-11 Thread Paul Cochrane
On 12/11/2007, James Keenan via RT <[EMAIL PROTECTED]> wrote: > On Sun Nov 11 10:27:32 2007, ptc wrote: > > kid51, > > > > this error is caused by gcc_pcc.h using 'inline' directly, and I added > > -std=c89 to the list of gcc compiler options just recently. What you > > need to do is replace the '

[perl #47349] [BUG] 'make' failure on Darwin

2007-11-11 Thread James Keenan via RT
On Sun Nov 11 10:27:32 2007, ptc wrote: > kid51, > > this error is caused by gcc_pcc.h using 'inline' directly, and I added > -std=c89 to the list of gcc compiler options just recently. What you > need to do is replace the 'inline' keyword in gcc_pcc.h with > PARROT_INLINE and everything should w

Re: [perl #47349] [BUG] 'make' failure on Darwin

2007-11-11 Thread Andy_Bach
--- trunk/include/parrot/atomic/gcc_pcc.h2007/06/12 14:08:35 18945 +++ trunk/include/parrot/atomic/gcc_pcc.h2007/10/10 06:31:20 22000 @@ -28,7 +28,7 @@ { void *tmp; /* see http://www-128.ibm.com/developerworks/linux/librar

Re: [perl #47349] [BUG] 'make' failure on Darwin

2007-11-11 Thread Paul Cochrane
kid51, this error is caused by gcc_pcc.h using 'inline' directly, and I added -std=c89 to the list of gcc compiler options just recently. What you need to do is replace the 'inline' keyword in gcc_pcc.h with PARROT_INLINE and everything should work again. Paul On 11/11/2007, via RT James Keenan

[perl #47349] [BUG] 'make' failure on Darwin

2007-11-11 Thread via RT
# New Ticket Created by James Keenan # Please include the string: [perl #47349] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=47349 > After an 'svn update' to r22806 on my iBook this morning, I configured and sought to b