From: David R. <drr...@op...> - 2002-01-03 16:30:57
|
I had a problem compiling with Borland C++ builder 5. I opened the Project file in the bcb5 directory but it would not compile correctly. I had to modify the config-win32.h file to place the conditional #ifndef __BORLANDC__ around the following code /* define if the compiler has int64_t */ #ifndef __BORLANDC__ #ifndef LOG4CPP_HAVE_INT64_T #define LOG4CPP_HAVE_INT64_T #define int64_t __int64 #define LOG4CPP_MISSING_INT64_OSTREAM_OP #endif #endif I did this and then it compiled normally. I hope this helps David Robison |