Author: danielsh
Date: Tue Dec 3 23:31:42 2019
New Revision: 1870772
URL: http://svn.apache.org/viewvc?rev=1870772&view=rev
Log:
* build/ac-macros/utf8proc.m4
(SVN_UTF8PROC): When --with-utf8proc was not given, or given without an
argument, and utf8proc was not found, have the error message suggest
using --with-utf8proc=internal.
Found by: gstein
Modified:
subversion/trunk/build/ac-macros/utf8proc.m4
Modified: subversion/trunk/build/ac-macros/utf8proc.m4
URL: http://svn.apache.org/viewvc/subversion/trunk/build/ac-macros/utf8proc.m4?rev=1870772&r1=1870771&r2=1870772&view=diff
==============================================================================
--- subversion/trunk/build/ac-macros/utf8proc.m4 (original)
+++ subversion/trunk/build/ac-macros/utf8proc.m4 Tue Dec 3 23:31:42 2019
@@ -54,7 +54,7 @@ AC_DEFUN(SVN_UTF8PROC,
SVN_UTF8PROC_PREFIX
fi
if test "$utf8proc_found" != "yes"; then
- AC_MSG_ERROR([Subversion requires UTF8PROC])
+ AC_MSG_ERROR([Subversion requires UTF8PROC; install it or re-run configure with "--with-utf8proc=internal"])
fi
fi
AC_SUBST(SVN_UTF8PROC_INCLUDES)
|