From 4257651cd250a58f3dbfa495d1218f91da477f5e Mon Sep 17 00:00:00 2001 From: eban Date: Wed, 26 Jul 2000 02:25:50 +0000 Subject: eban git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@855 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 3 +++ configure.in | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index db993fe98..dd282f886 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ Wed Jul 26 10:09:01 2000 WATANABE Hirofumi * configure.in: set SOLIBS to LIBS on Cygwin. + * configure.in: LIBRUBY_SO='$(RUBY_INSTALL_NAME)'.$target_os.dll + on cygwin and mingw32. ruby-cygwin.dll is bad. why? + Tue Jul 25 19:03:04 2000 WATANABE Hirofumi * cygwin/GNUmakefile: use puts instead of print, because diff --git a/configure.in b/configure.in index 8ec9bed5c..bccbdbac3 100644 --- a/configure.in +++ b/configure.in @@ -825,7 +825,7 @@ case "$target_os" in ;; cygwin*|mingw*) if test x"$enable_shared" = xyes; then - LIBRUBY_SO='$(RUBY_INSTALL_NAME)-'$target_os.dll + LIBRUBY_SO='$(RUBY_INSTALL_NAME).'$target_os.dll LIBRUBY_DLDFLAGS='--dllname=$@ --output-lib=$(LIBRUBY) --add-stdcall-alias --def=$(RUBYDEF)' else LIBRUBY_SO=dummy -- cgit