blob: 10e85f1ac9a8b871e2ade064ecdfd64f7ac05f9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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]
AC_DEFUN([RUBY_REPLACE_FUNCS] [dnl
m4_map_args_w([$1], [RUBY_REPLACE_FUNC(], [), [$2]])dnl
])dnl
|