Skip to content
Snippets Groups Projects
Commit f32dc6b8 authored by Yang Tse's avatar Yang Tse
Browse files

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

attempt in generated config.h
parent 7a928b40
No related branches found
No related tags found
No related merge requests found
......@@ -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])
......
......@@ -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])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment