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++ 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]



Reply via email to