aboutsummaryrefslogtreecommitdiff
path: root/winbuild
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2012-01-19 14:08:24 +0100
committerPierre Joye <pierre.php@gmail.com>2012-01-19 14:08:24 +0100
commit00e615de7e5a70cd9a010b11af0edf7e7aa14421 (patch)
treeb51a9d755859cdde33ff9daf397069646c0c5159 /winbuild
parentb2aaf3c2ad23a1b8425930eaad38f76d0e218c71 (diff)
- s, use, enable, for options name, avoiding conflicts with the names used in the makefile
Diffstat (limited to 'winbuild')
-rw-r--r--winbuild/Makefile.vc12
1 files changed, 7 insertions, 5 deletions
diff --git a/winbuild/Makefile.vc b/winbuild/Makefile.vc
index 5efd0920f..5967db1fe 100644
--- a/winbuild/Makefile.vc
+++ b/winbuild/Makefile.vc
@@ -24,9 +24,9 @@ CFGSET=true
!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 USE_SSSPI=<yes or no> - Enable SSPI support, default to yes
-!MESSAGE USE_IPV6=<yes or no> - Enable IPV6, default to yes
+!MESSAGE ENABLE_IPV6=<yes or no> - Enable IPV6, default to yes
!MESSAGE DEBUG=<yes or no> - Debug builds
-!MESSAGE USE_IDN=<yes or no> - Wheter or not to use IDN Windows APIs. Requires Windows Vista or later.
+!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 GEN_PDB=<yes or no> - Generate Program Database (debug symbols release build)
!ERROR please choose a valid mode
@@ -49,11 +49,13 @@ CURL_OBJS=$(CURL_OBJS:.c=.obj)
USE_SSPI=true
!ENDIF
-!IFNDEF USE_IPV6
-USE_IPV6=true
+!IFNDEF ENABLE_IPV6
+USE_IPV6 =true
+!ELSEIF "$(ENABLE_IPV6)"=="yes"
+USE_IPV6 =true
!ENDIF
-!IFNDEF USE_IDN
+!IFNDEF ENABLE_IDN
USE_IDN=true
!ENDIF