mirror of
https://github.com/libevent/libevent.git
synced 2025-01-31 09:12:55 +08:00
082941edf2
Given that these are already used inconsistently with `test` checks, it makes sense to consolidate to not use the x-prefix comparisons at all. In any case, it would be nice to think we no longer have to work around a problem that existed in shells many, many years ago. More info: https://github.com/koalaman/shellcheck/wiki/SC2268 https://www.vidarholen.net/contents/blog/?p=1035
23 lines
668 B
Plaintext
23 lines
668 B
Plaintext
# Check if the function is available.
|
|
# HAVE_XXX will be defined if yes.
|
|
|
|
# $1: the name of function
|
|
# $2: the headers in where the function declared
|
|
AC_DEFUN([AX_CHECK_DECL_EX], [dnl
|
|
AS_IF([test "$2" = ""], [AC_MSG_ERROR([header not privided])])
|
|
AS_VAR_PUSHDEF([have_func_var], [HAVE_[]m4_toupper($1)])
|
|
AC_CHECK_DECL([$1],dnl
|
|
[AC_DEFINE([have_func_var], [1], [Define to 1 if you have the `$1' function.])],,dnl
|
|
[$2]dnl
|
|
)
|
|
AS_VAR_POPDEF([have_func_var])dnl
|
|
])
|
|
|
|
AC_DEFUN([AX_CHECK_DECLS_EX], [dnl
|
|
AS_IF([test "$2" = ""], [AC_MSG_ERROR([header not privided])])
|
|
m4_foreach([decl],dnl
|
|
m4_split(m4_normalize($1)),dnl
|
|
[AX_CHECK_DECL_EX([decl], [$2])]dnl
|
|
)
|
|
])
|