diff options
| author | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-18 16:22:15 +0000 |
|---|---|---|
| committer | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-18 16:22:15 +0000 |
| commit | 5ef1525b5ed596060f985fce06e0a228c6988fab (patch) | |
| tree | d5e097e133e65060d76952ac0d6ac091fd4f439e | |
| parent | 65a709aea8b43447d0cdabc249049c8d36a2dab9 (diff) | |
* configure.in: Fix c++ compiler auto-selection not only for
Darwin 11.x, but also the other versions of Darwin.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39814 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Mar 19 01:18:00 2013 Kenta Murata <mrkn@mrkn.jp> + + * configure.in: Fix c++ compiler auto-selection not only for + Darwin 11.x, but also the other versions of Darwin. + Tue Mar 19 00:26:22 2013 Narihiro Nakamura <authornari@gmail.com> * gc.c: Improve accuracy of objspace_live_num() and diff --git a/configure.in b/configure.in index 40717dd8e6..ee5e8b1cff 100644 --- a/configure.in +++ b/configure.in @@ -208,7 +208,7 @@ then (it is also a good idea to do 'make clean' before compiling)) fi AS_CASE(["$build_os"], - [darwin11.*], [ + [darwin1*.*], [ AS_CASE(["x$CC"], [xgcc-4.2|x/usr/bin/gcc-4.2], [: ${CXX=g++-4.2}], [xgcc|x/usr/bin/gcc], [: ${CXX=g++}], |
