You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2011/02/19 19:58:32 UTC

svn commit: r1072412 - /subversion/trunk/build/ac-macros/sqlite.m4

Author: danielsh
Date: Sat Feb 19 18:58:31 2011
New Revision: 1072412

URL: http://svn.apache.org/viewvc?rev=1072412&view=rev
Log:
Silence './configure -q'.

* build/ac-macros/sqlite.m4
  (SVN_SQLITE_FILE_CONFIG): Use autoconf macros that may suppress the output.

Modified:
    subversion/trunk/build/ac-macros/sqlite.m4

Modified: subversion/trunk/build/ac-macros/sqlite.m4
URL: http://svn.apache.org/viewvc/subversion/trunk/build/ac-macros/sqlite.m4?rev=1072412&r1=1072411&r2=1072412&view=diff
==============================================================================
--- subversion/trunk/build/ac-macros/sqlite.m4 (original)
+++ subversion/trunk/build/ac-macros/sqlite.m4 Sat Feb 19 18:58:31 2011
@@ -177,9 +177,11 @@ dnl at sqlite_file.  If not, fail.
 AC_DEFUN(SVN_SQLITE_FILE_CONFIG,
 [
   sqlite_amalg="$1"
+  AC_MSG_CHECKING([sqlite amalgamation])
   if test ! -e $sqlite_amalg; then
-    echo "amalgamation not found at $sqlite_amalg"
+    AC_MSG_RESULT([no])
   else
+    AC_MSG_RESULT([yes])
     AC_MSG_CHECKING([sqlite amalgamation file version])
     AC_EGREP_CPP(SQLITE_VERSION_OKAY,[
 #include "$sqlite_amalg"