Re: Build errors on AIX 5.2 with VisualAge C++

2005-07-08 Thread David Sugar
I may try adding something in cc++/config.h then, more like: #ifdef __GNUC__ #define CCXX_PACKED #else #if !defined(_AIX) && !defined(__hpux) #define CCXX_PACKED #endif #endif And then use a #ifdef CCXX_PACKED for things like that in other headers and such... [EMAIL PROTECTED] wrote: This w

RE: Build errors on AIX 5.2 with VisualAge C++

2005-07-08 Thread Ronald.Horrell
This works but there is also a "__hpux" condition already there. string.h: 93 #if defined(__GNUC__) || !defined(_AIX) && !defined(__hpux) 94 #pragma pack(1) 95 #endif 96 97 union 98 { 99 struct 100 { 101 char *text;