summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rwxr-xr-xwin32/configure.bat12
1 files changed, 12 insertions, 0 deletions
diff --git a/win32/configure.bat b/win32/configure.bat
index 98c8af3d65..dca517e4f4 100755
--- a/win32/configure.bat
+++ b/win32/configure.bat
@@ -30,6 +30,8 @@ if "%1" == "--install-name" goto :installname
if "%1" == "--so-name" goto :soname
if "%1" == "--enable-install-doc" goto :enable-rdoc
if "%1" == "--disable-install-doc" goto :disable-rdoc
+if "%1" == "--enable-install-static-library" goto :enable-lib
+if "%1" == "--disable-install-static-library" goto :disable-lib
if "%1" == "--enable-debug-env" goto :enable-debug-env
if "%1" == "--disable-debug-env" goto :disable-debug-env
if "%1" == "--enable-rubygems" goto :enable-rubygems
@@ -117,6 +119,16 @@ goto :loop ;
echo>>confargs.tmp %1 \
shift
goto :loop ;
+:enable-lib
+ echo>> ~tmp~.mak "INSTALL_STATIC_LIBRARY=yes" \
+ echo>>confargs.tmp %1 \
+ shift
+goto :loop ;
+:disable-lib
+ echo>> ~tmp~.mak "INSTALL_STATIC_LIBRARY=no" \
+ echo>>confargs.tmp %1 \
+ shift
+goto :loop ;
:enable-debug-env
echo>> ~tmp~.mak "ENABLE_DEBUG_ENV=yes" \
echo>>confargs.tmp %1 \