Re: GCC 3.4 fails to build eval.c when --disable-deprecated is used

2004-05-24 Thread Marius Vollmer
Dirk Herrmann [EMAIL PROTECTED] writes: Marius Vollmer wrote: Kevin Ryde [EMAIL PROTECTED] writes: Ah, no, I see this is still not right. scm_m_generalized_set_x is using scm_macroexp, but it's not defined at all under --disable-deprecated. Looks like this was a change by Marius

Re: GCC 3.4 fails to build eval.c when --disable-deprecated is used

2004-05-21 Thread Dirk Herrmann
Marius Vollmer wrote: Kevin Ryde [EMAIL PROTECTED] writes: Ah, no, I see this is still not right. scm_m_generalized_set_x is using scm_macroexp, but it's not defined at all under --disable-deprecated. Looks like this was a change by Marius not so long ago. Dunno if it should be using

Re: GCC 3.4 fails to build eval.c when --disable-deprecated is used

2004-05-18 Thread Marius Vollmer
Kevin Ryde [EMAIL PROTECTED] writes: Ah, no, I see this is still not right. scm_m_generalized_set_x is using scm_macroexp, but it's not defined at all under --disable-deprecated. Looks like this was a change by Marius not so long ago. Dunno if it should be using scm_macroexp, or something

Re: GCC 3.4 fails to build eval.c when --disable-deprecated is used

2004-05-01 Thread Kevin Ryde
Andreas Vögele [EMAIL PROTECTED] writes: If Guile CVS is built with --disable-deprecated GCC 3.4 fails to build eval.c. The problem is that the function scm_macroexp(), which is used in line 1941 of eval.c, is not declared. The prototype is not declared in eval.h if deprecated functions are

Re: GCC 3.4 fails to build eval.c when --disable-deprecated is used

2004-05-01 Thread Kevin Ryde
Ah, no, I see this is still not right. scm_m_generalized_set_x is using scm_macroexp, but it's not defined at all under --disable-deprecated. Looks like this was a change by Marius not so long ago. Dunno if it should be using scm_macroexp, or something else now.