log4cpp 0.3.5rc3编译问题

 log4cpp 0.3.5rc3在MSVC6下无法编译通过,需要对源码进行修改。

1.在Priority.hh文件中

    static const int MESSAGE_SIZE = 8;
改为

    static const int MESSAGE_SIZE;

 

2. 在Priority.cpp文件中加入下面这行:

------------------------

    const int Priority::MESSAGE_SIZE = 8;

你可能感兴趣的:(log4cpp 0.3.5rc3编译问题)