Re: Francois Gouget : winedbg: Fix compilation with gcc 2. 95 and non-GNU compilers.

2010-05-02 Thread Francois Gouget
On Wed, 21 Apr 2010, Eric Pouech wrote: Francois Gouget a écrit : There were two problems: * the semi-colon was missing for non-GNUC compilers as you mentioned * gcc 2.95 does not support __attribute__() on function pointers Unfortunately your patch does not fix the second issue. A

Re: Francois Gouget : winedbg: Fix compilation with gcc 2. 95 and non-GNU compilers.

2010-04-21 Thread Eric Pouech
Francois Gouget a écrit : There were two problems: * the semi-colon was missing for non-GNUC compilers as you mentioned * gcc 2.95 does not support __attribute__() on function pointers Unfortunately your patch does not fix the second issue. A solution that would not require dbg_vprintf()

Re: Francois Gouget : winedbg: Fix compilation with gcc 2. 95 and non-GNU compilers.

2010-04-17 Thread Eric Pouech
Alexandre Julliard a écrit : Module: wine Branch: master Commit: 51dfd9adb11885daec878737f18f89fb05c1516c URL: http://source.winehq.org/git/wine.git/?a=commit;h=51dfd9adb11885daec878737f18f89fb05c1516c Author: Francois Gouget fgou...@free.fr Date: Sat Mar 27 16:55:27 2010 +0100 winedbg:

Re: Francois Gouget : winedbg: Fix compilation with gcc 2. 95 and non-GNU compilers.

2010-04-17 Thread Francois Gouget
On Sat, 17 Apr 2010, Eric Pouech wrote: [...] winedbg: Fix compilation with gcc 2.95 and non-GNU compilers. François, what was the exact issue here ? I guess that the ; at the end of the attribute definition for GNUCC compiler was missing for the non gnu C compilers ? There were two