// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICEPY_CONFIG_H #define ICEPY_CONFIG_H // // This file includes and should always be included first, // see http://www.python.org/doc/api/includes.html for the details. // // // COMPILERFIX: This is required to prevent annoying warnings with aCC. // The aCC -mt option causes the definition of the _POSIX_C_SOURCE macro // (with another lower value.) and this is causing a warning because of // the redefinition. // #if defined(__HP_aCC) && defined(_POSIX_C_SOURCE) # undef _POSIX_C_SOURCE #endif #include #ifdef STRCAST # error "STRCAST already defined!" #endif #define STRCAST(s) const_cast(s) #endif