-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@800 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
7 changed files
with
57 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
Sun Jul 2 21:17:37 2000 WATANABE Hirofumi <[email protected]> | ||
|
||
* configure.in: support without --enable-shared for cygwin/mingw32. | ||
|
||
* cygwin/GNUmakefile: ditto. | ||
|
||
* ext/extmk.rb.in: use null device if it exists for cross-compiling. | ||
|
||
* lib/mkmf.rb: ditto. | ||
|
||
* util.c (ruby_mktemp): remove unused ruby_mktemp(). | ||
|
||
Sun Jul 2 03:37:50 2000 Minero Aoki <[email protected]> | ||
|
||
* lib/net/protocol.rb, smtp.rb, pop.rb, http.rb: 1.1.25. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,26 @@ | ||
include Makefile | ||
|
||
ARCH=@arch@ | ||
ENABLE_SHARED=@ENABLE_SHARED@ | ||
|
||
ifneq (,$(findstring mingw, $(ARCH))) | ||
DLL = rubymg.dll | ||
DLLWRAP_FLAGS = | ||
ifneq (,$(findstring no, $(ENABLE_SHARED))) | ||
DLL = dummy.exe | ||
DLLNAME = ruby.exe | ||
RUBYEXP = --output-exp=ruby.exp | ||
MAINOBJ := ruby.exp $(MAINOBJ) | ||
LIBRUBYARG := librubys.a | ||
else | ||
DLL = rubycw.dll | ||
DLLWRAP_FLAGS = -Wl,-e,__cygwin_noncygwin_dll_entry@12 | ||
ifneq (,$(findstring mingw, $(ARCH))) | ||
DLL = rubymg.dll | ||
DLLNAME = rubymg.dll | ||
else | ||
DLL = rubycw.dll | ||
DLLNAME = rubycw.dll | ||
endif | ||
RUBYEXP = | ||
endif | ||
|
||
ifeq (,$(strip $(LIBRUBY_ALIASES))) | ||
miniruby$(EXEEXT): $(DLL) | ||
endif | ||
|
||
$(DLL): $(OBJS) dmyext.o | ||
$(LDSHARED) $(DLDFLAGS) -o $(DLL) --output-lib=$(LIBRUBY_SO) --dllname=$(DLL) --add-stdcall-alias $(OBJS) dmyext.o $(LIBS) | ||
$(LDSHARED) $(DLDFLAGS) -o $(DLL) --output-lib=$(LIBRUBY_SO) --dllname=$(DLLNAME) --add-stdcall-alias $(RUBYEXP) $(OBJS) dmyext.o $(LIBS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#define RUBY_VERSION "1.5.4" | ||
#define RUBY_RELEASE_DATE "2000-06-29" | ||
#define RUBY_RELEASE_DATE "2000-07-02" | ||
#define RUBY_VERSION_CODE 154 | ||
#define RUBY_RELEASE_CODE 20000629 | ||
#define RUBY_RELEASE_CODE 20000702 |