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
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;