diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2012-07-08 10:41:53 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2012-07-08 10:41:53 +0200 |
commit | d7c9f2f63ae3da81aeb66b546d4daedd860776cb (patch) | |
tree | 2fac60a3666f9e5a3b17664f85e40b66c2df4b02 /winbuild | |
parent | d39bbcfa8d2da88bc5e041f6148ae63f06e95c8f (diff) | |
download | curl-d7c9f2f63ae3da81aeb66b546d4daedd860776cb.tar.gz |
winbuild: Aligned BUILD.WINDOWS.txt and Makefile.vc usage help
Diffstat (limited to 'winbuild')
-rw-r--r-- | winbuild/BUILD.WINDOWS.txt | 24 | ||||
-rw-r--r-- | winbuild/Makefile.vc | 21 |
2 files changed, 24 insertions, 21 deletions
diff --git a/winbuild/BUILD.WINDOWS.txt b/winbuild/BUILD.WINDOWS.txt index 7d68110bd..53030cb95 100644 --- a/winbuild/BUILD.WINDOWS.txt +++ b/winbuild/BUILD.WINDOWS.txt @@ -45,24 +45,26 @@ Once you are in the console, go to the winbuild directory in the Curl sources:
cd curl-src\winbuild
-Then you can call nmake /f makefile with the desired options (see below).
+Then you can call nmake /f Makefile.vc with the desired options (see below).
The builds will be in the top src directory, builds\ directory, in
a directory named using the options given to the nmake call.
-nmake /f makefile.vc mode=<static or dll> <options>
+nmake /f Makefile.vc mode=<static or dll> <options>
+
where <options> is one or many of:
VC=<6,7,8,9,10> - VC versions
WITH_DEVEL=<path> - Paths for the development files (SSL, zlib, etc.)
- Default to sibbling directory deps: ../deps
+ Defaults to sibbling directory deps: ../deps
Libraries can be fetched at http://pecl2.php.net/downloads/php-windows-builds/
Uncompress them into the deps folder.
WITH_SSL=<dll or static> - Enable OpenSSL 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
- USE_SSSPI=<yes or no> - Enable SSPI support, default to yes
- USE_IPV6=<yes or no> - Enable IPV6, default to yes
+ 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
+ ENABLE_IPV6=<yes or no> - Enable IPv6, defaults to yes
+ ENABLE_IDN=<yes or no> - Enable use of Windows IDN APIs, defaults to yes
+ Requires Windows Vista or later, or installation from:
+ http://www.microsoft.com/downloads/details.aspx?FamilyID=AD6158D7-DDBA-416A-9109-07607425A815
+ ENABLE_WINSSL=<yes or no> - Enable native Windows SSL support, defaults to yes
+ GEN_PDB=<yes or no> - Generate Program Database (debug symbols for release build)
DEBUG=<yes or no> - Debug builds
- USE_IDN=<yes or no> - Wheter or not to use IDN Windows APIs. Requires Windows Vista or later.
- or to install http://www.microsoft.com/downloads/details.aspx?FamilyID=AD6158D7-DDBA-416A-9109-07607425A815
- GEN_PDB=<yes or no> - Generate Program Database (debug symbols release build)
-
diff --git a/winbuild/Makefile.vc b/winbuild/Makefile.vc index a75747877..be93381f4 100644 --- a/winbuild/Makefile.vc +++ b/winbuild/Makefile.vc @@ -13,22 +13,23 @@ CFGSET=true # Usage
#
-!MESSAGE Usage: nmake /f makefile.vc mode=<static or dll> <options>
+!MESSAGE Usage: nmake /f Makefile.vc mode=<static or dll> <options>
!MESSAGE where <options> is one or many of:
!MESSAGE VC=<6,7,8,9,10> - VC versions
!MESSAGE WITH_DEVEL=<path> - Paths for the development files (SSL, zlib, etc.)
-!MESSAGE Default to sibbling directory deps: ../deps
+!MESSAGE Defaults to sibbling directory deps: ../deps
!MESSAGE Libraries can be fetched at http://pecl2.php.net/downloads/php-windows-builds/
!MESSAGE Uncompress them into the deps folder.
!MESSAGE WITH_SSL=<dll or static> - Enable OpenSSL support, DLL or static
-!MESSAGE WITH_ZLIB=<dll or static> - Enable ZLib support, DLL or static
-!MESSAGE WITH_SSH2=<dll or static> - Enable LIbSSH2 support, DLL or static
-!MESSAGE ENABLE_SSPI=<yes or no> - Enable SSPI support, default to yes
-!MESSAGE ENABLE_IPV6=<yes or no> - Enable IPV6, default to yes
-!MESSAGE ENABLE_IDN=<yes or no> - Wheter or not to use IDN Windows APIs. Requires Windows Vista or later.
-!MESSAGE or to install http://www.microsoft.com/downloads/details.aspx?FamilyID=AD6158D7-DDBA-416A-9109-07607425A815
-!MESSAGE ENABLE_WINSSL=<yes or no> - Enable native Windows SSL support, default to yes
-!MESSAGE GEN_PDB=<yes or no> - Generate Program Database (debug symbols release build)
+!MESSAGE WITH_ZLIB=<dll or static> - Enable zlib support, DLL or static
+!MESSAGE WITH_SSH2=<dll or static> - Enable libSSH2 support, DLL or static
+!MESSAGE ENABLE_SSPI=<yes or no> - Enable SSPI support, defaults to yes
+!MESSAGE ENABLE_IPV6=<yes or no> - Enable IPv6, defaults to yes
+!MESSAGE ENABLE_IDN=<yes or no> - Enable use of Windows IDN APIs, defaults to yes
+!MESSAGE Requires Windows Vista or later, or installation from:
+!MESSAGE http://www.microsoft.com/downloads/details.aspx?FamilyID=AD6158D7-DDBA-416A-9109-07607425A815
+!MESSAGE ENABLE_WINSSL=<yes or no> - Enable native Windows SSL support, defaults to yes
+!MESSAGE GEN_PDB=<yes or no> - Generate Program Database (debug symbols for release build)
!MESSAGE DEBUG=<yes or no> - Debug builds
!ERROR please choose a valid mode
|