workaround feature of newer autoconf

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8680 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
2000-07-15 18:10:58 +00:00
parent 9ef25327d7
commit 0b4a04d5fe

View File

@@ -11,8 +11,9 @@ int foo() { return $2; }],
])
define([foo], [HAVE_]translit($2, [a-z], [A-Z]))
AC_MSG_RESULT(`eval echo \\$ac_cv_var_$2`)
if test `eval echo \\$ac_cv_var_$2` = yes; then
ac_foo=`eval echo \\$ac_cv_var_$2`
AC_MSG_RESULT($ac_foo)
if test "$ac_foo" = yes; then
AC_DEFINE_UNQUOTED(foo, 1, [define if you have $2])
AC_CHECK_DECLARATION([$1],[$2])
fi