ruby-changes:46185
From: nobu <ko1@a...>
Date: Mon, 10 Apr 2017 10:46:28 +0900 (JST)
Subject: [ruby-changes:46185] nobu:r58298 (trunk): configure.in: detect baseruby by default
nobu 2017-04-10 10:46:24 +0900 (Mon, 10 Apr 2017) New Revision: 58298 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58298 Log: configure.in: detect baseruby by default * configure.in: default HAVE_BASERUBY to yes, for auto detection. Modified files: trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 58297) +++ configure.in (revision 58298) @@ -37,10 +37,11 @@ rm() { https://github.com/ruby/ruby/blob/trunk/configure.in#L37 { # environment section +HAVE_BASERUBY=yes AC_ARG_WITH(baseruby, AS_HELP_STRING([--with-baseruby=RUBY], [use RUBY as baseruby; RUBY is the pathname of ruby]), [AS_CASE(["$withval"], - [*ruby*],[BASERUBY=$withval; HAVE_BASERUBY=yes], + [*ruby*],[BASERUBY=$withval], [no],[HAVE_BASERUBY=no], [AC_MSG_ERROR(need ruby)]) ], -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/