From: Francesco Chemolli Date: Mon, 22 Mar 2010 15:06:49 +0000 (+0100) Subject: Print out the version of cppunit during configure. X-Git-Tag: SQUID_3_2_0_1~337 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=78cae3b4ad726bb74b504ade7f1d857d9b5504b4;p=thirdparty%2Fsquid.git Print out the version of cppunit during configure. --- diff --git a/configure.in b/configure.in index c3fdc0ffc1..6e2edbc213 100644 --- a/configure.in +++ b/configure.in @@ -2400,7 +2400,9 @@ AC_ARG_WITH(filedescriptors, AC_PATH_PROG(CPPUNITCONFIG, cppunit-config, false) if $CPPUNITCONFIG --help >/dev/null; then - AC_MSG_NOTICE([using system installed cppunit]) + squid_cv_cppunit_version="`$CPPUNITCONFIG --version`" + AC_MSG_NOTICE([using system installed cppunit version $squid_cv_cppunit_version]) + unset squid_cv_cppunit_version SQUID_CPPUNIT_LIBS="`$CPPUNITCONFIG --libs`" SQUID_CPPUNIT_LA='' SQUID_CPPUNIT_INC="`$CPPUNITCONFIG --cflags`"