Dear All,
I run into problems when using stlport. Could somebody take care of this (either in FAQ or in configuration file)?
Thank you, Martin
Logged In: YES user_id=760742
Works fine here (VC6) but you do not need the LOG4CPP_MISSING_INT64_OSTREAM_OP when using STLPort (I am using 5.0 here)
In config-win32.h, change #if defined(_MSC_VER) && _MSC_VER < 1300 #define LOG4CPP_MISSING_INT64_OSTREAM_OP #endif
to something like #define LOG4CPP_HAVE_STLPORT #if defined(_MSC_VER) && _MSC_VER < 1300 && (!defined (LOG4CPP_HAVE_STLPORT)) #define LOG4CPP_MISSING_INT64_OSTREAM_OP #endif
Greetings Amanjit GIll
Log in to post a comment.
Logged In: YES
user_id=760742
Works fine here (VC6) but you do not need the
LOG4CPP_MISSING_INT64_OSTREAM_OP when using
STLPort (I am using 5.0 here)
In config-win32.h, change
#if defined(_MSC_VER) && _MSC_VER < 1300
#define LOG4CPP_MISSING_INT64_OSTREAM_OP
#endif
to something like
#define LOG4CPP_HAVE_STLPORT
#if defined(_MSC_VER) && _MSC_VER < 1300 && (!defined
(LOG4CPP_HAVE_STLPORT))
#define LOG4CPP_MISSING_INT64_OSTREAM_OP
#endif
Greetings Amanjit GIll