ruby-changes:19325
From: nobu <ko1@a...>
Date: Wed, 27 Apr 2011 07:42:58 +0900 (JST)
Subject: [ruby-changes:19325] Ruby:r31365 (trunk): * configure.in (STRIP): use proper toolchain. based on a patch
nobu 2011-04-27 07:42:46 +0900 (Wed, 27 Apr 2011) New Revision: 31365 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31365 Log: * configure.in (STRIP): use proper toolchain. based on a patch from Jon Forums at [ruby-core:35909]. fixes #4617 Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 31364) +++ configure.in (revision 31365) @@ -2136,18 +2136,17 @@ test ".$DLEXT2" = "." || AC_DEFINE_UNQUOTED(DLEXT2, ".$DLEXT2") AC_SUBST(DLEXT) -AC_SUBST(STRIP)dnl if test "$with_dln_a_out" = yes; then STRIP=true else - STRIP=strip + AC_CHECK_TOOL(STRIP, strip, :)dnl fi AS_CASE(["$target_os"], [linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu], [ - STRIP='strip -S -x'], + STRIP="$STRIP -S -x"], [nextstep* | openstep* | rhapsody* | darwin*], [ - STRIP='strip -A -n']) + STRIP="$STRIP -A -n"]) AC_ARG_WITH(ext, AC_HELP_STRING([--with-ext=EXTS], Index: ChangeLog =================================================================== --- ChangeLog (revision 31364) +++ ChangeLog (revision 31365) @@ -1,3 +1,8 @@ +Wed Apr 27 07:42:44 2011 Nobuyoshi Nakada <nobu@r...> + + * configure.in (STRIP): use proper toolchain. based on a patch + from Jon Forums at [ruby-core:35909]. fixes #4617 + Wed Apr 27 01:20:59 2011 Tadayoshi Funaba <tadf@d...> * ext/date/date_core.c (date_zone_to_diff): renamed. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/