diff options
author | Sam Schanken <windexlight@gmail.com> | 2014-12-29 10:57:21 -0800 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-01-08 21:12:43 +0000 |
commit | 659d252b6f646cc51eb2caae710183330b34a717 (patch) | |
tree | 211e925e7bb003304aed8c82a0d979b684beea71 /winbuild/BUILD.WINDOWS.txt | |
parent | c712fe01a9aedb3fdc6f693f7340ff7c8e992b10 (diff) | |
download | curl-659d252b6f646cc51eb2caae710183330b34a717.tar.gz |
winbuild: Added option to build with c-ares
Added support for a WITH_CARES option to be used when invoking nmake
via Makefile.vc. This option enables linking against both the DLL and
static versions of the c-ares libraries, as well as the debug and
release varients, depending on the value of DEBUG. The USE_ARES
preprocessor symbol is also defined.
Diffstat (limited to 'winbuild/BUILD.WINDOWS.txt')
-rw-r--r-- | winbuild/BUILD.WINDOWS.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winbuild/BUILD.WINDOWS.txt b/winbuild/BUILD.WINDOWS.txt index 757c41f57..7d6b364e2 100644 --- a/winbuild/BUILD.WINDOWS.txt +++ b/winbuild/BUILD.WINDOWS.txt @@ -19,7 +19,7 @@ Building with Visual C++, prerequises http://www.microsoft.com/en-us/download/details.aspx?id=12261
- If you wish to support zlib, openssl, ssh2, you will have to download
+ If you wish to support zlib, openssl, c-ares, ssh2, you will have to download
them separately and copy them to the deps directory as shown below:
somedirectory\
@@ -64,6 +64,7 @@ where <options> is one or many of: Libraries can be fetched at http://windows.php.net/downloads/php-sdk/deps/
Uncompress them into the deps folder.
WITH_SSL=<dll or static> - Enable OpenSSL support, DLL or static
+ WITH_CARES=<dll or static> - Enable c-ares support, DLL or static
WITH_ZLIB=<dll or static> - Enable zlib support, DLL or static
WITH_SSH2=<dll or static> - Enable libSSH2 support, DLL or static
ENABLE_SSPI=<yes or no> - Enable SSPI support, defaults to yes
|