improved "deeper" check

This commit is contained in:
Daniel Stenberg 2003-03-14 12:44:56 +00:00
parent 1ab0134522
commit d65587b06c
1 changed files with 2 additions and 1 deletions

View File

@ -758,8 +758,9 @@ dnl if not found, $ac_func is the name we check for
AC_TRY_LINK( [],
[ $func ();],
AC_MSG_RESULT(yes!)
eval "ac_cv_func_$func=yes"
def=`echo "HAVE_$func" | tr 'a-z' 'A-Z'`
AC_DEFINE($def, 1, [If you have $func]),
AC_DEFINE_UNQUOTED($def, 1, [If you have $func]),
AC_MSG_RESULT(but still no)
)