[Pkg-clamav-commits] [SCM] Debian repository for ClamAV branch, debian/unstable, updated. debian/0.95+dfsg-1-6156-g094ec9b

Török Edvin edwin at clamav.net
Sun Apr 4 01:19:27 UTC 2010


The following commit has been merged in the debian/unstable branch:
commit 86cec97d2d59625cb99ffa6c4922545454affe57
Author: Török Edvin <edwin at clamav.net>
Date:   Tue Feb 9 13:21:14 2010 +0200

    fix empty output for check in configure summary.

diff --git a/configure b/configure
index b0aa737..5e1d6af 100755
--- a/configure
+++ b/configure
@@ -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
 
 
diff --git a/configure.in b/configure.in
index 4c85416..5f831df 100644
--- a/configure.in
+++ b/configure.in
@@ -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])

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list