ruby-changes:33845
From: akr <ko1@a...>
Date: Mon, 12 May 2014 20:33:46 +0900 (JST)
Subject: [ruby-changes:33845] akr:r45926 (trunk): * configure.in: Invoke AC_REPLACE_FUNCS for each function.
akr 2014-05-12 20:33:39 +0900 (Mon, 12 May 2014) New Revision: 45926 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=45926 Log: * configure.in: Invoke AC_REPLACE_FUNCS for each function. Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 45925) +++ configure.in (revision 45926) @@ -1920,10 +1920,27 @@ AS_CASE(["$target_os"],[freebsd*],[ https://github.com/ruby/ruby/blob/trunk/configure.in#L1920 AC_DEFINE(BROKEN_CLOSE) AC_REPLACE_FUNCS(close) ]) -AC_REPLACE_FUNCS(dup2 memmove strerror\ - strchr strstr crypt flock\ - isnan finite isinf hypot acosh erf tgamma lgamma_r cbrt \ - strlcpy strlcat ffs setproctitle) + +AC_REPLACE_FUNCS(acosh) +AC_REPLACE_FUNCS(cbrt) +AC_REPLACE_FUNCS(crypt) +AC_REPLACE_FUNCS(dup2) +AC_REPLACE_FUNCS(erf) +AC_REPLACE_FUNCS(ffs) +AC_REPLACE_FUNCS(finite) +AC_REPLACE_FUNCS(flock) +AC_REPLACE_FUNCS(hypot) +AC_REPLACE_FUNCS(isinf) +AC_REPLACE_FUNCS(isnan) +AC_REPLACE_FUNCS(lgamma_r) +AC_REPLACE_FUNCS(memmove) +AC_REPLACE_FUNCS(setproctitle) +AC_REPLACE_FUNCS(strchr) +AC_REPLACE_FUNCS(strerror) +AC_REPLACE_FUNCS(strlcat) +AC_REPLACE_FUNCS(strlcpy) +AC_REPLACE_FUNCS(strstr) +AC_REPLACE_FUNCS(tgamma) # for missing/setproctitle.c AS_CASE(["$target_os"], Index: ChangeLog =================================================================== --- ChangeLog (revision 45925) +++ ChangeLog (revision 45926) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon May 12 20:33:01 2014 Tanaka Akira <akr@f...> + + * configure.in: Invoke AC_REPLACE_FUNCS for each function. + Mon May 12 19:52:11 2014 Koichi Sasada <ko1@a...> * gc.c: count young object correctly and show it in GC.stat -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/