⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 install.win32

📁 linux subdivision ying gai ke yi le ba
💻 WIN32
字号:
Building neon on Windows uses a single Nmake neon.mak file.  Byplacing various parameters on nmake's command line, you can specifyexactly the features and behavior of the Neon libraries.  Theparameters are additive, so to add more features, add the command lineoptions specified in the particular section below.All the builds described below should work with Microsoft VC++ 5 and6.Build neon__________This is the most basic version of the Neon library you can build.  Itdoes not require any third party libraries, but you do not get thefull capabilities of Neon.Compile Neon with no parameters  nmake /f neon.makAfter compiling the library, the directory contains libneon.lib,against which you can link your program.Build neon with WebDAV support______________________________To compile Neon with WebDAV support, Neon must compile and linkagainst a third-party XML parser, either expat, expat-lite, libxml orlibxml2.  This Windows neon.mak file is designed to compile and linkagainst the pre-built Expat Windows libraries version 1.95.X or newer.This library is available for download from  http://sourceforge.net/projects/expat/Download the latest expat_win32bin package named  expat_win32bin_X_YY_Z.exeand install it on your system.  It wants to install itself intoQ:\some\dir\Expat-X.Y.ZZ.  Choose your installation location for expatand then compile Neon with  nmake /f neon.mak EXPAT_SRC=\path\to\Expat-X.YY.ZNOTE: When you run your program make sure the LIBEXPAT.DLL from expatis accessible, i.e. is in your PATH.This should work with Microsoft VC++ 5 and 6.Build neon with dynamically linked SSL support______________________________________________To build neon on Windows with SSL support you need OpenSSL alreadyinstalled on your system (I used OpenSSL 0.9.6g).  It can bedownloaded from  http://www.openssl.org/source/openssl-0.9.6g.tar.gzAfter compiling OpenSSL, now simply point make to the OpenSSL sources:  nmake /f neon.mak OPENSSL_SRC=\path\to\opensslNOTE: The include files for OpenSSL reside in inc32/ directory("../openssl-0.9.6g/inc32").NOTE: Make sure that your program is linked against libeay32.lib andssleay32.lib (normally in "../openssl-0.9.6g/out32dll") and thatlibeay32.dll and ssleay32.dll is accessible, i.e. is in your PATH.Build neon with statically linked OpenSSL support_________________________________________________If you want to statically link against OpenSSL, then add theOPENSSL_STATIC parameter.  nmake /f neon.mak OPENSSL_SRC=\path\to\openssl OPENSSL_STATIC=yesBuild neon with statically linked Zlib support______________________________________________If you want to build Neon with the capability to decompress compressedcontent, then you need to compile against the Zlib library.Currently, the Neon's neon.mak file expects to compile and link a selfcompiled version of Zlib.  You need Zlib 1.1.4 or greater.  Zlib 1.1.3and older has a serious security issue.Here's how to compile Zlib.  1) Get one of the Zlib source file packages in Zip format from     http://www.gzip.org/zlib/  2) Unzip it.  3) Get the package     http://www.gzip.org/zlib/contrib/zlib113-win32.zip  4) Unzip it and copy the Makefile from this package to the Zlib     1.1.4 or greater package.  5) Run nmake in the Zlib 1.1.4 or greater directory.Now add the ZLIB_SRC parameter to Neon's neon.mak pointing to yournewly compiled zlib.  nmake /f neon.mak ZLIB_SRC=\path\to\zlibBuild neon with dynamically linked Zlib support_______________________________________________To build Neon with dynamically linked Zlib support, use theinstructions for the statically linked Zlib support above and add theZLIB_DLL parameter  nmake /f neon.mak ZLIB_SRC=\path\to\zlib ZLIB_DLL=yesBuild neon with debugging support_________________________________Set the DEBUG_BUILD parameter  nmake /f neon.mak DEBUG_BUILD=yesIt does not matter what value DEBUG_BUILD is set to, as long as it isnot set to "".After compiling the library, the directory contains libneonD.lib,against which you can link your program.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -