Amanjit Gill - 2005-09-18

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