1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/tool/m4/ruby_replace_funcs.m4

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
375 B
Text
Raw Normal View History

dnl -*- Autoconf -*-
dnl RUBY_REPLACE_FUNC [func] [included]
AC_DEFUN([RUBY_REPLACE_FUNC], [dnl
AC_CHECK_DECL([$1],dnl
[AC_DEFINE(AS_TR_CPP(HAVE_[$1]))],dnl
[AC_REPLACE_FUNCS($1)],dnl
[$2])dnl
])dnl
dnl
dnl RUBY_REPLACE_FUNCS [funcs] [included]
2022-03-28 04:02:02 -04:00
AC_DEFUN([RUBY_REPLACE_FUNCS], [dnl
2022-03-30 01:38:33 -04:00
m4_map_args_w([$1], [RUBY_REPLACE_FUNC(], [, [$2])])dnl
])dnl