1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* common.mk (LIBRUBY_SO): add dependency to $(BUILTIN_ENCOBJS).

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15785 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2008-03-16 08:31:00 +00:00
parent 073ee17567
commit 9e202f9398
3 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Sun Mar 16 17:28:07 2008 NARUSE, Yui <naruse@ruby-lang.org>
* common.mk (LIBRUBY_SO): add dependency to $(BUILTIN_ENCOBJS).
Sun Mar 16 08:51:41 2008 Tadayoshi Funaba <tadf@dotrb.org>
* include/ruby/intern.h: added some declarations.

View file

@ -122,7 +122,7 @@ $(PROGRAM): $(LIBRUBY) $(MAINOBJ) $(OBJS) $(EXTOBJS) $(SETUP) $(PREP)
$(LIBRUBY_A): $(OBJS) $(DMYEXT) $(ARCHFILE)
$(LIBRUBY_SO): $(OBJS) $(DLDOBJS) $(LIBRUBY_A) $(PREP) $(LIBRUBY_SO_UPDATE)
$(LIBRUBY_SO): $(OBJS) $(DLDOBJS) $(LIBRUBY_A) $(PREP) $(LIBRUBY_SO_UPDATE) $(BUILTIN_ENCOBJS)
$(LIBRUBY_EXTS):
@exit > $@

View file

@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.0"
#define RUBY_RELEASE_DATE "2008-03-15"
#define RUBY_RELEASE_DATE "2008-03-16"
#define RUBY_VERSION_CODE 190
#define RUBY_RELEASE_CODE 20080315
#define RUBY_RELEASE_CODE 20080316
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2008
#define RUBY_RELEASE_MONTH 3
#define RUBY_RELEASE_DAY 15
#define RUBY_RELEASE_DAY 16
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];