s/AC_LIBOBJ/rk_LIBOBJ/

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@11003 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
2002-05-19 19:37:08 +00:00
parent 424dc18815
commit eb415580f5
3 changed files with 3 additions and 3 deletions

View File

@@ -9,4 +9,4 @@ AC_DEFUN([AC_BROKEN],
[AC_CHECK_FUNC(rk_func,
[AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_[]rk_func), 1,
[Define if you have the function `]rk_func['.])],
[AC_LIBOBJ(rk_func)])])])
[rk_LIBOBJ(rk_func)])])])

View File

@@ -22,5 +22,5 @@ if eval "test \"\${ac_cv_func_[]$1}\" = yes"; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
AC_LIBOBJ($1)
rk_LIBOBJ($1)
fi])

View File

@@ -7,6 +7,6 @@ dnl
AC_DEFUN(AC_FIND_IF_NOT_BROKEN,
[AC_FIND_FUNC([$1], [$2], [$3], [$4])
if eval "test \"$ac_cv_func_$1\" != yes"; then
AC_LIBOBJ([$1])
rk_LIBOBJ([$1])
fi
])