mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* version.h (RUBY_BUILD_VERSION_STR_3): Workaround for old version of
Fujitsu C Compiler (fcc) on Solaris. [Bug #11944] [ruby-dev:49468] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8fe2421ef1
commit
1c8b8173be
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jan 4 12:07:00 2016 Naohisa Goto <ngotogenome@gmail.com>
|
||||
|
||||
* version.h (RUBY_BUILD_VERSION_STR_3): Workaround for old version of
|
||||
Fujitsu C Compiler (fcc) on Solaris. [Bug #11944] [ruby-dev:49468]
|
||||
|
||||
Mon Jan 4 10:14:24 2016 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
||||
|
||||
* test/coverage/test_coverage.rb: ignored test when enabled to coverage.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#define RUBY_PROGRAM_VERSION_TEENY 0
|
||||
|
||||
#define RUBY_BUILD_VERSION_STR_2(v) STRINGIZE(v##_MAJOR)"."STRINGIZE(v##_MINOR)
|
||||
#define RUBY_BUILD_VERSION_STR_3(v) RUBY_BUILD_VERSION_STR_2(v)"."STRINGIZE(v##_TEENY)
|
||||
#define RUBY_BUILD_VERSION_STR_3(v) STRINGIZE(v##_MAJOR)"."STRINGIZE(v##_MINOR)"."STRINGIZE(v##_TEENY)
|
||||
|
||||
#define RUBY_PROGRAM_VERSION RUBY_BUILD_VERSION_STR_3(RUBY_PROGRAM_VERSION)
|
||||
#define RUBY_VERSION RUBY_PROGRAM_VERSION
|
||||
|
|
Loading…
Add table
Reference in a new issue