fix empty output for check in configure summary.

0.96
Török Edvin 16 years ago
parent ada793857b
commit 86cec97d2d
  1. 13
      configure
  2. 7
      configure.in

13
configure vendored

@ -25073,17 +25073,22 @@ EOF
{ $as_echo "$as_me:${as_lineno-$LINENO}: Summary of miscellaneous features" >&5
$as_echo "$as_me: Summary of miscellaneous features" >&6;}
if test "x$CHECK_LIBS" = "x"; then
check_libs="no"
else
check_libs="$CHECK_LIBS"
fi
$as_echo_n " check : "
if test "x$enable_check_ut" = "xno"; then :
$as_echo "$CHECK_LIBS (disabled)"
$as_echo "$check_libs (disabled)"
elif test "x$enable_check_ut" = "xyes"; then :
$as_echo "$CHECK_LIBS"
$as_echo "$check_libs"
elif test "x$enable_check_ut" = "x"; then :
$as_echo "$CHECK_LIBS"
$as_echo "$check_libs"
else
$as_echo "$CHECK_LIBS ($enable_check_ut)"
$as_echo "$check_libs ($enable_check_ut)"
fi

@ -1647,7 +1647,12 @@ cat <<EOF
EOF
AC_MSG_NOTICE([Summary of miscellaneous features])
CL_MSG_STATUS([check ],[$CHECK_LIBS],[$enable_check_ut])
if test "x$CHECK_LIBS" = "x"; then
check_libs="no"
else
check_libs="$CHECK_LIBS"
fi
CL_MSG_STATUS([check ],[$check_libs],[$enable_check_ut])
CL_MSG_STATUS([clamuko ],[$want_clamuko],[$want_clamuko])
if test "x$ac_cv_have_control_in_msghdr" = "xyes"; then
CL_MSG_STATUS([fdpassing ],[$have_fdpass],[$want_fdpassing])

Loading…
Cancel
Save