Fix an m4 overquoting triggering a spurious 'AS_TR_CPP' symbol definition

attempt in generated config.h
This commit is contained in:
Yang Tse 2009-05-07 14:03:04 +00:00
parent 7a928b40f3
commit f32dc6b828
2 changed files with 2 additions and 2 deletions

View File

@ -749,7 +749,7 @@ AC_CHECK_FUNCS([bitncmp \
],[
AC_MSG_RESULT([yes])
eval "ac_cv_func_$func=yes"
AC_DEFINE_UNQUOTED([AS_TR_CPP([HAVE_$func])], [1],
AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$func]), [1],
[Define to 1 if you have the $func function.])
],[
AC_MSG_RESULT([but still no])

View File

@ -2105,7 +2105,7 @@ AC_CHECK_FUNCS([basename \
],[
AC_MSG_RESULT([yes])
eval "ac_cv_func_$func=yes"
AC_DEFINE_UNQUOTED([AS_TR_CPP([HAVE_$func])], [1],
AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$func]), [1],
[Define to 1 if you have the $func function.])
],[
AC_MSG_RESULT([but still no])