Author: svn-role
Date: Thu Jul 27 04:00:03 2023
New Revision: 1911304
URL: http://svn.apache.org/viewvc?rev=1911304&view=rev
Log:
Merge r1911278 from trunk:
* r1911278
INSTALL: Improve APR build notes, especially regarding APR 1.7.3 on Windows
Justification:
SVN is unusable with APR 1.7.3 on Windows.
Votes:
+1: hartmannathan, dsahlberg
Modified:
subversion/branches/1.14.x/ (props changed)
subversion/branches/1.14.x/INSTALL
subversion/branches/1.14.x/STATUS
Propchange: subversion/branches/1.14.x/
------------------------------------------------------------------------------
Merged /subversion/trunk:r1911278
Modified: subversion/branches/1.14.x/INSTALL
URL:
http://svn.apache.org/viewvc/subversion/branches/1.14.x/INSTALL?rev=1911304&r1=1911303&r2=1911304&view=diff
==============================================================================
--- subversion/branches/1.14.x/INSTALL (original)
+++ subversion/branches/1.14.x/INSTALL Thu Jul 27 04:00:03 2023
@@ -242,22 +242,42 @@ I. INTRODUCTION
$ ./configure --with-apr=/usr/local/apache2 \
--with-apr-util=/usr/local/apache2 ...
- Be sure to use a native Windows SVN client (as opposed to
- Cygwin's version) so that the .dsp files get carriage-returns at
- the ends of their lines. Otherwise Visual Studio will complain
- that it doesn't recognize the .dsp files.
-
- If you use APR libraries checked out from svn in an Unix
- environment, you need to run the 'buildconf' script in each
- library's directory, to regenerate the configure scripts and
- other files required for compiling the libraries:
+ Notes on Windows platforms:
- $ cd apr; ./buildconf; ./configure ...; make; make install; cd ..
-
- $ cd apr-util; ./buildconf; ./configure ...; make; make install; cd ..
-
- Configure build and install both libraries before running Subversion's
- configure script.
+ * Do not use APR version 1.7.3 as that release contains a bug that
+ makes it impossible for Subversion to use it properly. This issue
+ only affects APR builds on Windows. This issue was fixed in APR
+ version 1.7.4. See:
+ https://lists.apache.org/thread/xd5t922jvb9423ph4j84rsp5fxks1k0z
+
+ * If you check out APR and APR-util sources from their Subversion
+ repository, be sure to use a native Windows SVN client (as opposed
+ to Cygwin's version) so that the .dsp files get carriage-returns at
+ the ends of their lines. Otherwise Visual Studio will complain that
+ it doesn't recognize the .dsp files.
+
+ Notes on Unix platforms:
+
+ * If you check out APR and APR-util sources from their Subversion
+ repository, you need to run the 'buildconf' script in each library's
+ directory to regenerate the configure scripts and other files
+ required for compiling the libraries. Afterwards, configure, build,
+ and install both libraries before running Subversion's configure
+ script. For example:
+
+ $ cd apr
+ $ ./buildconf
+ $ ./configure <options...>
+ $ make
+ $ make install
+ $ cd ..
+
+ $ cd apr-util
+ $ ./buildconf
+ $ ./configure <options...>
+ $ make
+ $ make install
+ $ cd ..
2. SQLite (REQUIRED)
Modified: subversion/branches/1.14.x/STATUS
URL:
http://svn.apache.org/viewvc/subversion/branches/1.14.x/STATUS?rev=1911304&r1=1911303&r2=1911304&view=diff
==============================================================================
--- subversion/branches/1.14.x/STATUS (original)
+++ subversion/branches/1.14.x/STATUS Thu Jul 27 04:00:03 2023
@@ -49,10 +49,3 @@ Veto-blocked changes:
Approved changes:
=================
-
- * r1911278
- INSTALL: Improve APR build notes, especially regarding APR 1.7.3 on Windows
- Justification:
- SVN is unusable with APR 1.7.3 on Windows.
- Votes:
- +1: hartmannathan, dsahlberg