summaryrefslogtreecommitdiff
path: root/win32/configure.bat
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-26 08:55:34 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-26 08:55:34 +0000
commit39e457b4e7896bf857b88b361dc0202ba3327961 (patch)
treea7616eac9752b03898022207c02083dbd8027554 /win32/configure.bat
parent4d786d21e3e80a70554c3fed7aa39e8ec7922b44 (diff)
* win32/{configure.bat, setup.mak, Makefile.sub}: add new configure
option ``--with-ntver''. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/configure.bat')
-rwxr-xr-xwin32/configure.bat10
1 files changed, 9 insertions, 1 deletions
diff --git a/win32/configure.bat b/win32/configure.bat
index 4cac13e08c..ad00266528 100755
--- a/win32/configure.bat
+++ b/win32/configure.bat
@@ -32,6 +32,7 @@ if "%1" == "--path" goto :path
if "%1" == "--with-baseruby" goto :baseruby
if "%1" == "-h" goto :help
if "%1" == "--help" goto :help
+if "%1" == "--with-ntver" goto :ntver
echo>>confargs.tmp %1 \
shift
goto :loop
@@ -107,6 +108,12 @@ goto :loop
echo>>confargs.tmp %1 \
shift
goto :loop
+:ntver
+ echo>> ~tmp~.mak "NTVER=%2" \
+ echo>>confargs.tmp %1=%2 \
+ shift
+ shift
+goto :loop
:extout
echo>> ~tmp~.mak "EXTOUT=%2" \
echo>>confargs.tmp %1=%2 \
@@ -137,7 +144,8 @@ goto :loop
echo --with-baseruby=RUBY use RUBY as baseruby [ruby]
echo --with-static-linked-ext link external modules statically
echo --disable-install-doc do not install rdoc indexes during install
- echo --enable-win95 enable win95 support
+ echo --disable-win95 disable win95 support
+ echo --with-ntver=0xXXXX target NT version (shouldn't use with old SDK)
del *.tmp
del ~tmp~.mak
goto :exit