Skip to content

Commit

Permalink
merge revision(s) 21750:
Browse files Browse the repository at this point in the history
	* lib/mkmf.rb (configuration): leaves PATH_SEPARATOR unchanged.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7@23104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
shyouhei committed Mar 31, 2009
1 parent 20fee9c commit 51083a1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
@@ -1,3 +1,14 @@
Thu Mar 31 18:18:18 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>

* lib/mkmf.rb (mkintpath): new function which converts native path
to format acceptable in Makefile.

* lib/mkmf.rb (configuration): leaves PATH_SEPARATOR unchanged.

* lib/mkmf.rb (configuration): convers srcdir, topdir and hdrdir.
a patch by Alexey Borzenkov <snaury AT gmail.com> at
[ruby-core:21448].

Fri Mar 27 19:22:02 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>

* gc.c (run_final): frees zombies only. [ruby-dev:38171]
Expand Down
2 changes: 1 addition & 1 deletion lib/mkmf.rb
Expand Up @@ -1265,7 +1265,7 @@ def configuration(srcdir)
if CONFIG['target_os'] != 'cygwin'
vpath.each {|p| p.sub!(/.*/, '$(shell cygpath -u \&)')}
end
when 'msdosdjgpp', 'mingw32'
when 'msdosdjgpp'
CONFIG['PATH_SEPARATOR'] = ';'
end
end
Expand Down
8 changes: 4 additions & 4 deletions version.h
@@ -1,15 +1,15 @@
#define RUBY_VERSION "1.8.7"
#define RUBY_RELEASE_DATE "2009-03-27"
#define RUBY_RELEASE_DATE "2009-03-31"
#define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20090327
#define RUBY_PATCHLEVEL 155
#define RUBY_RELEASE_CODE 20090331
#define RUBY_PATCHLEVEL 156

#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8
#define RUBY_VERSION_TEENY 7
#define RUBY_RELEASE_YEAR 2009
#define RUBY_RELEASE_MONTH 3
#define RUBY_RELEASE_DAY 27
#define RUBY_RELEASE_DAY 31

#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];
Expand Down

0 comments on commit 51083a1

Please sign in to comment.