Thanks! That did the trick. I have the latest version of Visual Studio .Net on another system, and it sounds like it'd be better to use to get the full logger features.
>>> [EMAIL PROTECTED] 12/1/2004 1:05:19 AM >>> David Boyer wrote: > I'm attempting to build this from source, and I'm getting several errors > related to an undeclared identifier '__FUNCTION__'. > > Visual C++ 7 supports __FUNCTION__, but VC+All+ 6.0 does not. > > Does anyone know if this is an intended change in the build > requirements, or am I just doing something wrong? > No it's not intended. I don't use VC6 for years :) Just replace the line in jk_logger.h from: #if defined(__GNUC__) || defined(_MSC_VER) with: #if defined(__GNUC__) || (defined(_MSC_VER) && (_MSC_VER > 1200)) The logger will have less features, but it'll compile. MT. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
