blob: da235946c860c2f8ce4acc0c6f2aecb686880a10 (
plain) (
tree)
|
|
AC_DEFUN([results], [
dnl This is a hack to allow "with" names, otherwise "enable".
num=`expr $1 : 'with'`
if test "$num" != "0"; then
var="`echo '$'$1`"
else
var="`echo '$'enable_$1`"
fi
echo -n '('
if eval "test x$var = xyes"; then
echo -n '+'
elif test -n "$3" && eval "test x$var = x$3"; then
echo -n '+'
else
echo -n '-'
fi
echo -n "$2) "
])
|