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

2005-07-08 Thread David Sugar
To: Horrell, Ronald (Card Services) Cc: [EMAIL PROTECTED]; bug-commoncpp@gnu.org Subject: Re: Build errors on AIX 5.2 with VisualAge C++ Would something like #if !defined(_AIX) || defined(__GNUC__) work? [EMAIL PROTECTED] wrote: FYI, I was able to successfully compile commoncpp2-1.3.13

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

2005-07-08 Thread Ronald.Horrell
To: Horrell, Ronald (Card Services) Cc: [EMAIL PROTECTED]; bug-commoncpp@gnu.org Subject: Re: Build errors on AIX 5.2 with VisualAge C++ Would something like #if !defined(_AIX) || defined(__GNUC__) work? [EMAIL PROTECTED] wrote: > FYI, > I was able to successfully compile commoncpp2-1.

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

2005-07-07 Thread David Sugar
Would something like #if !defined(_AIX) || defined(__GNUC__) work? [EMAIL PROTECTED] wrote: FYI, I was able to successfully compile commoncpp2-1.3.13 on AIX using VisualAge C++ after some minor tweaking: * include/cc++/string.h -- line 114 "#pragma pack()" wasn't liked, pack requires

Build errors on AIX 5.2 with VisualAge C++

2005-07-07 Thread Ronald.Horrell
FYI, I was able to successfully compile commoncpp2-1.3.13 on AIX using VisualAge C++ after some minor tweaking: * include/cc++/string.h -- line 114 "#pragma pack()" wasn't liked, pack requires a value, I commented out the pack statements. (I have seen this in earlier versions as well)