File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change
1
+ Thu Mar 31 18:18:18 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
+
3
+ * lib/mkmf.rb (mkintpath): new function which converts native path
4
+ to format acceptable in Makefile.
5
+
6
+ * lib/mkmf.rb (configuration): leaves PATH_SEPARATOR unchanged.
7
+
8
+ * lib/mkmf.rb (configuration): convers srcdir, topdir and hdrdir.
9
+ a patch by Alexey Borzenkov <snaury AT gmail.com> at
10
+ [ruby-core:21448].
11
+
1
12
Fri Mar 27 19:12:40 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
13
3
14
* gc.c (run_final): frees zombies only. [ruby-dev:38171]
Original file line number Diff line number Diff line change @@ -1063,7 +1063,7 @@ def configuration(srcdir)
1063
1063
if CONFIG [ 'target_os' ] != 'cygwin'
1064
1064
vpath . each { |p | p . sub! ( /.*/ , '$(shell cygpath -u \&)' ) }
1065
1065
end
1066
- when 'msdosdjgpp' , 'mingw32'
1066
+ when 'msdosdjgpp'
1067
1067
CONFIG [ 'PATH_SEPARATOR' ] = ';'
1068
1068
end
1069
1069
end
Original file line number Diff line number Diff line change 1
1
#define RUBY_VERSION "1.8.6"
2
- #define RUBY_RELEASE_DATE "2009-03-27 "
2
+ #define RUBY_RELEASE_DATE "2009-03-31 "
3
3
#define RUBY_VERSION_CODE 186
4
- #define RUBY_RELEASE_CODE 20090327
5
- #define RUBY_PATCHLEVEL 367
4
+ #define RUBY_RELEASE_CODE 20090331
5
+ #define RUBY_PATCHLEVEL 368
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
9
9
#define RUBY_VERSION_TEENY 6
10
10
#define RUBY_RELEASE_YEAR 2009
11
11
#define RUBY_RELEASE_MONTH 3
12
- #define RUBY_RELEASE_DAY 27
12
+ #define RUBY_RELEASE_DAY 31
13
13
14
14
#ifdef RUBY_EXTERN
15
15
RUBY_EXTERN const char ruby_version [];
You can’t perform that action at this time.
0 commit comments