資源描述:
《windows下編譯使用net-snmp》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、說(shuō)明:根據(jù)net-snmp-5.6中的“README.win32”摘錄和翻譯。轉(zhuǎn)載請(qǐng)注明出處。email:wulinshuxue@hotmail.comnet-snmp在windows下用MSVC編譯(一)net-snmp是一個(gè)開(kāi)源項(xiàng)目,提供關(guān)于snmp的一些庫(kù)和工具。下載網(wǎng)址:http://sourceforge.net/projects/net-snmp/目前的最新版本是5.6。如果想簡(jiǎn)單地安裝一下的話,可以下載x86的exe版本,一般最新版的程序還沒(méi)有發(fā)布exe版本。目前最新的exe版本為net-snmp-5.5.0-1.x86.exe。在網(wǎng)上搜了一下,大多是在
2、linux下的編譯過(guò)程,windows下的情況比較少,另外,一些注意事項(xiàng)也很少。?在下載了net-snmp-5.6后,看到里面那么多的文件,覺(jué)得很暈。我猜里面需要先讀的文件大概是“win32.readme”,這個(gè)文件是在win32環(huán)境下編譯使用net-snmp的說(shuō)明文件。用記事本打開(kāi)后,估計(jì)超長(zhǎng)的篇幅要讓不少人崩潰。不過(guò)沒(méi)事,這是分小節(jié)寫(xiě)的,每小節(jié)有內(nèi)容說(shuō)明,條理很清晰。摘錄了一些說(shuō)明,并作了大致的翻譯,如下:1、“ThisguidedescribesbuildingwithMicrosoftVisualC++6.0andhigher,withthegcccompil
3、erfromMinGW/MSYS,andwiththegcccompilerfromCygwin.AsdevelopersbuildwithotherWin32environments,theirnoteswillbeincludedhere.”這個(gè)指南介紹了如何使用VC++6.0及更高版本以及gcc來(lái)build。2、IfyouareusingMicrosoftVisualStudio6.0,youwillhavetoinstallthePlatformSDK(PSDK)first.如果使用的是VC6.0,那么必須先安裝PSDK3、Ifyouareusinganyof
4、thefollowingenvironments,thePSDKdownloadisnotnecessaryastherequiredpartsofthePSDKareincluded:???-MicrosoftVisualStudio2002orlater.???-Cygwin.???-MinGW.使用的是這些環(huán)境的話,無(wú)需安裝PSDK4、TherearetwowaystobuildNet-SNMPusingMicrosoftVisualC++.?ThefirstandeasiestmethodisusingConfigureandnmakeonthecommand
5、line,andthesecondisusingtheWorkspacefilesinsidetheinteractivedevelopmentenvironment.兩種方式來(lái)用VCbuildNet-SNMP.第一種,也是最簡(jiǎn)單的方法,就是在命令行下使用Configure和nmake。第二種,就是IDE下使用workspace文件。4.1、Tousenmakeonthecommandline,theConfigurescriptisrunfirsttocreatethevariousmakefiles.?Oncethesehavebeencreated,nmakei
6、susedtobuildtheapplications.?Perlisrequiredtousethismethod,astheConfigurescriptiswritteninPerl.?ActiveStateActivePerlisavailableat:???????http://www.activestate.com/Products/ActivePerl/為了在命令行下使用nmake,必須先運(yùn)行Configure腳本來(lái)生成makefile。由于Configure腳本是用Perl寫(xiě)的,所以要先安裝ActivePerl4.2、Themakefilesystem
7、isbasedonandusesthedirectorystructureoftheprojectscontainedintheWorkspacefileswhicharedescribedbelow.?ItisrecommendedthatyoureadandunderstandhowtheworkspacesareconfiguredevenifyouwillonlybeusingthecommandlineConfigure/nmakesystem.make文件系統(tǒng)是基工程的目錄結(jié)構(gòu)的,建議先閱讀和理解workspace是如何配置的。4.3、F