aboutsummaryrefslogtreecommitdiffstats
path: root/win32/configure.bat
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-19 04:10:53 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-19 04:10:53 +0000
commitfe5b6676b1013448f6c23b50778b9f57aa010f6d (patch)
tree410723f98511f9c45ba4cfdc75260b7e232359de /win32/configure.bat
parent5bcd6bd99f61b82e2d5cd1eb57dec97b8143d608 (diff)
downloadruby-fe5b6676b1013448f6c23b50778b9f57aa010f6d.tar.gz
* ext/extmk.rb, win32/Makefile.sub, win32/configure.bat,
win32/setup.mak: --with-static-linked-ext support on mswin32. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5496 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/configure.bat')
-rwxr-xr-xwin32/configure.bat15
1 files changed, 11 insertions, 4 deletions
diff --git a/win32/configure.bat b/win32/configure.bat
index d61ae6b3ef..037b656f48 100755
--- a/win32/configure.bat
+++ b/win32/configure.bat
@@ -15,6 +15,7 @@ if "%1" == "--srcdir" goto :srcdir
if "%1" == "srcdir" goto :srcdir
if "%1" == "--target" goto :target
if "%1" == "target" goto :target
+if "%1" == "--with-static-linked-ext" goto :extstatic
if "%1" == "-h" goto :help
if "%1" == "--help" goto :help
echo>> ~tmp~.mak "%1" \
@@ -35,14 +36,20 @@ goto :loop
shift
shift
goto :loop
+:extstatic
+ echo>> ~tmp~.mak "EXTSTATIC=static" \
+ shift
+goto :loop
:help
echo Configuration:
- echo --help display this help
- echo --srcdir=DIR find the sources in DIR [configure dir or `..']
+ echo --help display this help
+ echo --srcdir=DIR find the sources in DIR [configure dir or `..']
echo Installation directories:
- echo --prefix=PREFIX install files in PREFIX [/usr]
+ echo --prefix=PREFIX install files in PREFIX [/usr]
echo System types:
- echo --target=TARGET configure for TARGET [i386-mswin32]
+ echo --target=TARGET configure for TARGET [i386-mswin32]
+ echo Optional Package:
+ echo --with-static-linked-ext link external modules statically
del ~tmp~.mak
goto :exit
:end