這篇文章主要介紹了Fedora 6怎么使用log4cxx的版本為0.97,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
成都創(chuàng)新互聯(lián)公司堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的富縣網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
使用log4cxx的版本為0.97 , OS為Fedora 6. 在make的過程中,首先碰到的問題就是:
../include/log4cxx/xml/domconfigurator.h:249: error: extra qualification
'log4cxx::xml::DOMConfigurator::' on member 'subst'
Fedora 6以上問題花了近二個小時,才找到答案, 答案見下:
Index: include/log4cxx/xml/domconfigurator.h =================================================================== --- include/log4cxx/xml/domconfigurator.h (revision 384243) +++ include/log4cxx/xml/domconfigurator.h (working copy) @@ -246,7 +246,7 @@ protected: static LogString getAttribute(apr_xml_elem*, const std::string& attrName); -LogString DOMConfigurator::subst(const LogString& value); +LogString subst(const LogString& value);
//要在源代碼中把以上函數(shù)聲明改成這句protected:
helpers::Properties props;
然后,編譯到 /tests/src/util/filter.cpp 時,提示“‘RegEx’ 在此作用域中尚未聲明”進(jìn)入到filter.cpp文件中,看到該文件使用的是boost庫中的regex功能。
#include#include "filter.h" using namespace log4cxx; using namespace log4cxx::helpers; using namespace boost; String Filter::merge(const String& pattern, const String& in, const String& fmt) { USES_CONVERSION; std::string convPattern = T2A(pattern.c_str()); std::string convIn = T2A(in.c_str()); std::string convFmt = T2A(fmt.c_str()); std::string result = RegEx(convPattern).Merge(convIn, convFmt); return A2T(result.c_str());}
Fedora 6首先想到的是: gcc的時候“-lboost_regex”沒有添加,在Makfile.in中添加編譯選項:"-lboost_regex",還是出現(xiàn)該錯誤。
***,查看boost庫源代碼,發(fā)現(xiàn)RegEx函數(shù)定義在cregex.hpp中,而不是regex.hpp中,可能是boost庫已經(jīng)更新(把RegEx函數(shù)移到cregex.hpp中定義),而log4cxx卻還是默認(rèn)使用舊boost庫的原因。
Fedora 6這個錯誤更改一下頭文件編譯就OK了。
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Fedora 6怎么使用log4cxx的版本為0.97”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!