Browse code

fix empty output for check in configure summary.

Török Edvin authored on 2010/02/09 20:21:14
Showing 2 changed files
... ...
@@ -25073,17 +25073,22 @@ EOF
25073 25073
 
25074 25074
 { $as_echo "$as_me:${as_lineno-$LINENO}: Summary of miscellaneous  features" >&5
25075 25075
 $as_echo "$as_me: Summary of miscellaneous  features" >&6;}
25076
+if test "x$CHECK_LIBS" = "x"; then
25077
+    check_libs="no"
25078
+else
25079
+    check_libs="$CHECK_LIBS"
25080
+fi
25076 25081
 
25077 25082
 
25078 25083
    $as_echo_n "              check       : "
25079 25084
    if test "x$enable_check_ut" = "xno"; then :
25080
-  $as_echo "$CHECK_LIBS (disabled)"
25085
+  $as_echo "$check_libs (disabled)"
25081 25086
 elif test "x$enable_check_ut" = "xyes"; then :
25082
-  $as_echo "$CHECK_LIBS"
25087
+  $as_echo "$check_libs"
25083 25088
 elif test "x$enable_check_ut" = "x"; then :
25084
-  $as_echo "$CHECK_LIBS"
25089
+  $as_echo "$check_libs"
25085 25090
 else
25086
-  $as_echo "$CHECK_LIBS ($enable_check_ut)"
25091
+  $as_echo "$check_libs ($enable_check_ut)"
25087 25092
 fi
25088 25093
 
25089 25094
 
... ...
@@ -1647,7 +1647,12 @@ cat <<EOF
1647 1647
 EOF
1648 1648
 
1649 1649
 AC_MSG_NOTICE([Summary of miscellaneous  features])
1650
-CL_MSG_STATUS([check       ],[$CHECK_LIBS],[$enable_check_ut])
1650
+if test "x$CHECK_LIBS" = "x"; then
1651
+    check_libs="no"
1652
+else
1653
+    check_libs="$CHECK_LIBS"
1654
+fi
1655
+CL_MSG_STATUS([check       ],[$check_libs],[$enable_check_ut])
1651 1656
 CL_MSG_STATUS([clamuko     ],[$want_clamuko],[$want_clamuko])
1652 1657
 if test "x$ac_cv_have_control_in_msghdr" = "xyes"; then
1653 1658
     CL_MSG_STATUS([fdpassing   ],[$have_fdpass],[$want_fdpassing])