Author: hartmannathan
Date: Thu Dec 5 05:13:57 2019
New Revision: 1870861
URL: http://svn.apache.org/viewvc?rev=1870861&view=rev
Log:
INSTALL: Document required dependency on utf8proc
* INSTALL:
(Section I.B. "Dependency Overview")
Add bulletpoint for utf8proc.
(Section I.C. "Dependencies in Detail")
Document required dependency on utf8proc and relevant 'configure'
argument.
Found by: gstein
Modified:
subversion/trunk/INSTALL
Modified: subversion/trunk/INSTALL
URL: http://svn.apache.org/viewvc/subversion/trunk/INSTALL?rev=1870861&r1=1870860&r2=1870861&view=diff
==============================================================================
--- subversion/trunk/INSTALL (original)
+++ subversion/trunk/INSTALL Thu Dec 5 05:13:57 2019
@@ -96,6 +96,11 @@ I. INTRODUCTION
These diff streams are used everywhere -- over the network,
in the repository, and in the client's working copy.
+ * utf8proc (REQUIRED for client and server)
+
+ Subversion uses utf8proc for UTF-8 support, including Unicode
+ normalization.
+
* Apache Serf (OPTIONAL for client)
The Apache Serf library allows the Subversion client to send HTTP
@@ -608,6 +613,23 @@ I. INTRODUCTION
top of section I.C for more about get-deps.sh.
+ 24. utf8proc (REQUIRED)
+
+ Subversion uses utf8proc for UTF-8 support. Configure will
+ attempt to locate utf8proc by default using pkg-config and known
+ paths.
+
+ If it is installed in a non-standard location, then use:
+
+ --with-utf8proc=/path/to/libutf8proc
+
+ Alternatively, a copy of utf8proc comes bundled with the
+ Subversion sources. If configure should use the bundled copy,
+ use:
+
+ --with-utf8proc=internal
+
+
D. Documentation
The primary documentation for Subversion is the free book
|