diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-30 17:06:08 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-30 17:06:08 +0000 |
commit | 173e2f6636701f7657a0acb3dcba33e9d66b562d (patch) | |
tree | 6ce9e2f6e9330dd8d6eebed5706ce80308bd32b1 | |
parent | 17ab6e7ef4f818fba1c82e12fa5297c6aac5a411 (diff) |
eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sun Oct 1 00:43:34 2000 WATANABE Hirofumi <[email protected]> + + * configure.in: exp-name was wrong on cygwin and mingw32. + Wed Sep 27 18:40:05 2000 Yukihiro Matsumoto <[email protected]> * stable version 1.6.1 released. diff --git a/configure.in b/configure.in index 0df95deaf3..e4dbcd166e 100644 --- a/configure.in +++ b/configure.in @@ -855,7 +855,7 @@ case "$target_os" in LIBRUBY_DLDFLAGS='--dllname=$@ --output-lib=$(LIBRUBY) --add-stdcall-alias --def=$(RUBYDEF)' else LIBRUBY_SO=dummy - LIBRUBY_DLDFLAGS='--output-exp=$(RUBY_SO_NAME).exp --dllname=$(RUBY_SO_NAME)$(EXEEXT) --output-lib=$(LIBRUBY) --add-stdcall-alias --def=$(RUBYDEF)' + LIBRUBY_DLDFLAGS='--output-exp=$(RUBY_INSTALL_NAME).exp --dllname=$(RUBY_INSTALL_NAME)$(EXEEXT) --output-lib=$(LIBRUBY) --add-stdcall-alias --def=$(RUBYDEF)' fi LIBRUBY_ALIASES='' LIBRUBY_A='lib$(RUBY_INSTALL_NAME)s.a' |