summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--bcc32/Makefile.sub4
-rw-r--r--version.h6
-rw-r--r--win32/Makefile.sub2
-rw-r--r--wince/Makefile.sub2
5 files changed, 12 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 104835a3d5..84a06495fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Feb 10 15:07:23 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * {bcc32,win32,wince}/Makefile.sub (MISSING): added cbrt.obj.
+
Sun Feb 10 12:58:33 2008 Eric Hodel <drbrain@segment7.net>
* lib/rdoc/code_objects.rb: Make some attributes accessible for reuse.
diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub
index 6d2dc4867b..5b3939bf45 100644
--- a/bcc32/Makefile.sub
+++ b/bcc32/Makefile.sub
@@ -156,7 +156,7 @@ EXTLIBS =
MEMLIB =
!endif
LIBS = $(MEMLIB) cw32i.lib import32.lib ws2_32.lib $(EXTLIBS)
-MISSING = acosh.obj crypt.obj erf.obj lgamma_r.obj strlcat.obj strlcpy.obj tgamma.obj win32.obj
+MISSING = acosh.obj cbrt.obj crypt.obj erf.obj lgamma_r.obj strlcat.obj strlcpy.obj tgamma.obj win32.obj
!ifndef STACK
STACK = 0x2000000
@@ -239,6 +239,8 @@ PHONY: nul
@exit
|
+PHONY: nul
+
RUBY_CONFIG_H = $(arch_hdrdir)/ruby/config.h
CONFIG_H = ./.config.h.time
diff --git a/version.h b/version.h
index ed64f2fe56..d7c6efb752 100644
--- a/version.h
+++ b/version.h
@@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.0"
-#define RUBY_RELEASE_DATE "2008-02-09"
+#define RUBY_RELEASE_DATE "2008-02-10"
#define RUBY_VERSION_CODE 190
-#define RUBY_RELEASE_CODE 20080209
+#define RUBY_RELEASE_CODE 20080210
#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 2
-#define RUBY_RELEASE_DAY 9
+#define RUBY_RELEASE_DAY 10
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index dd7f7dba26..be31962b76 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -172,7 +172,7 @@ EXTLIBS =
LIBS = oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib $(EXTLIBS)
!endif
!if !defined(MISSING)
-MISSING = acosh.obj crypt.obj erf.obj lgamma_r.obj strlcpy.obj strlcat.obj tgamma.obj win32.obj
+MISSING = acosh.obj cbrt.obj crypt.obj erf.obj lgamma_r.obj strlcat.obj strlcpy.obj tgamma.obj win32.obj
!endif
ARFLAGS = -machine:$(MACHINE) -out:
diff --git a/wince/Makefile.sub b/wince/Makefile.sub
index 29a57b8c39..d8f595a6bf 100644
--- a/wince/Makefile.sub
+++ b/wince/Makefile.sub
@@ -25,7 +25,7 @@ LDFLAGS = -link -incremental:yes -pdb:none -machine:$(MACHINE) -subsystem:$(SUBS
XLDFLAGS = -stack:$(STACK) -subsystem:$(SUBSYSTEM)
!endif
LIBS = coredll.lib ceshell.lib winsock.lib $(EXTLIBS)
-MISSING = acosh.obj crypt.obj dup2.obj erf.obj hypot.obj \
+MISSING = acosh.obj cbrt.obj crypt.obj dup2.obj erf.obj hypot.obj \
isinf.obj isnan.obj lgamma.obj strftime.obj strlcat.obj strlcpy.obj
tgamma.obj win32.obj \
assert.obj direct.obj errno.obj io_wce.obj process_wce.obj \