Re: header problems

2003-09-11 Thread Dimitrie O. Paun
On Thu, 11 Sep 2003, Alexandre Julliard wrote: > I'd say just kill the #ifdef completely. We want packing on all > compilers anyway. Here it is: ChangeLog Dimitrie O. Paun <[EMAIL PROTECTED]> Remove checks from {pop,psh}pack[1248].h that were causing the standalone processor to fail.

Re: header problems

2003-09-11 Thread Alexandre Julliard
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > How do we solve this? Maybe change the last condition to: > > -# elif !defined(RC_INVOKED) > +# elif defined(WINE_HEADER_DEBUG_ON) > > or > > +# elif defined(__WINESRC__) > > or some such? I'd say just kill the #ifdef completely. We want packing

header problems

2003-09-11 Thread Dimitrie O. Paun
Hi folks, In each of the include/{pshpack[1248],poppack}.h headers we have checks like this: # if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || defined(_MSC_VER) #pragma pack(1) # elif !defined(RC_INVOKED) #error "Adjusting the alignment is not supported with thi