Re: Q: ISAPI filter for JK 1.2.7-beta Visual C++ requirements

2004-12-01 Thread David Boyer
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]




Re: Q: ISAPI filter for JK 1.2.7-beta Visual C++ requirements

2004-12-01 Thread Mladen Turk
David Boyer wrote:
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.
Yes.
I think that VC6 has done it's part of the job.
One tip...
You can use VC6 and download free vctoolkit from
http://msdn.microsoft.com/visualc/vctoolkit2003
It'll do the trick too.
MT.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Q: ISAPI filter for JK 1.2.7-beta Visual C++ requirements

2004-11-30 Thread David Boyer
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?


Re: Q: ISAPI filter for JK 1.2.7-beta Visual C++ requirements

2004-11-30 Thread Mladen Turk
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]