====== libcURL - the multiprotocol file transfer library ====== Project URL: http://curl.haxx.se/libcurl/ ===== Available prebuilt libraries ===== All prebuilt libraries are available as part of the [[http://windows.php.net/downloads/php-sdk/|PHP SDK]] ===== Requirements ===== * CURL sources, patched, available in [[https://github.com/winlibs/cURL|here]] * OpenSSL binaries and development files * Libssh2 binaries and development files * Zlib binaries and development files * Create a clean build tree without the classic php dependencies in ..\..\deps but only the required deps (ssl and zlib). Having curl headers in your include path is likely to break the build ===== Configuration ===== See https://github.com/pierrejoye/curl/blob/master/winbuild/BUILD.WINDOWS.txt Example release build command line: nmake /f Makefile.vc mode=static VC=9 WITH_DEVEL=D:\repo\curl_deps WITH_SSL=static WITH_ZLIB=static WITH_SSH2=static ENABLE_WINSSL=no USE_IDN=no GEN_PDB=yes DEBUG=no Note that php is always using a dynamic openssl runtime. Even when using WITH_SSL=static, openssl dlls are required.