From 7370aa3126e5bf27c26401389b4d87c377dbab10 Mon Sep 17 00:00:00 2001 From: usa Date: Thu, 23 Aug 2012 03:30:58 +0000 Subject: * win32/configure.bat: support --with(out)?-ext(ensions) options. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- win32/configure.bat | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'win32') diff --git a/win32/configure.bat b/win32/configure.bat index 17879eb57a..a8c5a7cb37 100755 --- a/win32/configure.bat +++ b/win32/configure.bat @@ -32,11 +32,19 @@ if "%1" == "--path" goto :path if "%1" == "--with-baseruby" goto :baseruby if "%1" == "--with-ntver" goto :ntver echo %1| findstr "^--with-.*-dir$" > nul -if not errorlevel 1 goto :withdir +if not errorlevel 1 goto :witharg echo %1| findstr "^--with-.*-include$" > nul -if not errorlevel 1 goto :withdir +if not errorlevel 1 goto :witharg echo %1| findstr "^--with-.*-lib$" > nul -if not errorlevel 1 goto :withdir +if not errorlevel 1 goto :witharg +echo %1| findstr "^--with-ext$" > nul +if not errorlevel 1 goto :witharg +echo %1| findstr "^--with-extensions$" > nul +if not errorlevel 1 goto :witharg +echo %1| findstr "^--without-ext$" > nul +if not errorlevel 1 goto :witharg +echo %1| findstr "^--without-extensions$" > nul +if not errorlevel 1 goto :witharg if "%1" == "-h" goto :help if "%1" == "--help" goto :help echo>>confargs.tmp %1 \ @@ -148,7 +156,7 @@ goto :loop shift shift goto :loop -:withdir +:witharg echo>>confargs.tmp %1=%2 \ shift shift -- cgit v1.2.3