You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Greg Stein <gs...@gmail.com> on 2009/06/27 14:54:08 UTC

Re: svn commit: r38218 - in trunk: . build/ac-macros

I don't understand this... config.log can be Huge. That will obscure  
any error message printed by svn's configure.

And I can just look at config.log if necessary.



On Jun 27, 2009, at 15:11, Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com 
 > wrote:

> Author: arfrever
> Date: Sat Jun 27 05:11:33 2009
> New Revision: 38218
>
> Log:
> Make `configure` sometimes print the content of 'config.log' when an  
> error occurs.
>
> * build/ac-macros/svn-macros.m4
>  (SVN_MSG_ERROR): New.
>
> * build/ac-macros/apache.m4:
> * build/ac-macros/apr.m4:
> * build/ac-macros/apr_memcache.m4:
> * build/ac-macros/aprutil.m4:
> * build/ac-macros/berkeley-db.m4:
> * build/ac-macros/ctypesgen.m4:
> * build/ac-macros/gssapi.m4:
> * build/ac-macros/java.m4:
> * build/ac-macros/kwallet.m4:
> * build/ac-macros/neon.m4:
> * build/ac-macros/sasl.m4:
> * build/ac-macros/serf.m4:
> * build/ac-macros/sqlite.m4:
> * build/ac-macros/swig.m4:
> * build/ac-macros/zlib.m4:
> * configure.ac: Use SVN_MSG_ERROR() instead of AC_MSG_ERROR().
>
> Modified:
>   trunk/build/ac-macros/apache.m4
>   trunk/build/ac-macros/apr.m4
>   trunk/build/ac-macros/apr_memcache.m4
>   trunk/build/ac-macros/aprutil.m4
>   trunk/build/ac-macros/berkeley-db.m4
>   trunk/build/ac-macros/ctypesgen.m4
>   trunk/build/ac-macros/gssapi.m4
>   trunk/build/ac-macros/java.m4
>   trunk/build/ac-macros/kwallet.m4
>   trunk/build/ac-macros/neon.m4
>   trunk/build/ac-macros/sasl.m4
>   trunk/build/ac-macros/serf.m4
>   trunk/build/ac-macros/sqlite.m4
>   trunk/build/ac-macros/svn-macros.m4
>   trunk/build/ac-macros/swig.m4
>   trunk/build/ac-macros/zlib.m4
>   trunk/configure.ac
>
> Modified: trunk/build/ac-macros/apache.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/apache.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/apache.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/apache.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -55,14 +55,14 @@ VERSION_OKAY
>         [AC_MSG_RESULT([recent enough])],
>         [AC_MSG_RESULT([apache too old:  mmn must be at least  
> $HTTPD_WANTED_MMN])
>          if test "$APXS_EXPLICIT" != ""; then
> -             AC_MSG_ERROR([Apache APXS build explicitly requested,  
> but apache version is too old])
> +             SVN_MSG_ERROR([Apache APXS build explicitly requested,  
> but apache version is too old])
>          fi
>          APXS=""
>         ])
>
>     elif test "$APXS_EXPLICIT" != ""; then
> -        AC_MSG_ERROR(no - APXS refers to an old version of Apache
> -                     Unable to locate $APXS_INCLUDE/mod_dav.h)
> +        SVN_MSG_ERROR(no - APXS refers to an old version of Apache
> +                      Unable to locate $APXS_INCLUDE/mod_dav.h)
>     else
>         AC_MSG_RESULT(no - Unable to locate $APXS_INCLUDE/mod_dav.h)
>         APXS=""
> @@ -82,7 +82,7 @@ if test -n "$APXS" && test "$APXS" != "n
>       apache_minor_version_wanted_regex=["[1-4]"]
>       ;;
>     *)
> -      AC_MSG_ERROR([unknown APR version])
> +      SVN_MSG_ERROR([unknown APR version])
>       ;;
>   esac
>   AC_EGREP_CPP([apache_minor_version= * 
> $apache_minor_version_wanted_regex],
> @@ -91,7 +91,7 @@ if test -n "$APXS" && test "$APXS" != "n
> apache_minor_version=AP_SERVER_MINORVERSION_NUMBER],
>                [AC_MSG_RESULT([yes])],
>                [AC_MSG_RESULT([no])
> -                AC_MSG_ERROR([Apache version incompatible with APR  
> version])])
> +                SVN_MSG_ERROR([Apache version incompatible with APR  
> version])])
> fi
>
> AC_ARG_WITH(apache-libexecdir,
>
> Modified: trunk/build/ac-macros/apr.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/apr.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/apr.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/apr.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -30,7 +30,7 @@ AC_DEFUN(SVN_LIB_APR,
>   AC_MSG_CHECKING([APR version])
>   apr_version="`$apr_config --version`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apr-config --version failed])
> +    SVN_MSG_ERROR([apr-config --version failed])
>   fi
>   AC_MSG_RESULT([$apr_version])
>
> @@ -44,51 +44,51 @@ AC_DEFUN(SVN_LIB_APR,
>
>   if test $APR_WANTED_REGEX_MATCH -eq 0; then
>     echo "wanted regexes are $APR_WANTED_REGEXES"
> -    AC_MSG_ERROR([invalid apr version found])
> +    SVN_MSG_ERROR([invalid apr version found])
>   fi
>
>   dnl Get build information from APR
>
>   CPPFLAGS="$CPPFLAGS `$apr_config --cppflags`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apr-config --cppflags failed])
> +    SVN_MSG_ERROR([apr-config --cppflags failed])
>   fi
>
>   CFLAGS="$CFLAGS `$apr_config --cflags`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apr-config --cflags failed])
> +    SVN_MSG_ERROR([apr-config --cflags failed])
>   fi
>
>   LDFLAGS="$LDFLAGS `$apr_config --ldflags`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apr-config --ldflags failed])
> +    SVN_MSG_ERROR([apr-config --ldflags failed])
>   fi
>
>   SVN_APR_INCLUDES="`$apr_config --includes`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apr-config --includes failed])
> +    SVN_MSG_ERROR([apr-config --includes failed])
>   fi
>
>   SVN_APR_PREFIX="`$apr_config --prefix`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apr-config --prefix failed])
> +    SVN_MSG_ERROR([apr-config --prefix failed])
>   fi
>
>   dnl When APR stores the dependent libs in the .la file, we don't  
> need
>   dnl --libs.
>   SVN_APR_LIBS="`$apr_config --link-libtool --libs`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apr-config --link-libtool --libs failed])
> +    SVN_MSG_ERROR([apr-config --link-libtool --libs failed])
>   fi
>
>   SVN_APR_EXPORT_LIBS="`$apr_config --link-ld --libs`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apr-config --link-ld --libs failed])
> +    SVN_MSG_ERROR([apr-config --link-ld --libs failed])
>   fi
>
>   SVN_APR_SHLIB_PATH_VAR="`$apr_config --shlib-path-var`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apr-config --shlib-path-var failed])
> +    SVN_MSG_ERROR([apr-config --shlib-path-var failed])
>   fi
>
>   AC_SUBST(SVN_APR_PREFIX)
> @@ -127,5 +127,5 @@ AC_DEFUN(SVN_DOWNLOAD_APR,
>   echo "    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.2.x 
>  \\"
>   echo "    apr-util"
>   echo ""
> -  AC_MSG_ERROR([no suitable apr found])
> +  SVN_MSG_ERROR([no suitable apr found])
> ])
>
> Modified: trunk/build/ac-macros/apr_memcache.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/apr_memcache.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/apr_memcache.m4    Fri Jun 26 13:02:56  
> 2009    (r38217)
> +++ trunk/build/ac-macros/apr_memcache.m4    Sat Jun 27 05:11:33  
> 2009    (r38218)
> @@ -15,7 +15,7 @@ AC_DEFUN(SVN_LIB_APR_MEMCACHE,
>                                   [Standalone apr_memcache client  
> library]),
>   [
>     if test "$withval" = "yes" ; then
> -      AC_MSG_ERROR([--with-apr_memcache requires an argument.])
> +      SVN_MSG_ERROR([--with-apr_memcache requires an argument.])
>     else
>       AC_MSG_NOTICE([looking for separate apr_memcache package])
>       apr_memcache_prefix=$withval
>
> Modified: trunk/build/ac-macros/aprutil.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/aprutil.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/aprutil.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/aprutil.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -40,7 +40,7 @@ AC_DEFUN(SVN_LIB_APRUTIL,
>     # shipped in 2.0.43 contains a correct version number, but
>     # stupidly doesn't understand the --version switch.)
>     apu_version=`grep "APRUTIL_DOTTED_VERSION=" $(which $apu_config)  
> | tr -d "APRUTIL_DOTTED_VERSION="| tr -d '"'`
> -    #AC_MSG_ERROR([
> +    #SVN_MSG_ERROR([
>     #    apu-config --version failed.
>     #    Your apu-config doesn't support the --version switch,  
> please upgrade
>     #    to APR-UTIL more recent than 2002-Nov-05.])
> @@ -57,36 +57,36 @@ AC_DEFUN(SVN_LIB_APRUTIL,
>
>   if test $APU_WANTED_REGEX_MATCH -eq 0; then
>     echo "wanted regexes are $APRUTIL_WANTED_REGEXES"
> -    AC_MSG_ERROR([invalid apr-util version found])
> +    SVN_MSG_ERROR([invalid apr-util version found])
>   fi
>
>   dnl Get libraries and thread flags from APRUTIL  
> ---------------------
>
>   LDFLAGS="$LDFLAGS `$apu_config --ldflags`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apu-config --ldflags failed])
> +    SVN_MSG_ERROR([apu-config --ldflags failed])
>   fi
>
>   SVN_APRUTIL_INCLUDES="`$apu_config --includes`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apu-config --includes failed])
> +    SVN_MSG_ERROR([apu-config --includes failed])
>   fi
>
>   SVN_APRUTIL_PREFIX="`$apu_config --prefix`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apu-config --prefix failed])
> +    SVN_MSG_ERROR([apu-config --prefix failed])
>   fi
>
>   dnl When APR stores the dependent libs in the .la file, we don't  
> need
>   dnl --libs.
>   SVN_APRUTIL_LIBS="`$apu_config --link-libtool --libs`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apu-config --link-libtool --libs failed])
> +    SVN_MSG_ERROR([apu-config --link-libtool --libs failed])
>   fi
>
>   SVN_APRUTIL_EXPORT_LIBS="`$apu_config --link-ld --libs`"
>   if test $? -ne 0; then
> -    AC_MSG_ERROR([apu-config --link-ld --libs failed])
> +    SVN_MSG_ERROR([apu-config --link-ld --libs failed])
>   fi
>
>   AC_SUBST(SVN_APRUTIL_INCLUDES)
> @@ -121,5 +121,5 @@ AC_DEFUN(SVN_DOWNLOAD_APRUTIL,
>   echo "Afterwards, run apr-util/buildconf in that subdirectory and"
>   echo "then run configure again here."
>   echo ""
> -  AC_MSG_ERROR([no suitable APRUTIL found])
> +  SVN_MSG_ERROR([no suitable APRUTIL found])
> ])
>
> Modified: trunk/build/ac-macros/berkeley-db.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/berkeley-db.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/berkeley-db.m4    Fri Jun 26 13:02:56  
> 2009    (r38217)
> +++ trunk/build/ac-macros/berkeley-db.m4    Sat Jun 27 05:11:33  
> 2009    (r38218)
> @@ -40,23 +40,23 @@ AC_DEFUN(SVN_LIB_BERKELEY_DB,
>     elif test "$withval" = "yes"; then
>       apu_db_version="`$apu_config --db-version`"
>       if test $? -ne 0; then
> -        AC_MSG_ERROR([Can't determine whether apr-util is linked  
> against a
> -                      proper version of Berkeley DB.])
> +        SVN_MSG_ERROR([Can't determine whether apr-util is linked  
> against a
> +                       proper version of Berkeley DB.])
>       fi
>
>       if test "$withval" = "yes"; then
>         if test "$apu_db_version" != "4"; then
> -          AC_MSG_ERROR([APR-UTIL wasn't linked against Berkeley DB 4,
> -                        while the fs component is required.   
> Reinstall
> -                        APR-UTIL with the appropiate options.])
> +          SVN_MSG_ERROR([APR-UTIL wasn't linked against Berkeley DB  
> 4,
> +                         while the fs component is required.   
> Reinstall
> +                         APR-UTIL with the appropiate options.])
>         fi
>
>         status=required
>
>       elif test "$apu_found" != "reconfig"; then
>         if test "$apu_db_version" != 4; then
> -          AC_MSG_ERROR([APR-UTIL was installed independently, it  
> won't be
> -                        possible to use the specified Berkeley DB:  
> $withval])
> +          SVN_MSG_ERROR([APR-UTIL was installed independently, it  
> won't be
> +                         possible to use the specified Berkeley DB:  
> $withval])
>         fi
>
>         status=required
> @@ -80,7 +80,7 @@ AC_DEFUN(SVN_LIB_BERKELEY_DB,
>
>         status=required
>       else
> -        AC_MSG_ERROR([Invalid syntax of argument of --with-berkeley- 
> db option])
> +        SVN_MSG_ERROR([Invalid syntax of argument of --with- 
> berkeley-db option])
>       fi
>     fi
>   ],
> @@ -115,7 +115,7 @@ AC_DEFUN(SVN_LIB_BERKELEY_DB,
>       AC_MSG_RESULT([no])
>       svn_lib_berkeley_db=no
>       if test "$status" = "required"; then
> -        AC_MSG_ERROR([Berkeley DB $db_version or newer wasn't  
> found.])
> +        SVN_MSG_ERROR([Berkeley DB $db_version or newer wasn't  
> found.])
>       fi
>     fi
>   fi
>
> Modified: trunk/build/ac-macros/ctypesgen.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/ctypesgen.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/ctypesgen.m4    Fri Jun 26 13:02:56  
> 2009    (r38217)
> +++ trunk/build/ac-macros/ctypesgen.m4    Sat Jun 27 05:11:33  
> 2009    (r38218)
> @@ -48,8 +48,8 @@ AC_DEFUN(SVN_FIND_CTYPESGEN,
>     fi
>
>     if test ! -f "$CTYPESGEN" || test ! -x "$CTYPESGEN"; then
> -      AC_MSG_ERROR([Could not find ctypesgen at $where/ctypesgen.py  
> or at
> -                    $where/bin/ctypesgen.py])
> +      SVN_MSG_ERROR([Could not find ctypesgen at $where/ 
> ctypesgen.py or at
> +                     $where/bin/ctypesgen.py])
>     else
>       AC_MSG_RESULT([$CTYPESGEN])
>     fi
>
> Modified: trunk/build/ac-macros/gssapi.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/gssapi.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/gssapi.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/gssapi.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -50,10 +50,10 @@ int main()
>         LIBS="$old_LIBS"
>       else
>         AC_MSG_RESULT([no])
> -        AC_MSG_ERROR([cannot find GSSAPI (Kerberos)])
> +        SVN_MSG_ERROR([cannot find GSSAPI (Kerberos)])
>       fi
>     else
> -      AC_MSG_ERROR([cannot find krb5-config])
> +      SVN_MSG_ERROR([cannot find krb5-config])
>     fi
>   else
>     AC_MSG_RESULT([no])
>
> Modified: trunk/build/ac-macros/java.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/java.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/java.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/java.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -127,7 +127,7 @@ AC_DEFUN(SVN_FIND_JDK,
>     if test -n "$requested_jikes" && test "$requested_jikes" !=  
> "no"; then
>       dnl Jikes was explicitly requested.  Verify that it was  
> provided.
>       if test -z "$jikes_found"; then
> -        AC_MSG_ERROR([Could not find a usable version of Jikes])
> +        SVN_MSG_ERROR([Could not find a usable version of Jikes])
>       elif test -n "$jikes_found" && test "$requested_jikes" !=  
> "yes" &&
>            test "$JAVAC" != "$requested_jikes"; then
>         AC_MSG_WARN([--with-jikes PATH was invalid, substitute found])
>
> Modified: trunk/build/ac-macros/kwallet.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/kwallet.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/kwallet.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/kwallet.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -64,29 +64,29 @@ int main()
>                     LIBS="$old_LIBS"
>                   else
>                     AC_MSG_RESULT([no])
> -                    AC_MSG_ERROR([cannot find KWallet])
> +                    SVN_MSG_ERROR([cannot find KWallet])
>                   fi
>                 else
> -                  AC_MSG_ERROR([cannot find kde4-config])
> +                  SVN_MSG_ERROR([cannot find kde4-config])
>                 fi
>               else
>                 AC_MSG_RESULT([no])
> -                AC_MSG_ERROR([cannot find QtCore, QtDBus, QtGui])
> +                SVN_MSG_ERROR([cannot find QtCore, QtDBus, QtGui])
>               fi
>             else
> -              AC_MSG_ERROR([cannot find D-Bus])
> +              SVN_MSG_ERROR([cannot find D-Bus])
>             fi
>           else
> -            AC_MSG_ERROR([cannot find pkg-config])
> +            SVN_MSG_ERROR([cannot find pkg-config])
>           fi
>         else
> -          AC_MSG_ERROR([missing support for internationalization])
> +          SVN_MSG_ERROR([missing support for internationalization])
>         fi
>       else
> -        AC_MSG_ERROR([APR does not have support for DSOs])
> +        SVN_MSG_ERROR([APR does not have support for DSOs])
>       fi
>     else
> -      AC_MSG_ERROR([--with-kwallet conflicts with --disable-shared])
> +      SVN_MSG_ERROR([--with-kwallet conflicts with --disable-shared])
>     fi
>   else
>     AC_MSG_RESULT([no])
>
> Modified: trunk/build/ac-macros/neon.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/neon.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/neon.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/neon.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -98,7 +98,7 @@ int main()
>               if test "$shared_linking" = "no"; then
>                 NEON_LIBS=`$PKG_CONFIG neon --libs --static`
>                 LIBS="$LIBS $NEON_LIBS"
> -                AC_LINK_IFELSE([$neon_test_code], , AC_MSG_ERROR 
> ([cannot find Neon]))
> +                AC_LINK_IFELSE([$neon_test_code], , SVN_MSG_ERROR 
> ([cannot find Neon]))
>               fi
>               CFLAGS="$old_CFLAGS"
>               LIBS="$old_LIBS"
>
> Modified: trunk/build/ac-macros/sasl.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/sasl.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/sasl.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/sasl.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -69,7 +69,7 @@ AC_DEFUN(SVN_LIB_SASL,
>       if test "$required" = "yes"; then
>         dnl The user explicitly requested SASL, but we couldn't find  
> it.
>         dnl Exit with an error message.
> -        AC_MSG_ERROR([Could not find Cyrus SASL v2])
> +        SVN_MSG_ERROR([Could not find Cyrus SASL v2])
>       fi
>
>       SVN_SASL_INCLUDES=""
>
> Modified: trunk/build/ac-macros/serf.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/serf.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/serf.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/serf.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -13,7 +13,7 @@ AC_DEFUN(SVN_LIB_SERF,
>                                   [Serf WebDAV client library]),
>   [
>     if test "$withval" = "yes" ; then
> -      AC_MSG_ERROR([--with-serf requires an argument.])
> +      SVN_MSG_ERROR([--with-serf requires an argument.])
>     elif test "$withval" != "no" ; then
>       AC_MSG_NOTICE([serf library configuration])
>       serf_prefix=$withval
>
> Modified: trunk/build/ac-macros/sqlite.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/sqlite.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/sqlite.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/sqlite.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -36,7 +36,7 @@ AC_DEFUN(SVN_LIB_SQLITE,
>                           [Use installed SQLite library or  
> amalgamation file.]),
>   [
>     if test "$withval" = "yes" ; then
> -      AC_MSG_ERROR([--with-sqlite requires an argument.])
> +      SVN_MSG_ERROR([--with-sqlite requires an argument.])
>     else
>       sqlite_dir="$withval"
>     fi
> @@ -224,5 +224,5 @@ AC_DEFUN(SVN_DOWNLOAD_SQLITE,
>   echo "$abs_srcdir/sqlite-amalgamation/sqlite3.c"
>   echo "This file also ships as part of the subversion-deps  
> distribution."
>   echo ""
> -  AC_MSG_ERROR([Subversion requires SQLite])
> +  SVN_MSG_ERROR([Subversion requires SQLite])
> ])
>
> Modified: trunk/build/ac-macros/svn-macros.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/svn-macros.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/svn-macros.m4    Fri Jun 26 13:02:56  
> 2009    (r38217)
> +++ trunk/build/ac-macros/svn-macros.m4    Sat Jun 27 05:11:33  
> 2009    (r38218)
> @@ -1,5 +1,28 @@
> # Miscellaneous additional macros for Subversion's own use.
>
> +dnl SVN_MSG_ERROR(ERROR_MESSAGE)
> +dnl
> +dnl Wrapper for AC_MSG_ERROR which additionally prints the content of
> +dnl config.log.
> +AC_DEFUN([SVN_MSG_ERROR], [
> +  if true; then
> +    {
> +      while true; do
> +        if test -f config.log && test -n "`tail -n1 config.log |  
> grep "configure: exit 1"`"; then
> +          echo
> +          echo "************************************************"
> +          echo "****************** config.log ******************"
> +          echo "************************************************"
> +          cat config.log
> +          break
> +        fi
> +      done
> +    } &
> +  fi
> +  AC_MSG_ERROR([$1])
> +])
> +
> +
> # SVN_CONFIG_NICE(FILENAME)
> # Write a shell script to FILENAME (typically 'config.nice') which  
> reinvokes
> # configure with all of the arguments.  Reserves use of the filename
>
> Modified: trunk/build/ac-macros/swig.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/swig.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/swig.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/swig.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -46,7 +46,7 @@ AC_DEFUN(SVN_FIND_SWIG,
>       SWIG="$where/bin/swig"
>     fi
>     if test ! -f "$SWIG" || test ! -x "$SWIG"; then
> -      AC_MSG_ERROR([Could not find swig binary at $SWIG])
> +      SVN_MSG_ERROR([Could not find swig binary at $SWIG])
>     fi
>   fi
>
> @@ -142,7 +142,7 @@ AC_DEFUN(SVN_FIND_SWIG,
>     ])
>     CPPFLAGS="$SVN_PYCFMT_SAVE_CPPFLAGS"
>     if test "x$svn_cv_pycfmt_apr_int64_t" = "x"; then
> -      AC_MSG_ERROR([failed to recognize APR_INT64_T_FMT on this  
> platform])
> +      SVN_MSG_ERROR([failed to recognize APR_INT64_T_FMT on this  
> platform])
>     fi
>     AC_DEFINE_UNQUOTED([SVN_APR_INT64_T_PYCFMT],
>                        ["$svn_cv_pycfmt_apr_int64_t"],
>
> Modified: trunk/build/ac-macros/zlib.m4
> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/zlib.m4?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/build/ac-macros/zlib.m4    Fri Jun 26 13:02:56 2009     
> (r38217)
> +++ trunk/build/ac-macros/zlib.m4    Sat Jun 27 05:11:33 2009     
> (r38218)
> @@ -13,7 +13,7 @@ AC_DEFUN(SVN_LIB_Z,
>                                   [zlib compression library]),
>   [
>     if test "$withval" = "yes" ; then
> -      AC_MSG_ERROR([--with-zlib requires an argument.])
> +      SVN_MSG_ERROR([--with-zlib requires an argument.])
>     else
>       AC_MSG_NOTICE([zlib library configuration])
>       zlib_prefix=$withval
> @@ -35,7 +35,7 @@ AC_DEFUN(SVN_LIB_Z,
>   ])
>
>   if test "$zlib_found" = "no"; then
> -    AC_MSG_ERROR([subversion requires zlib])
> +    SVN_MSG_ERROR([subversion requires zlib])
>   fi
>
>   if test "$zlib_found" = "yes"; then
>
> Modified: trunk/configure.ac
> URL: http://svn.collab.net/viewvc/svn/trunk/configure.ac?pathrev=38218&r1=38217&r2=38218
> === 
> === 
> === 
> =====================================================================
> --- trunk/configure.ac    Fri Jun 26 13:02:56 2009    (r38217)
> +++ trunk/configure.ac    Sat Jun 27 05:11:33 2009    (r38218)
> @@ -228,7 +228,7 @@ elif test "$svn_enable_shared" = "yes" ;
>   fi
>   LT_LDFLAGS="-shared $LT_LDFLAGS"
> else
> -  AC_MSG_ERROR([can not disable both shared and static libraries])
> +  SVN_MSG_ERROR([can not disable both shared and static libraries])
> fi
>
> dnl Check for --enable-all-static option
> @@ -252,7 +252,7 @@ AC_ARG_ENABLE(local-library-preloading,
>     if test "$svn_enable_shared" = "yes"; then
>       TRANSFORM_LIBTOOL_SCRIPTS="transform-libtool-scripts"
>     else
> -      AC_MSG_ERROR([--enable-local-library-preloading conflicts  
> with --disable-shared])
> +      SVN_MSG_ERROR([--enable-local-library-preloading conflicts  
> with --disable-shared])
>     fi
>   else
>     TRANSFORM_LIBTOOL_SCRIPTS=""
> @@ -473,23 +473,23 @@ if test "$with_gnome_keyring" != "no"; t
>               SVN_GNOME_KEYRING_LIBS="$DBUS_LIBS `$PKG_CONFIG --libs  
> glib-2.0 gnome-keyring-1`"
>             else
>               AC_MSG_RESULT([no])
> -              AC_MSG_ERROR([cannot find GNOME Keyring])
> +              SVN_MSG_ERROR([cannot find GNOME Keyring])
>             fi
>           else
>             AC_MSG_RESULT([no])
> -            AC_MSG_ERROR([cannot find GLib and GNOME Keyring .pc  
> files])
> +            SVN_MSG_ERROR([cannot find GLib and GNOME Keyring .pc  
> files])
>           fi
>         else
> -          AC_MSG_ERROR([cannot find D-Bus])
> +          SVN_MSG_ERROR([cannot find D-Bus])
>         fi
>       else
> -        AC_MSG_ERROR([cannot find pkg-config])
> +        SVN_MSG_ERROR([cannot find pkg-config])
>       fi
>     else
> -      AC_MSG_ERROR([APR does not have support for DSOs])
> +      SVN_MSG_ERROR([APR does not have support for DSOs])
>     fi
>   else
> -    AC_MSG_ERROR([--with-gnome-keyring conflicts with --disable- 
> shared])
> +    SVN_MSG_ERROR([--with-gnome-keyring conflicts with --disable- 
> shared])
>   fi
> else
>   AC_MSG_RESULT([no])
> @@ -713,7 +713,7 @@ AS_HELP_STRING([--enable-maintainer-mode
> [
>     if test "$enableval" = "yes" ; then
>       if test "$enable_debugging" = "no" ; then
> -        AC_MSG_ERROR(Can't have --disable-debug and --enable- 
> maintainer-mode)
> +        SVN_MSG_ERROR(Can't have --disable-debug and --enable- 
> maintainer-mode)
>       fi
>       enable_debugging=yes
>       if test "$GCC" = "yes"; then
> @@ -778,7 +778,7 @@ AS_HELP_STRING([--with-editor=PATH],
> [
>
>     if test "$withval" = "yes" ; then
> -      AC_MSG_ERROR([--with-editor requires an argument.])
> +      SVN_MSG_ERROR([--with-editor requires an argument.])
>     else
>       SVN_CLIENT_EDITOR=$withval
>       AC_DEFINE_UNQUOTED(SVN_CLIENT_EDITOR, "$SVN_CLIENT_EDITOR",
> @@ -815,8 +815,8 @@ AS_HELP_STRING([--enable-gprof],
>       dnl feel free to extend this to include them.
>       if test "$GCC" = "yes"; then
>         if test "$svn_enable_shared" = "yes" ; then
> -          AC_MSG_ERROR(Can't have --enable-gprof without --disable- 
> shared (we
> -                  recommend also using --enable-all-static).)
> +          SVN_MSG_ERROR(Can't have --enable-gprof without --disable- 
> shared (we
> +                        recommend also using --enable-all-static).)
>         fi
>         if test ! "$enable_all_static" = "yes" ; then
>           AC_MSG_WARN(We recommend --enable-all-static with --enable- 
> gprof.)
> @@ -826,7 +826,7 @@ AS_HELP_STRING([--enable-gprof],
>         CXXFLAGS="$CXXFLAGS -pg"
>         LT_LDFLAGS="$LT_LDFLAGS -pg"
>       else
> -        AC_MSG_ERROR(We only support --enable-gprof with GCC right  
> now.)
> +        SVN_MSG_ERROR(We only support --enable-gprof with GCC right  
> now.)
>       fi
>     fi
> ])
> @@ -892,7 +892,7 @@ AS_HELP_STRING([--enable-runtime-module-
>     if test "$enableval" = "yes"; then
>       use_dso=yes
>       if test "$svn_enable_shared" = "no"; then
> -        AC_MSG_ERROR([--enable-runtime-module-search conflicts with  
> --disable-shared])
> +        SVN_MSG_ERROR([--enable-runtime-module-search conflicts  
> with --disable-shared])
>       fi
>       AC_DEFINE(SVN_USE_DSO, 1,
>                 [Defined if svn should try to load DSOs])
> @@ -982,8 +982,8 @@ LT_CXX_LIBADD=""
> if test "$do_javahl_build" = "yes"; then
>   dnl Check for suitable JDK
>   if test "$JDK_SUITABLE" = "no"; then
> -    AC_MSG_ERROR([Cannot compile JavaHL without a suitable JDK.
> -                  Please specify a suitable JDK using the --with- 
> jdk option.])
> +    SVN_MSG_ERROR([Cannot compile JavaHL without a suitable JDK.
> +                   Please specify a suitable JDK using the --with- 
> jdk option.])
>   fi
>
>   dnl The temporary directory where libtool compiles libsvnjavahl.
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=495&dsMessageId=2365944

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2365970

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Erik Huelsmann <eh...@gmail.com>.
>>>>> Now that the buildbots output config.log on a failed build, this
>>>>> should be reverted.
>>
>> I have only activated uploading config.log for the mac buildbot right
>> now, but if Erik and Hyrum don't mind I can add it to the debian & x64
>> bb's too.
>
> No objection here.

None here either.

Bye,

Erik.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2367159

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by "Hyrum K. Wright" <hy...@hyrumwright.org>.
On Jul 1, 2009, at 12:16 PM, Lieven Govaerts wrote:

> On Wed, Jul 1, 2009 at 6:17 PM, Hyrum K.  
> Wright<hy...@hyrumwright.org> wrote:
>> On Jul 1, 2009, at 10:21 AM, Arfrever Frehtes Taifersar Arahesis  
>> wrote:
>>
>>> 2009-06-30 23:46:26 Hyrum K. Wright napisał(a):
>>>>
>>>> On Jun 29, 2009, at 8:17 AM, Arfrever Frehtes Taifersar Arahesis
>>>> wrote:
>>>>
>>>>> 2009-06-29 15:07:38 Hyrum K. Wright napisał(a):
>>>>>> On Jun 27, 2009, at 9:54 AM, Greg Stein wrote:
>>>>>>> On Jun 27, 2009, at 15:11, Arfrever Frehtes Taifersar Arahesis  
>>>>>>> <Arfrever.FTA@GMail.Com
>>>>>>> wrote:
>>>>>>>> Author: arfrever
>>>>>>>> Date: Sat Jun 27 05:11:33 2009
>>>>>>>> New Revision: 38218
>>>>>>>>
>>>>>>>> Log:
>>>>>>>> Make `configure` sometimes print the content of 'config.log'  
>>>>>>>> when
>>>>>>>> an
>>>>>>>> error occurs.
>>>>>>>
>>>>>>> I don't understand this... config.log can be Huge. That will
>>>>>>> obscure
>>>>>>> any error message printed by svn's configure.
>>>>>>>
>>>>>>> And I can just look at config.log if necessary.
>>>>>>
>>>>>> Agreed.  I don't see how this benefits our end users at all.  And
>>>>>> developers can just look at config.log.
>>>>>
>>>>> It's a temporary workaround for the fact that buildbots don't
>>>>> provide
>>>>> config.log files. I will revert r38218 when buildbots are fixed to
>>>>> provide
>>>>> config.log files.
>>>>
>>>> Now that the buildbots output config.log on a failed build, this
>>>> should be reverted.
>
> I have only activated uploading config.log for the mac buildbot right
> now, but if Erik and Hyrum don't mind I can add it to the debian & x64
> bb's too.

No objection here.

-Hyrum

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2367130


Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Lieven Govaerts <sv...@mobsol.be>.
On Wed, Jul 1, 2009 at 6:17 PM, Hyrum K. Wright<hy...@hyrumwright.org> wrote:
> On Jul 1, 2009, at 10:21 AM, Arfrever Frehtes Taifersar Arahesis wrote:
>
>> 2009-06-30 23:46:26 Hyrum K. Wright napisał(a):
>>>
>>> On Jun 29, 2009, at 8:17 AM, Arfrever Frehtes Taifersar Arahesis
>>> wrote:
>>>
>>>> 2009-06-29 15:07:38 Hyrum K. Wright napisał(a):
>>>>> On Jun 27, 2009, at 9:54 AM, Greg Stein wrote:
>>>>>> On Jun 27, 2009, at 15:11, Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com
>>>>>> wrote:
>>>>>>> Author: arfrever
>>>>>>> Date: Sat Jun 27 05:11:33 2009
>>>>>>> New Revision: 38218
>>>>>>>
>>>>>>> Log:
>>>>>>> Make `configure` sometimes print the content of 'config.log' when
>>>>>>> an
>>>>>>> error occurs.
>>>>>>
>>>>>> I don't understand this... config.log can be Huge. That will
>>>>>> obscure
>>>>>> any error message printed by svn's configure.
>>>>>>
>>>>>> And I can just look at config.log if necessary.
>>>>>
>>>>> Agreed.  I don't see how this benefits our end users at all.  And
>>>>> developers can just look at config.log.
>>>>
>>>> It's a temporary workaround for the fact that buildbots don't
>>>> provide
>>>> config.log files. I will revert r38218 when buildbots are fixed to
>>>> provide
>>>> config.log files.
>>>
>>> Now that the buildbots output config.log on a failed build, this
>>> should be reverted.

I have only activated uploading config.log for the mac buildbot right
now, but if Erik and Hyrum don't mind I can add it to the debian & x64
bb's too.

Lieven

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2367129


Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by "Hyrum K. Wright" <hy...@hyrumwright.org>.
On Jul 1, 2009, at 10:21 AM, Arfrever Frehtes Taifersar Arahesis wrote:

> 2009-06-30 23:46:26 Hyrum K. Wright napisał(a):
>>
>> On Jun 29, 2009, at 8:17 AM, Arfrever Frehtes Taifersar Arahesis  
>> wrote:
>>
>>> 2009-06-29 15:07:38 Hyrum K. Wright napisał(a):
>>>> On Jun 27, 2009, at 9:54 AM, Greg Stein wrote:
>>>>> On Jun 27, 2009, at 15:11, Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com
>>>>> wrote:
>>>>>> Author: arfrever
>>>>>> Date: Sat Jun 27 05:11:33 2009
>>>>>> New Revision: 38218
>>>>>>
>>>>>> Log:
>>>>>> Make `configure` sometimes print the content of 'config.log' when
>>>>>> an
>>>>>> error occurs.
>>>>>
>>>>> I don't understand this... config.log can be Huge. That will  
>>>>> obscure
>>>>> any error message printed by svn's configure.
>>>>>
>>>>> And I can just look at config.log if necessary.
>>>>
>>>> Agreed.  I don't see how this benefits our end users at all.  And
>>>> developers can just look at config.log.
>>>
>>> It's a temporary workaround for the fact that buildbots don't  
>>> provide
>>> config.log files. I will revert r38218 when buildbots are fixed to
>>> provide
>>> config.log files.
>>
>> Now that the buildbots output config.log on a failed build, this
>> should be reverted.
>
> Reversion committed in r38285.

Thanks!

-Hyrum

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2367102


Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Arfrever Frehtes Taifersar Arahesis <Ar...@GMail.Com>.
2009-06-30 23:46:26 Hyrum K. Wright napisał(a):
> 
> On Jun 29, 2009, at 8:17 AM, Arfrever Frehtes Taifersar Arahesis wrote:
> 
> > 2009-06-29 15:07:38 Hyrum K. Wright napisał(a):
> >> On Jun 27, 2009, at 9:54 AM, Greg Stein wrote:
> >>> On Jun 27, 2009, at 15:11, Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com 
> >>>  wrote:
> >>>> Author: arfrever
> >>>> Date: Sat Jun 27 05:11:33 2009
> >>>> New Revision: 38218
> >>>>
> >>>> Log:
> >>>> Make `configure` sometimes print the content of 'config.log' when  
> >>>> an
> >>>> error occurs.
> >>>
> >>> I don't understand this... config.log can be Huge. That will obscure
> >>> any error message printed by svn's configure.
> >>>
> >>> And I can just look at config.log if necessary.
> >>
> >> Agreed.  I don't see how this benefits our end users at all.  And
> >> developers can just look at config.log.
> >
> > It's a temporary workaround for the fact that buildbots don't provide
> > config.log files. I will revert r38218 when buildbots are fixed to  
> > provide
> > config.log files.
> 
> Now that the buildbots output config.log on a failed build, this  
> should be reverted.

Reversion committed in r38285.

-- 
Arfrever Frehtes Taifersar Arahesis

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Blair Zajac <bl...@orcaware.com>.
David O'Shea wrote:
> On 29/06/2009 17:46, Blair Zajac wrote:
>> The thing that is annoying to me when using Thunderbird is when somebody replies 
>> to a commit message, says something in the replies to some code in the middle 
>> and doesn't trim anything below their last comment.  Maybe this is a gmail thing 
>> that collapses all the remaining text, but in Thunderbird, I need to scroll down 
>> just to see if they said anything later.
> 
> QuoteCollapse is your friend in these situations. It's not perfect, but
> it does help!
> 
> https://addons.mozilla.org/en-US/thunderbird/addon/347

Thanks, trying it now.

Regards,
Blair

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366794

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Daniel Shahaf <d....@daniel.shahaf.name>.
David O'Shea wrote on Tue, 30 Jun 2009 at 08:06 +0100:
> On 29/06/2009 17:46, Blair Zajac wrote:
> > The thing that is annoying to me when using Thunderbird is when somebody replies 
> > to a commit message, says something in the replies to some code in the middle 
> > and doesn't trim anything below their last comment.  Maybe this is a gmail thing 
> > that collapses all the remaining text, but in Thunderbird, I need to scroll down 
> > just to see if they said anything later.
> 
> https://addons.mozilla.org/en-US/thunderbird/addon/347

Maybe solves the problem for Thunderbird users.  Users of other
mailers + Web archives are still stuck.  So +1 to what Blair
said --- people should trim their quotes.

Daniel
(who uses <http://permalink.gmane.org/gmane.editors.vim.devel/20890>)

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366653

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by David O'Shea <da...@s3group.com>.
On 29/06/2009 17:46, Blair Zajac wrote:
> The thing that is annoying to me when using Thunderbird is when somebody replies 
> to a commit message, says something in the replies to some code in the middle 
> and doesn't trim anything below their last comment.  Maybe this is a gmail thing 
> that collapses all the remaining text, but in Thunderbird, I need to scroll down 
> just to see if they said anything later.

QuoteCollapse is your friend in these situations. It's not perfect, but
it does help!

https://addons.mozilla.org/en-US/thunderbird/addon/347

Regards,

David.
-- 

The information contained in this e-mail and in any attachments is confidential and is designated solely for the attention of the intended recipient(s). If you are not an intended recipient, you must not use, disclose, copy, distribute or retain this e-mail or any part thereof. If you have received this e-mail in error, please notify the sender by return e-mail and delete all copies of this e-mail from your computer system(s).
Please direct any additional queries to: communications@s3group.com.
Thank You.
Silicon and Software Systems Limited. Registered in Ireland no. 378073.
Registered Office: South County Business Park, Leopardstown, Dublin 18

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366633

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Blair Zajac <bl...@orcaware.com>.
Hyrum K. Wright wrote:
> On Jun 29, 2009, at 9:12 AM, Branko Cibej wrote:
> 
>> Arfrever Frehtes Taifersar Arahesis wrote:
>>> (Also please don't top-post, because it's harder to answer.)
>>>
>> Do we actually have a policy about this? 'Cos sometimes it makes more
>> sense to top-post, and sometimes I just go crazy mad when I have to  
>> skip
>> past whole pages of quoted messages to read a couple of lines of
>> response ... so ... dunno, but at least the avid bottom-posters can  
>> take
>> a bit of time to trim down the quoted text, IMHO.
> 
> Actually, we do: http://subversion.tigris.org/mailing-lists.html#top-posting
> 
> It basically says "don't chide people for top-posting.  It's sometimes  
> appropriate, but it's not a major inconvenience even when done  
> inappropriately."

The thing that is annoying to me when using Thunderbird is when somebody replies 
to a commit message, says something in the replies to some code in the middle 
and doesn't trim anything below their last comment.  Maybe this is a gmail thing 
that collapses all the remaining text, but in Thunderbird, I need to scroll down 
just to see if they said anything later.

It would be good if people trimmed the text in the email they are replying to 
past their last reply.

Blair

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366456

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by "Hyrum K. Wright" <hy...@hyrumwright.org>.
On Jun 29, 2009, at 9:12 AM, Branko Cibej wrote:

> Arfrever Frehtes Taifersar Arahesis wrote:
>> (Also please don't top-post, because it's harder to answer.)
>>
>
> Do we actually have a policy about this? 'Cos sometimes it makes more
> sense to top-post, and sometimes I just go crazy mad when I have to  
> skip
> past whole pages of quoted messages to read a couple of lines of
> response ... so ... dunno, but at least the avid bottom-posters can  
> take
> a bit of time to trim down the quoted text, IMHO.

Actually, we do: http://subversion.tigris.org/mailing-lists.html#top-posting

It basically says "don't chide people for top-posting.  It's sometimes  
appropriate, but it's not a major inconvenience even when done  
inappropriately."

-Hyrum

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366381

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Branko Cibej <br...@xbc.nu>.
Arfrever Frehtes Taifersar Arahesis wrote:
> (Also please don't top-post, because it's harder to answer.)
>   

Do we actually have a policy about this? 'Cos sometimes it makes more
sense to top-post, and sometimes I just go crazy mad when I have to skip
past whole pages of quoted messages to read a couple of lines of
response ... so ... dunno, but at least the avid bottom-posters can take
a bit of time to trim down the quoted text, IMHO.

-- Brane

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366379

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Justin Erenkrantz <je...@apache.org>.
On Mon, Jun 29, 2009 at 7:32 AM, Stefan Sperling<st...@elego.de> wrote:
> Take the time to write a good log message instead, and explain your
> plans and the reasons and motivations behind your plans.

+1.

I'm getting rather annoyed at the persistent lack of communication here.

This was a *whole* lot of churn for little gain, IMO.  -- justin

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366416

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Stefan Sperling <st...@elego.de>.
On Mon, Jun 29, 2009 at 03:17:16PM +0200, Arfrever Frehtes Taifersar Arahesis wrote:
> It's a temporary workaround for the fact that buildbots don't provide
> config.log files. I will revert r38218 when buildbots are fixed to provide
> config.log files.

Why wasn't this in the log message for r38218?

Can you, please, please, please, try to make a really good habit
of putting such explanations in the log messages when you commit,
instead of putting them into answers to mail by people who are
disturbed by and outraged over your changes because they have
no way to understand why you are making those changes?

Especially if the commit you are making is known to cause problems?
If you make it hard for people to find out the motivation behind
your changes, they will most likely to go "what the fuck?" and
reject your changes.

You see, all Hyrum and Greg are seeing is "you're breaking the
buildbot". They can't understand why you are doing this because
you have never explained it to them.

I believe you have good reasons for your changes to configure,
since I believe you are trying to make subversion work painlessly on
Gentoo where re-compilation of dependency X should not necessarily
trigger recompilation of everything that depends on X. At least that's
what I *think* you are trying to do. But not because you have told me so,
but because I believe that you maintain the Subversion packages in
Gentoo and because I know that Debian is trying to fix similar
problems with apu-config and the like by patching the hell out
of them. I like the idea of fixing this upstream much more than
fixing it in every packaging system on the planet.

But *everyone* here needs to understand the motivation behind your changes
to apply good judgement. If they can't apply good judgement, there's
a risk of tension between developers because people will get the
impression that your goals conflict with theirs. Then we'll end up
wasting time with useless debates on the mailing lists, were people
try to extract information from you which they need in order to apply
good judgement, and possibly end up getting angry if they can't get the
information in the heat of the argument. Please don't take that risk.
Take the time to write a good log message instead, and explain your
plans and the reasons and motivations behind your plans.

For example, this one is also really bad, it gives no useful information:

------------------------------------------------------------------------
r38219 | arfrever | 2009-06-27 13:17:24 +0100 (Sat, 27 Jun 2009) | 2 lines

Revert r38164.

------------------------------------------------------------------------

Stefan

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Lieven Govaerts <sv...@mobsol.be>.
On Mon, Jun 29, 2009 at 3:17 PM, Arfrever Frehtes Taifersar
Arahesis<Ar...@gmail.com> wrote:
> 2009-06-29 15:07:38 Hyrum K. Wright napisał(a):
>> On Jun 27, 2009, at 9:54 AM, Greg Stein wrote:
>> > On Jun 27, 2009, at 15:11, Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com wrote:
>> >> Author: arfrever
>> >> Date: Sat Jun 27 05:11:33 2009
>> >> New Revision: 38218
>> >>
>> >> Log:
>> >> Make `configure` sometimes print the content of 'config.log' when an
>> >> error occurs.
>> >
>> > I don't understand this... config.log can be Huge. That will obscure
>> > any error message printed by svn's configure.
>> >
>> > And I can just look at config.log if necessary.
>>
>> Agreed.  I don't see how this benefits our end users at all.  And
>> developers can just look at config.log.
>
> It's a temporary workaround for the fact that buildbots don't provide
> config.log files. I will revert r38218 when buildbots are fixed to provide
> config.log files.

Arfrever,

I don't think it's that difficult to make the buildbot upload the
config.log file to the master. If that's what you need (that you ask
that in another mail thread somewhere) I can add it to the mac
buildbot, if I find a bit of time.

Lieven

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366651


Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by "Hyrum K. Wright" <hy...@hyrumwright.org>.
On Jun 29, 2009, at 8:17 AM, Arfrever Frehtes Taifersar Arahesis wrote:

> 2009-06-29 15:07:38 Hyrum K. Wright napisał(a):
>> On Jun 27, 2009, at 9:54 AM, Greg Stein wrote:
>>> On Jun 27, 2009, at 15:11, Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com 
>>>  wrote:
>>>> Author: arfrever
>>>> Date: Sat Jun 27 05:11:33 2009
>>>> New Revision: 38218
>>>>
>>>> Log:
>>>> Make `configure` sometimes print the content of 'config.log' when  
>>>> an
>>>> error occurs.
>>>
>>> I don't understand this... config.log can be Huge. That will obscure
>>> any error message printed by svn's configure.
>>>
>>> And I can just look at config.log if necessary.
>>
>> Agreed.  I don't see how this benefits our end users at all.  And
>> developers can just look at config.log.
>
> It's a temporary workaround for the fact that buildbots don't provide
> config.log files. I will revert r38218 when buildbots are fixed to  
> provide
> config.log files.

Now that the buildbots output config.log on a failed build, this  
should be reverted.

-Hyrum

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366853


Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by Arfrever Frehtes Taifersar Arahesis <Ar...@GMail.Com>.
2009-06-29 15:07:38 Hyrum K. Wright napisał(a):
> On Jun 27, 2009, at 9:54 AM, Greg Stein wrote:
> > On Jun 27, 2009, at 15:11, Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com wrote:
> >> Author: arfrever
> >> Date: Sat Jun 27 05:11:33 2009
> >> New Revision: 38218
> >>
> >> Log:
> >> Make `configure` sometimes print the content of 'config.log' when an
> >> error occurs.
> >
> > I don't understand this... config.log can be Huge. That will obscure
> > any error message printed by svn's configure.
> >
> > And I can just look at config.log if necessary.
>
> Agreed.  I don't see how this benefits our end users at all.  And  
> developers can just look at config.log.

It's a temporary workaround for the fact that buildbots don't provide
config.log files. I will revert r38218 when buildbots are fixed to provide
config.log files.

(Also please don't top-post, because it's harder to answer.)

-- 
Arfrever Frehtes Taifersar Arahesis

Re: svn commit: r38218 - in trunk: . build/ac-macros

Posted by "Hyrum K. Wright" <hy...@hyrumwright.org>.
Agreed.  I don't see how this benefits our end users at all.  And  
developers can just look at config.log.

-Hyrum

On Jun 27, 2009, at 9:54 AM, Greg Stein wrote:

> I don't understand this... config.log can be Huge. That will obscure
> any error message printed by svn's configure.
>
> And I can just look at config.log if necessary.
>
>
>
> On Jun 27, 2009, at 15:11, Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com
>> wrote:
>
>> Author: arfrever
>> Date: Sat Jun 27 05:11:33 2009
>> New Revision: 38218
>>
>> Log:
>> Make `configure` sometimes print the content of 'config.log' when an
>> error occurs.
>>
>> * build/ac-macros/svn-macros.m4
>> (SVN_MSG_ERROR): New.
>>
>> * build/ac-macros/apache.m4:
>> * build/ac-macros/apr.m4:
>> * build/ac-macros/apr_memcache.m4:
>> * build/ac-macros/aprutil.m4:
>> * build/ac-macros/berkeley-db.m4:
>> * build/ac-macros/ctypesgen.m4:
>> * build/ac-macros/gssapi.m4:
>> * build/ac-macros/java.m4:
>> * build/ac-macros/kwallet.m4:
>> * build/ac-macros/neon.m4:
>> * build/ac-macros/sasl.m4:
>> * build/ac-macros/serf.m4:
>> * build/ac-macros/sqlite.m4:
>> * build/ac-macros/swig.m4:
>> * build/ac-macros/zlib.m4:
>> * configure.ac: Use SVN_MSG_ERROR() instead of AC_MSG_ERROR().
>>
>> Modified:
>>  trunk/build/ac-macros/apache.m4
>>  trunk/build/ac-macros/apr.m4
>>  trunk/build/ac-macros/apr_memcache.m4
>>  trunk/build/ac-macros/aprutil.m4
>>  trunk/build/ac-macros/berkeley-db.m4
>>  trunk/build/ac-macros/ctypesgen.m4
>>  trunk/build/ac-macros/gssapi.m4
>>  trunk/build/ac-macros/java.m4
>>  trunk/build/ac-macros/kwallet.m4
>>  trunk/build/ac-macros/neon.m4
>>  trunk/build/ac-macros/sasl.m4
>>  trunk/build/ac-macros/serf.m4
>>  trunk/build/ac-macros/sqlite.m4
>>  trunk/build/ac-macros/svn-macros.m4
>>  trunk/build/ac-macros/swig.m4
>>  trunk/build/ac-macros/zlib.m4
>>  trunk/configure.ac
>>
>> Modified: trunk/build/ac-macros/apache.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/apache.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/apache.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/apache.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -55,14 +55,14 @@ VERSION_OKAY
>>        [AC_MSG_RESULT([recent enough])],
>>        [AC_MSG_RESULT([apache too old:  mmn must be at least
>> $HTTPD_WANTED_MMN])
>>         if test "$APXS_EXPLICIT" != ""; then
>> -             AC_MSG_ERROR([Apache APXS build explicitly requested,
>> but apache version is too old])
>> +             SVN_MSG_ERROR([Apache APXS build explicitly requested,
>> but apache version is too old])
>>         fi
>>         APXS=""
>>        ])
>>
>>    elif test "$APXS_EXPLICIT" != ""; then
>> -        AC_MSG_ERROR(no - APXS refers to an old version of Apache
>> -                     Unable to locate $APXS_INCLUDE/mod_dav.h)
>> +        SVN_MSG_ERROR(no - APXS refers to an old version of Apache
>> +                      Unable to locate $APXS_INCLUDE/mod_dav.h)
>>    else
>>        AC_MSG_RESULT(no - Unable to locate $APXS_INCLUDE/mod_dav.h)
>>        APXS=""
>> @@ -82,7 +82,7 @@ if test -n "$APXS" && test "$APXS" != "n
>>      apache_minor_version_wanted_regex=["[1-4]"]
>>      ;;
>>    *)
>> -      AC_MSG_ERROR([unknown APR version])
>> +      SVN_MSG_ERROR([unknown APR version])
>>      ;;
>>  esac
>>  AC_EGREP_CPP([apache_minor_version= *
>> $apache_minor_version_wanted_regex],
>> @@ -91,7 +91,7 @@ if test -n "$APXS" && test "$APXS" != "n
>> apache_minor_version=AP_SERVER_MINORVERSION_NUMBER],
>>               [AC_MSG_RESULT([yes])],
>>               [AC_MSG_RESULT([no])
>> -                AC_MSG_ERROR([Apache version incompatible with APR
>> version])])
>> +                SVN_MSG_ERROR([Apache version incompatible with APR
>> version])])
>> fi
>>
>> AC_ARG_WITH(apache-libexecdir,
>>
>> Modified: trunk/build/ac-macros/apr.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/apr.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/apr.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/apr.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -30,7 +30,7 @@ AC_DEFUN(SVN_LIB_APR,
>>  AC_MSG_CHECKING([APR version])
>>  apr_version="`$apr_config --version`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apr-config --version failed])
>> +    SVN_MSG_ERROR([apr-config --version failed])
>>  fi
>>  AC_MSG_RESULT([$apr_version])
>>
>> @@ -44,51 +44,51 @@ AC_DEFUN(SVN_LIB_APR,
>>
>>  if test $APR_WANTED_REGEX_MATCH -eq 0; then
>>    echo "wanted regexes are $APR_WANTED_REGEXES"
>> -    AC_MSG_ERROR([invalid apr version found])
>> +    SVN_MSG_ERROR([invalid apr version found])
>>  fi
>>
>>  dnl Get build information from APR
>>
>>  CPPFLAGS="$CPPFLAGS `$apr_config --cppflags`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apr-config --cppflags failed])
>> +    SVN_MSG_ERROR([apr-config --cppflags failed])
>>  fi
>>
>>  CFLAGS="$CFLAGS `$apr_config --cflags`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apr-config --cflags failed])
>> +    SVN_MSG_ERROR([apr-config --cflags failed])
>>  fi
>>
>>  LDFLAGS="$LDFLAGS `$apr_config --ldflags`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apr-config --ldflags failed])
>> +    SVN_MSG_ERROR([apr-config --ldflags failed])
>>  fi
>>
>>  SVN_APR_INCLUDES="`$apr_config --includes`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apr-config --includes failed])
>> +    SVN_MSG_ERROR([apr-config --includes failed])
>>  fi
>>
>>  SVN_APR_PREFIX="`$apr_config --prefix`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apr-config --prefix failed])
>> +    SVN_MSG_ERROR([apr-config --prefix failed])
>>  fi
>>
>>  dnl When APR stores the dependent libs in the .la file, we don't
>> need
>>  dnl --libs.
>>  SVN_APR_LIBS="`$apr_config --link-libtool --libs`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apr-config --link-libtool --libs failed])
>> +    SVN_MSG_ERROR([apr-config --link-libtool --libs failed])
>>  fi
>>
>>  SVN_APR_EXPORT_LIBS="`$apr_config --link-ld --libs`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apr-config --link-ld --libs failed])
>> +    SVN_MSG_ERROR([apr-config --link-ld --libs failed])
>>  fi
>>
>>  SVN_APR_SHLIB_PATH_VAR="`$apr_config --shlib-path-var`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apr-config --shlib-path-var failed])
>> +    SVN_MSG_ERROR([apr-config --shlib-path-var failed])
>>  fi
>>
>>  AC_SUBST(SVN_APR_PREFIX)
>> @@ -127,5 +127,5 @@ AC_DEFUN(SVN_DOWNLOAD_APR,
>>  echo "    http://svn.apache.org/repos/asf/apr/apr-util/branches/ 
>> 1.2.x
>> \\"
>>  echo "    apr-util"
>>  echo ""
>> -  AC_MSG_ERROR([no suitable apr found])
>> +  SVN_MSG_ERROR([no suitable apr found])
>> ])
>>
>> Modified: trunk/build/ac-macros/apr_memcache.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/apr_memcache.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/apr_memcache.m4    Fri Jun 26 13:02:56
>> 2009    (r38217)
>> +++ trunk/build/ac-macros/apr_memcache.m4    Sat Jun 27 05:11:33
>> 2009    (r38218)
>> @@ -15,7 +15,7 @@ AC_DEFUN(SVN_LIB_APR_MEMCACHE,
>>                                  [Standalone apr_memcache client
>> library]),
>>  [
>>    if test "$withval" = "yes" ; then
>> -      AC_MSG_ERROR([--with-apr_memcache requires an argument.])
>> +      SVN_MSG_ERROR([--with-apr_memcache requires an argument.])
>>    else
>>      AC_MSG_NOTICE([looking for separate apr_memcache package])
>>      apr_memcache_prefix=$withval
>>
>> Modified: trunk/build/ac-macros/aprutil.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/aprutil.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/aprutil.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/aprutil.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -40,7 +40,7 @@ AC_DEFUN(SVN_LIB_APRUTIL,
>>    # shipped in 2.0.43 contains a correct version number, but
>>    # stupidly doesn't understand the --version switch.)
>>    apu_version=`grep "APRUTIL_DOTTED_VERSION=" $(which $apu_config)
>> | tr -d "APRUTIL_DOTTED_VERSION="| tr -d '"'`
>> -    #AC_MSG_ERROR([
>> +    #SVN_MSG_ERROR([
>>    #    apu-config --version failed.
>>    #    Your apu-config doesn't support the --version switch,
>> please upgrade
>>    #    to APR-UTIL more recent than 2002-Nov-05.])
>> @@ -57,36 +57,36 @@ AC_DEFUN(SVN_LIB_APRUTIL,
>>
>>  if test $APU_WANTED_REGEX_MATCH -eq 0; then
>>    echo "wanted regexes are $APRUTIL_WANTED_REGEXES"
>> -    AC_MSG_ERROR([invalid apr-util version found])
>> +    SVN_MSG_ERROR([invalid apr-util version found])
>>  fi
>>
>>  dnl Get libraries and thread flags from APRUTIL
>> ---------------------
>>
>>  LDFLAGS="$LDFLAGS `$apu_config --ldflags`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apu-config --ldflags failed])
>> +    SVN_MSG_ERROR([apu-config --ldflags failed])
>>  fi
>>
>>  SVN_APRUTIL_INCLUDES="`$apu_config --includes`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apu-config --includes failed])
>> +    SVN_MSG_ERROR([apu-config --includes failed])
>>  fi
>>
>>  SVN_APRUTIL_PREFIX="`$apu_config --prefix`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apu-config --prefix failed])
>> +    SVN_MSG_ERROR([apu-config --prefix failed])
>>  fi
>>
>>  dnl When APR stores the dependent libs in the .la file, we don't
>> need
>>  dnl --libs.
>>  SVN_APRUTIL_LIBS="`$apu_config --link-libtool --libs`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apu-config --link-libtool --libs failed])
>> +    SVN_MSG_ERROR([apu-config --link-libtool --libs failed])
>>  fi
>>
>>  SVN_APRUTIL_EXPORT_LIBS="`$apu_config --link-ld --libs`"
>>  if test $? -ne 0; then
>> -    AC_MSG_ERROR([apu-config --link-ld --libs failed])
>> +    SVN_MSG_ERROR([apu-config --link-ld --libs failed])
>>  fi
>>
>>  AC_SUBST(SVN_APRUTIL_INCLUDES)
>> @@ -121,5 +121,5 @@ AC_DEFUN(SVN_DOWNLOAD_APRUTIL,
>>  echo "Afterwards, run apr-util/buildconf in that subdirectory and"
>>  echo "then run configure again here."
>>  echo ""
>> -  AC_MSG_ERROR([no suitable APRUTIL found])
>> +  SVN_MSG_ERROR([no suitable APRUTIL found])
>> ])
>>
>> Modified: trunk/build/ac-macros/berkeley-db.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/berkeley-db.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/berkeley-db.m4    Fri Jun 26 13:02:56
>> 2009    (r38217)
>> +++ trunk/build/ac-macros/berkeley-db.m4    Sat Jun 27 05:11:33
>> 2009    (r38218)
>> @@ -40,23 +40,23 @@ AC_DEFUN(SVN_LIB_BERKELEY_DB,
>>    elif test "$withval" = "yes"; then
>>      apu_db_version="`$apu_config --db-version`"
>>      if test $? -ne 0; then
>> -        AC_MSG_ERROR([Can't determine whether apr-util is linked
>> against a
>> -                      proper version of Berkeley DB.])
>> +        SVN_MSG_ERROR([Can't determine whether apr-util is linked
>> against a
>> +                       proper version of Berkeley DB.])
>>      fi
>>
>>      if test "$withval" = "yes"; then
>>        if test "$apu_db_version" != "4"; then
>> -          AC_MSG_ERROR([APR-UTIL wasn't linked against Berkeley DB  
>> 4,
>> -                        while the fs component is required.
>> Reinstall
>> -                        APR-UTIL with the appropiate options.])
>> +          SVN_MSG_ERROR([APR-UTIL wasn't linked against Berkeley DB
>> 4,
>> +                         while the fs component is required.
>> Reinstall
>> +                         APR-UTIL with the appropiate options.])
>>        fi
>>
>>        status=required
>>
>>      elif test "$apu_found" != "reconfig"; then
>>        if test "$apu_db_version" != 4; then
>> -          AC_MSG_ERROR([APR-UTIL was installed independently, it
>> won't be
>> -                        possible to use the specified Berkeley DB:
>> $withval])
>> +          SVN_MSG_ERROR([APR-UTIL was installed independently, it
>> won't be
>> +                         possible to use the specified Berkeley DB:
>> $withval])
>>        fi
>>
>>        status=required
>> @@ -80,7 +80,7 @@ AC_DEFUN(SVN_LIB_BERKELEY_DB,
>>
>>        status=required
>>      else
>> -        AC_MSG_ERROR([Invalid syntax of argument of --with-berkeley-
>> db option])
>> +        SVN_MSG_ERROR([Invalid syntax of argument of --with-
>> berkeley-db option])
>>      fi
>>    fi
>>  ],
>> @@ -115,7 +115,7 @@ AC_DEFUN(SVN_LIB_BERKELEY_DB,
>>      AC_MSG_RESULT([no])
>>      svn_lib_berkeley_db=no
>>      if test "$status" = "required"; then
>> -        AC_MSG_ERROR([Berkeley DB $db_version or newer wasn't
>> found.])
>> +        SVN_MSG_ERROR([Berkeley DB $db_version or newer wasn't
>> found.])
>>      fi
>>    fi
>>  fi
>>
>> Modified: trunk/build/ac-macros/ctypesgen.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/ctypesgen.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/ctypesgen.m4    Fri Jun 26 13:02:56
>> 2009    (r38217)
>> +++ trunk/build/ac-macros/ctypesgen.m4    Sat Jun 27 05:11:33
>> 2009    (r38218)
>> @@ -48,8 +48,8 @@ AC_DEFUN(SVN_FIND_CTYPESGEN,
>>    fi
>>
>>    if test ! -f "$CTYPESGEN" || test ! -x "$CTYPESGEN"; then
>> -      AC_MSG_ERROR([Could not find ctypesgen at $where/ctypesgen.py
>> or at
>> -                    $where/bin/ctypesgen.py])
>> +      SVN_MSG_ERROR([Could not find ctypesgen at $where/
>> ctypesgen.py or at
>> +                     $where/bin/ctypesgen.py])
>>    else
>>      AC_MSG_RESULT([$CTYPESGEN])
>>    fi
>>
>> Modified: trunk/build/ac-macros/gssapi.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/gssapi.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/gssapi.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/gssapi.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -50,10 +50,10 @@ int main()
>>        LIBS="$old_LIBS"
>>      else
>>        AC_MSG_RESULT([no])
>> -        AC_MSG_ERROR([cannot find GSSAPI (Kerberos)])
>> +        SVN_MSG_ERROR([cannot find GSSAPI (Kerberos)])
>>      fi
>>    else
>> -      AC_MSG_ERROR([cannot find krb5-config])
>> +      SVN_MSG_ERROR([cannot find krb5-config])
>>    fi
>>  else
>>    AC_MSG_RESULT([no])
>>
>> Modified: trunk/build/ac-macros/java.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/java.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/java.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/java.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -127,7 +127,7 @@ AC_DEFUN(SVN_FIND_JDK,
>>    if test -n "$requested_jikes" && test "$requested_jikes" !=
>> "no"; then
>>      dnl Jikes was explicitly requested.  Verify that it was
>> provided.
>>      if test -z "$jikes_found"; then
>> -        AC_MSG_ERROR([Could not find a usable version of Jikes])
>> +        SVN_MSG_ERROR([Could not find a usable version of Jikes])
>>      elif test -n "$jikes_found" && test "$requested_jikes" !=
>> "yes" &&
>>           test "$JAVAC" != "$requested_jikes"; then
>>        AC_MSG_WARN([--with-jikes PATH was invalid, substitute found])
>>
>> Modified: trunk/build/ac-macros/kwallet.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/kwallet.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/kwallet.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/kwallet.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -64,29 +64,29 @@ int main()
>>                    LIBS="$old_LIBS"
>>                  else
>>                    AC_MSG_RESULT([no])
>> -                    AC_MSG_ERROR([cannot find KWallet])
>> +                    SVN_MSG_ERROR([cannot find KWallet])
>>                  fi
>>                else
>> -                  AC_MSG_ERROR([cannot find kde4-config])
>> +                  SVN_MSG_ERROR([cannot find kde4-config])
>>                fi
>>              else
>>                AC_MSG_RESULT([no])
>> -                AC_MSG_ERROR([cannot find QtCore, QtDBus, QtGui])
>> +                SVN_MSG_ERROR([cannot find QtCore, QtDBus, QtGui])
>>              fi
>>            else
>> -              AC_MSG_ERROR([cannot find D-Bus])
>> +              SVN_MSG_ERROR([cannot find D-Bus])
>>            fi
>>          else
>> -            AC_MSG_ERROR([cannot find pkg-config])
>> +            SVN_MSG_ERROR([cannot find pkg-config])
>>          fi
>>        else
>> -          AC_MSG_ERROR([missing support for internationalization])
>> +          SVN_MSG_ERROR([missing support for internationalization])
>>        fi
>>      else
>> -        AC_MSG_ERROR([APR does not have support for DSOs])
>> +        SVN_MSG_ERROR([APR does not have support for DSOs])
>>      fi
>>    else
>> -      AC_MSG_ERROR([--with-kwallet conflicts with --disable-shared])
>> +      SVN_MSG_ERROR([--with-kwallet conflicts with --disable- 
>> shared])
>>    fi
>>  else
>>    AC_MSG_RESULT([no])
>>
>> Modified: trunk/build/ac-macros/neon.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/neon.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/neon.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/neon.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -98,7 +98,7 @@ int main()
>>              if test "$shared_linking" = "no"; then
>>                NEON_LIBS=`$PKG_CONFIG neon --libs --static`
>>                LIBS="$LIBS $NEON_LIBS"
>> -                AC_LINK_IFELSE([$neon_test_code], , AC_MSG_ERROR
>> ([cannot find Neon]))
>> +                AC_LINK_IFELSE([$neon_test_code], , SVN_MSG_ERROR
>> ([cannot find Neon]))
>>              fi
>>              CFLAGS="$old_CFLAGS"
>>              LIBS="$old_LIBS"
>>
>> Modified: trunk/build/ac-macros/sasl.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/sasl.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/sasl.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/sasl.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -69,7 +69,7 @@ AC_DEFUN(SVN_LIB_SASL,
>>      if test "$required" = "yes"; then
>>        dnl The user explicitly requested SASL, but we couldn't find
>> it.
>>        dnl Exit with an error message.
>> -        AC_MSG_ERROR([Could not find Cyrus SASL v2])
>> +        SVN_MSG_ERROR([Could not find Cyrus SASL v2])
>>      fi
>>
>>      SVN_SASL_INCLUDES=""
>>
>> Modified: trunk/build/ac-macros/serf.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/serf.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/serf.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/serf.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -13,7 +13,7 @@ AC_DEFUN(SVN_LIB_SERF,
>>                                  [Serf WebDAV client library]),
>>  [
>>    if test "$withval" = "yes" ; then
>> -      AC_MSG_ERROR([--with-serf requires an argument.])
>> +      SVN_MSG_ERROR([--with-serf requires an argument.])
>>    elif test "$withval" != "no" ; then
>>      AC_MSG_NOTICE([serf library configuration])
>>      serf_prefix=$withval
>>
>> Modified: trunk/build/ac-macros/sqlite.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/sqlite.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/sqlite.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/sqlite.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -36,7 +36,7 @@ AC_DEFUN(SVN_LIB_SQLITE,
>>                          [Use installed SQLite library or
>> amalgamation file.]),
>>  [
>>    if test "$withval" = "yes" ; then
>> -      AC_MSG_ERROR([--with-sqlite requires an argument.])
>> +      SVN_MSG_ERROR([--with-sqlite requires an argument.])
>>    else
>>      sqlite_dir="$withval"
>>    fi
>> @@ -224,5 +224,5 @@ AC_DEFUN(SVN_DOWNLOAD_SQLITE,
>>  echo "$abs_srcdir/sqlite-amalgamation/sqlite3.c"
>>  echo "This file also ships as part of the subversion-deps
>> distribution."
>>  echo ""
>> -  AC_MSG_ERROR([Subversion requires SQLite])
>> +  SVN_MSG_ERROR([Subversion requires SQLite])
>> ])
>>
>> Modified: trunk/build/ac-macros/svn-macros.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/svn-macros.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/svn-macros.m4    Fri Jun 26 13:02:56
>> 2009    (r38217)
>> +++ trunk/build/ac-macros/svn-macros.m4    Sat Jun 27 05:11:33
>> 2009    (r38218)
>> @@ -1,5 +1,28 @@
>> # Miscellaneous additional macros for Subversion's own use.
>>
>> +dnl SVN_MSG_ERROR(ERROR_MESSAGE)
>> +dnl
>> +dnl Wrapper for AC_MSG_ERROR which additionally prints the content  
>> of
>> +dnl config.log.
>> +AC_DEFUN([SVN_MSG_ERROR], [
>> +  if true; then
>> +    {
>> +      while true; do
>> +        if test -f config.log && test -n "`tail -n1 config.log |
>> grep "configure: exit 1"`"; then
>> +          echo
>> +          echo "************************************************"
>> +          echo "****************** config.log ******************"
>> +          echo "************************************************"
>> +          cat config.log
>> +          break
>> +        fi
>> +      done
>> +    } &
>> +  fi
>> +  AC_MSG_ERROR([$1])
>> +])
>> +
>> +
>> # SVN_CONFIG_NICE(FILENAME)
>> # Write a shell script to FILENAME (typically 'config.nice') which
>> reinvokes
>> # configure with all of the arguments.  Reserves use of the filename
>>
>> Modified: trunk/build/ac-macros/swig.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/swig.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/swig.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/swig.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -46,7 +46,7 @@ AC_DEFUN(SVN_FIND_SWIG,
>>      SWIG="$where/bin/swig"
>>    fi
>>    if test ! -f "$SWIG" || test ! -x "$SWIG"; then
>> -      AC_MSG_ERROR([Could not find swig binary at $SWIG])
>> +      SVN_MSG_ERROR([Could not find swig binary at $SWIG])
>>    fi
>>  fi
>>
>> @@ -142,7 +142,7 @@ AC_DEFUN(SVN_FIND_SWIG,
>>    ])
>>    CPPFLAGS="$SVN_PYCFMT_SAVE_CPPFLAGS"
>>    if test "x$svn_cv_pycfmt_apr_int64_t" = "x"; then
>> -      AC_MSG_ERROR([failed to recognize APR_INT64_T_FMT on this
>> platform])
>> +      SVN_MSG_ERROR([failed to recognize APR_INT64_T_FMT on this
>> platform])
>>    fi
>>    AC_DEFINE_UNQUOTED([SVN_APR_INT64_T_PYCFMT],
>>                       ["$svn_cv_pycfmt_apr_int64_t"],
>>
>> Modified: trunk/build/ac-macros/zlib.m4
>> URL: http://svn.collab.net/viewvc/svn/trunk/build/ac-macros/zlib.m4?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/build/ac-macros/zlib.m4    Fri Jun 26 13:02:56 2009
>> (r38217)
>> +++ trunk/build/ac-macros/zlib.m4    Sat Jun 27 05:11:33 2009
>> (r38218)
>> @@ -13,7 +13,7 @@ AC_DEFUN(SVN_LIB_Z,
>>                                  [zlib compression library]),
>>  [
>>    if test "$withval" = "yes" ; then
>> -      AC_MSG_ERROR([--with-zlib requires an argument.])
>> +      SVN_MSG_ERROR([--with-zlib requires an argument.])
>>    else
>>      AC_MSG_NOTICE([zlib library configuration])
>>      zlib_prefix=$withval
>> @@ -35,7 +35,7 @@ AC_DEFUN(SVN_LIB_Z,
>>  ])
>>
>>  if test "$zlib_found" = "no"; then
>> -    AC_MSG_ERROR([subversion requires zlib])
>> +    SVN_MSG_ERROR([subversion requires zlib])
>>  fi
>>
>>  if test "$zlib_found" = "yes"; then
>>
>> Modified: trunk/configure.ac
>> URL: http://svn.collab.net/viewvc/svn/trunk/configure.ac?pathrev=38218&r1=38217&r2=38218
>> ===
>> ===
>> ===
>> =====================================================================
>> --- trunk/configure.ac    Fri Jun 26 13:02:56 2009    (r38217)
>> +++ trunk/configure.ac    Sat Jun 27 05:11:33 2009    (r38218)
>> @@ -228,7 +228,7 @@ elif test "$svn_enable_shared" = "yes" ;
>>  fi
>>  LT_LDFLAGS="-shared $LT_LDFLAGS"
>> else
>> -  AC_MSG_ERROR([can not disable both shared and static libraries])
>> +  SVN_MSG_ERROR([can not disable both shared and static libraries])
>> fi
>>
>> dnl Check for --enable-all-static option
>> @@ -252,7 +252,7 @@ AC_ARG_ENABLE(local-library-preloading,
>>    if test "$svn_enable_shared" = "yes"; then
>>      TRANSFORM_LIBTOOL_SCRIPTS="transform-libtool-scripts"
>>    else
>> -      AC_MSG_ERROR([--enable-local-library-preloading conflicts
>> with --disable-shared])
>> +      SVN_MSG_ERROR([--enable-local-library-preloading conflicts
>> with --disable-shared])
>>    fi
>>  else
>>    TRANSFORM_LIBTOOL_SCRIPTS=""
>> @@ -473,23 +473,23 @@ if test "$with_gnome_keyring" != "no"; t
>>              SVN_GNOME_KEYRING_LIBS="$DBUS_LIBS `$PKG_CONFIG --libs
>> glib-2.0 gnome-keyring-1`"
>>            else
>>              AC_MSG_RESULT([no])
>> -              AC_MSG_ERROR([cannot find GNOME Keyring])
>> +              SVN_MSG_ERROR([cannot find GNOME Keyring])
>>            fi
>>          else
>>            AC_MSG_RESULT([no])
>> -            AC_MSG_ERROR([cannot find GLib and GNOME Keyring .pc
>> files])
>> +            SVN_MSG_ERROR([cannot find GLib and GNOME Keyring .pc
>> files])
>>          fi
>>        else
>> -          AC_MSG_ERROR([cannot find D-Bus])
>> +          SVN_MSG_ERROR([cannot find D-Bus])
>>        fi
>>      else
>> -        AC_MSG_ERROR([cannot find pkg-config])
>> +        SVN_MSG_ERROR([cannot find pkg-config])
>>      fi
>>    else
>> -      AC_MSG_ERROR([APR does not have support for DSOs])
>> +      SVN_MSG_ERROR([APR does not have support for DSOs])
>>    fi
>>  else
>> -    AC_MSG_ERROR([--with-gnome-keyring conflicts with --disable-
>> shared])
>> +    SVN_MSG_ERROR([--with-gnome-keyring conflicts with --disable-
>> shared])
>>  fi
>> else
>>  AC_MSG_RESULT([no])
>> @@ -713,7 +713,7 @@ AS_HELP_STRING([--enable-maintainer-mode
>> [
>>    if test "$enableval" = "yes" ; then
>>      if test "$enable_debugging" = "no" ; then
>> -        AC_MSG_ERROR(Can't have --disable-debug and --enable-
>> maintainer-mode)
>> +        SVN_MSG_ERROR(Can't have --disable-debug and --enable-
>> maintainer-mode)
>>      fi
>>      enable_debugging=yes
>>      if test "$GCC" = "yes"; then
>> @@ -778,7 +778,7 @@ AS_HELP_STRING([--with-editor=PATH],
>> [
>>
>>    if test "$withval" = "yes" ; then
>> -      AC_MSG_ERROR([--with-editor requires an argument.])
>> +      SVN_MSG_ERROR([--with-editor requires an argument.])
>>    else
>>      SVN_CLIENT_EDITOR=$withval
>>      AC_DEFINE_UNQUOTED(SVN_CLIENT_EDITOR, "$SVN_CLIENT_EDITOR",
>> @@ -815,8 +815,8 @@ AS_HELP_STRING([--enable-gprof],
>>      dnl feel free to extend this to include them.
>>      if test "$GCC" = "yes"; then
>>        if test "$svn_enable_shared" = "yes" ; then
>> -          AC_MSG_ERROR(Can't have --enable-gprof without --disable-
>> shared (we
>> -                  recommend also using --enable-all-static).)
>> +          SVN_MSG_ERROR(Can't have --enable-gprof without --disable-
>> shared (we
>> +                        recommend also using --enable-all-static).)
>>        fi
>>        if test ! "$enable_all_static" = "yes" ; then
>>          AC_MSG_WARN(We recommend --enable-all-static with --enable-
>> gprof.)
>> @@ -826,7 +826,7 @@ AS_HELP_STRING([--enable-gprof],
>>        CXXFLAGS="$CXXFLAGS -pg"
>>        LT_LDFLAGS="$LT_LDFLAGS -pg"
>>      else
>> -        AC_MSG_ERROR(We only support --enable-gprof with GCC right
>> now.)
>> +        SVN_MSG_ERROR(We only support --enable-gprof with GCC right
>> now.)
>>      fi
>>    fi
>> ])
>> @@ -892,7 +892,7 @@ AS_HELP_STRING([--enable-runtime-module-
>>    if test "$enableval" = "yes"; then
>>      use_dso=yes
>>      if test "$svn_enable_shared" = "no"; then
>> -        AC_MSG_ERROR([--enable-runtime-module-search conflicts with
>> --disable-shared])
>> +        SVN_MSG_ERROR([--enable-runtime-module-search conflicts
>> with --disable-shared])
>>      fi
>>      AC_DEFINE(SVN_USE_DSO, 1,
>>                [Defined if svn should try to load DSOs])
>> @@ -982,8 +982,8 @@ LT_CXX_LIBADD=""
>> if test "$do_javahl_build" = "yes"; then
>>  dnl Check for suitable JDK
>>  if test "$JDK_SUITABLE" = "no"; then
>> -    AC_MSG_ERROR([Cannot compile JavaHL without a suitable JDK.
>> -                  Please specify a suitable JDK using the --with-
>> jdk option.])
>> +    SVN_MSG_ERROR([Cannot compile JavaHL without a suitable JDK.
>> +                   Please specify a suitable JDK using the --with-
>> jdk option.])
>>  fi
>>
>>  dnl The temporary directory where libtool compiles libsvnjavahl.
>>
>> ------------------------------------------------------
>> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=495&dsMessageId=2365944
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2365970

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2366330