代码拉取完成,页面将自动刷新
# FIND_FILE([OUTPUT], [FILE_NAME], [SEARCH_PATHS])
# The colon-delimited paths in SEARCH_PATHS are searched to determine
# whether they contain the file FILE_NAME. If so, OUTPUT is set to the
# directory containing the file. Otherwise, an error is produced.
# ---------------------------------------------------------------------
AC_DEFUN([FIND_FILE], [
AC_MSG_CHECKING([for $2])
$1=
ac__save_ifs="$IFS"
IFS=:
for ac__path in $3
do
# IFS doesn't consolidate consecutive delimiters
ac__path=$(echo "$ac__path" | sed 's/:*$//')
if test -r "$ac__path/$2" ; then
IFS="$ac__save_ifs"
AC_MSG_RESULT([$ac__path])
$1=$ac__path
break
fi
done
IFS="$ac__save_ifs"
if test "z$$1" = z ; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([cannot find $2 in $3])
fi
])
# JOIN_EACH([OUTPUT], [PATHS], [SUBDIR])
# Append SUBDIR to each of the colon-delimited PATHS and put the result
# in OUTPUT.
# ---------------------------------------------------------------------
AC_DEFUN([JOIN_EACH], [
$1=
ac__save_ifs="$IFS"
IFS=:
for dir in $2
do
$1="$$1:$dir/$3"
done
IFS="$ac__save_ifs"
])
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。