From b063dd016cecace0ca844d1471db668f4f1d6586 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 12 May 2014 11:33:39 +0000 Subject: [PATCH] * configure.in: Invoke AC_REPLACE_FUNCS for each function. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ configure.in | 25 +++++++++++++++++++++---- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4c8e75538d..bedb3d99bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon May 12 20:33:01 2014 Tanaka Akira + + * configure.in: Invoke AC_REPLACE_FUNCS for each function. + Mon May 12 19:52:11 2014 Koichi Sasada * gc.c: count young object correctly and show it in GC.stat diff --git a/configure.in b/configure.in index fb3b86e76b..ba40553c3f 100644 --- a/configure.in +++ b/configure.in @@ -1920,10 +1920,27 @@ AS_CASE(["$target_os"],[freebsd*],[ 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"],