source: general/prog/subversion.xml@ e5d0a32

trunk
Last change on this file since e5d0a32 was fbcfbf5e, checked in by Douglas R. Reno <renodr@…>, 9 days ago

Subversion: promote SWIG to recommended.

When I made the change for fixing the bindings with GCC-14, I did not
test on a system without SWIG installed. This issue really only affects
jhalfs since jhalfs can't read that it's needed to fix the bindings, so
let's work around it by promoting SWIG to recomomended.

  • Property mode set to 100644
File size: 21.0 KB
RevLine 
[ab4fdfc]1<?xml version="1.0" encoding="UTF-8"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[a91dd56]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[8dfc5c3]7 <!ENTITY subversion-download-http "https://archive.apache.org/dist/subversion/subversion-&subversion-version;.tar.bz2">
[37c1117]8 <!ENTITY subversion-download-ftp " ">
[4365a9e1]9 <!ENTITY subversion-md5sum "19756a5ceb32a022698a66e48616ef6b">
10 <!ENTITY subversion-size "8.2 MB">
[e09b0ae]11 <!-- for 1.12.0 1.12.2 1.13.0
[8558044]12 make javahl: 0.5 SBU 28 MB; not avail
13 swig-pl: 0.8 42 MB; 0.7 SBU 43 MB; 0.6 SBU 44 MB
[e09b0ae]14 swig-py: 0.6 26 MB; 0.5 28 MB; 0.5 28 MB
15 swig-rb: 0.4 22 MB; 0.4 21 MB; 0.3 21 MB
16 docs: 2 secs 26 MB; 2 sec 27 MB; 2 sec 26 MB
17 tests 46 min 1104 MB 46:52 1103 MB 47 min -->
[4365a9e1]18 <!ENTITY subversion-buildsize "193 MB (add 189 MB for bindings, 54 MB for docs, 1.3 GB for tests)">
19 <!ENTITY subversion-time "0.5 SBU (Using parallelism=4; add 2.0 SBU for bindings, 30 SBU for tests)">
[a91dd56]20]>
21
22<sect1 id="subversion" xreflabel="Subversion-&subversion-version;">
[11a05ad]23 <?dbhtml filename="subversion.html"?>
[8d0d2eb]24
25
[11a05ad]26 <title>Subversion-&subversion-version;</title>
[8d0d2eb]27
[11a05ad]28 <indexterm zone="subversion">
29 <primary sortas="a-Subversion">Subversion</primary>
30 </indexterm>
31
32 <sect2 role="package">
33 <title>Introduction to Subversion</title>
34
[cd51da4]35 <para>
36 <application>Subversion</application> is a version control system that is
37 designed to be a compelling replacement for <application>CVS</application>
38 in the open source community. It extends and enhances
39 <application>CVS</application>' feature set, while maintaining a similar
40 interface for those already familiar with <application>CVS</application>.
41 These instructions install the client and server software used to
42 manipulate a <application>Subversion</application> repository. Creation of
43 a repository is covered at <xref linkend="svnserver"/>.
44 </para>
[8d0d2eb]45
[57791dd]46 &lfs122_checked;
[d8069d7]47
[11a05ad]48 <bridgehead renderas="sect3">Package Information</bridgehead>
49 <itemizedlist spacing="compact">
50 <listitem>
[cd51da4]51 <para>
52 Download (HTTP): <ulink url="&subversion-download-http;"/>
53 </para>
[11a05ad]54 </listitem>
55 <listitem>
[cd51da4]56 <para>
57 Download (FTP): <ulink url="&subversion-download-ftp;"/>
58 </para>
[11a05ad]59 </listitem>
60 <listitem>
[cd51da4]61 <para>
62 Download MD5 sum: &subversion-md5sum;
63 </para>
[11a05ad]64 </listitem>
65 <listitem>
[cd51da4]66 <para>
67 Download size: &subversion-size;
68 </para>
[11a05ad]69 </listitem>
70 <listitem>
[cd51da4]71 <para>
72 Estimated disk space required: &subversion-buildsize;
73 </para>
[11a05ad]74 </listitem>
75 <listitem>
[cd51da4]76 <para>
77 Estimated build time: &subversion-time;
78 </para>
[2174baa]79 </listitem>
[11a05ad]80 </itemizedlist>
[229d383c]81
[f004db1]82 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
83 <itemizedlist spacing="compact">
84 <listitem>
85 <para>
[229d383c]86 Required patch:
[6373fea]87 <ulink url="&patch-root;/subversion-&subversion-version;-upstream_fixes-1.patch"/>
[f004db1]88 </para>
89 </listitem>
90 </itemizedlist>
[229d383c]91
[db0eb6a]92 <bridgehead renderas="sect3">Subversion Dependencies</bridgehead>
[8d0d2eb]93
[84f9b731]94 <bridgehead renderas="sect4">Required</bridgehead>
[cd51da4]95 <para role="required">
[299d5c54]96 <xref linkend="apr-util"/> and
[1476aabf]97 <xref linkend="sqlite"/>
[cd51da4]98 </para>
99
[299d5c54]100 <bridgehead renderas="sect4">Recommended</bridgehead>
101 <para role="recommended">
[fbcfbf5e]102 <xref linkend="serf"/> (for handling http:// and https:// URLs) and
103 <xref linkend="swig"/> (for regenerating the build system)
[299d5c54]104 </para>
105
[7c1b53e]106<!-- support for berkeley db is deprecated since 1.8
[1476aabf]107 <note>
108 <para>
109 If you require the <application>Berkeley DB</application> back-end hooks
110 in <application>Subversion</application> to build or support BDB based
111 repositories, you must have <application>APR-util</application> linked to
112 the <application>Berkeley DB</application> library.
113 </para>
114 </note>
[7c1b53e]115-->
[84f9b731]116
[11a05ad]117 <bridgehead renderas="sect4">Optional</bridgehead>
[cd51da4]118 <para role="optional">
[1476aabf]119 <xref linkend="apache"/>,
[4c849ed2]120 <xref linkend="boost"/>,
[cd51da4]121 <xref linkend="cyrus-sasl"/>,
[54666831]122 <xref linkend="dbus"/>,
[1f9c8ece]123 <xref linkend="doxygen"/> (for generating HTML documentation),
[bd708475]124 <xref linkend="gnome-keyring"/>,
[ed9ef43f]125 <xref linkend="libsecret"/>,
[9e04432]126<!-- <xref linkend="kdelibs"/> (for <ulink url="http://utils.kde.org/projects/kwalletmanager/">KWallet</ulink> support), -->
[00766cc]127 <xref linkend="py3c"/> (for the python bindings, and tests),
128 <xref linkend="python3"/> (with sqlite support for the tests),
[ed9ef43f]129 <xref linkend="ruby"/>,
[fbcfbf5e]130 <!--<xref linkend="swig"/> (for building Perl, Python and Ruby bindings),-->
[6ba3ab5]131 and
[80106051]132 <ulink url="https://git.netsurf-browser.org/libutf8proc.git/">UTF8proc</ulink>
[cd51da4]133 </para>
134
135 <bridgehead renderas="sect4">Optional (for the Java Bindings)</bridgehead>
136 <para role="optional">
[0d7900a]137 One of <xref linkend="openjdk"/>,
[80106051]138 <ulink url="https://www.inet.no/dante/">Dante</ulink> or
[17aa21c]139 <ulink url="https://jikes.sourceforge.net/">Jikes</ulink>,
[3aee187]140 <ulink url="https://junit.org/junit4/">JUnit 4</ulink> (to test the Java bindings) and
[6afe8c1]141 <xref linkend="apache-ant"/>.
[cd51da4]142 </para>
143
[11a05ad]144 </sect2>
[8d0d2eb]145
[11a05ad]146 <sect2 role="installation">
147 <title>Installation of Subversion</title>
[e09b0ae]148<!--
[8cf09d06]149 <note>
150 <para>
151 This package may fail during the make phase when using multiple
152 processors. If this occurs try continuing with
153 <emphasis>make -j1</emphasis> or redo the entire build process with
154 fresh sources using <emphasis>-j1</emphasis>.
155 </para>
156 </note>
[e09b0ae]157-->
[f004db1]158
[2fcfa4a1]159 <para>
[893d3e5a]160 First, adapt some Python scripts to use python3:
[2fcfa4a1]161 </para>
[8558044]162
[893d3e5a]163<screen><userinput remap="pre">grep -rl '^#!.*python$' | xargs sed -i '1s/python/&amp;3/'</userinput></screen>
164
[7246c35]165 <para>
[229d383c]166 Next, fix building this package with GCC 14:
167 </para>
168
169<screen><userinput remap="pre">patch -Np1 -i ../subversion-&subversion-version;-upstream_fixes-1.patch</userinput></screen>
170
171 <para>
172 After modifying the SWIG bindings like we did with the patch, the build
173 system must be regenerated so the bindings pick up the changes:
[7246c35]174 </para>
175
[08fa6599]176<screen><userinput remap="pre">touch build/generator/swig/*.py &amp;&amp;
[229d383c]177mv -v build-outputs.mk{,.old} &amp;&amp;
178./autogen.sh --release</userinput></screen>
[7246c35]179
[cd51da4]180 <para>
181 Install <application>Subversion</application> by running the following
182 commands:
183 </para>
[11a05ad]184
[68dfef54]185<screen><userinput>PYTHON=python3 \
186./configure --prefix=/usr \
[ed9ef43f]187 --disable-static \
188 --with-apache-libexecdir \
189 --with-utf8proc=internal &amp;&amp;
[466d85a]190make</userinput></screen>
[11a05ad]191
[cd51da4]192 <para>
193 If you have <xref linkend="doxygen"/> installed and you wish to build the
[2f3e3de9]194 API documentation, issue:
[cd51da4]195 </para>
[84f9b731]196
[2f3e3de9]197<screen remap="doc"><userinput>doxygen doc/doxygen.conf</userinput></screen>
198
[cd51da4]199 <para>
[3aee187]200 If you wish to build the Java bindings pass the <option>--enable-javahl</option>
201 parameter to the <command>configure</command> command. In addition, if
202 you want to run the Java test suite, you have to specify the location
203 of the <application>JUnit</application> file by adding
204 <option>--with-junit=&lt;path to junit jar&gt;</option> (for
205 instance <option>--with-junit=/usr/local/java/lib/junit-4.13.jar</option>)
[8558044]206 to <command>configure</command>. The JUnit jar file is no longer
[a7db285]207 included in <xref linkend="apache-ant"/> and must be downloaded
208 separately. To build the Java bindings, issue the following command:
[4b33d7d5]209 </para>
210 <para>
[ac605d0a]211 <screen><command>make -j1 javahl</command></screen>
[cd51da4]212 </para>
[11a05ad]213
[cd51da4]214 <para>
[466d85a]215 If you want to compile <application>Perl</application>,
[3aee187]216 <application>Python</application>, or <application>Ruby</application>
[466d85a]217 bindings, issue any of the following command:
218 </para>
219 <para>
[4b33d7d5]220 <screen><command>make swig-pl</command> # for <application>Perl</application>
[466d85a]221<command>make swig-py \
[3aee187]222 swig_pydir=/usr/lib/python&python3-majorver;/site-packages/libsvn \
223 swig_pydir_extra=/usr/lib/python&python3-majorver;/site-packages/svn</command> # for <application>Python</application>
[4b33d7d5]224<command>make swig-rb</command> # for <application>Ruby</application></screen>
[cd51da4]225 </para>
[707406b]226
[cd51da4]227 <para>
[1f9c8ece]228 To test the results, issue: <command>make check</command>. Four tests in
[8558044]229 the <filename>commit_tests.py</filename>,
[1f9c8ece]230 <filename>prop_tests.py</filename>, and
[dd3f068f]231 <filename>update_tests.py</filename> suites are known to fail. Due to
232 changes in Python-3.12, you can expect to see around 200 Syntax Warnings
233 during the test suite due to invalid escape sequences.
[cd51da4]234 </para>
[707406b]235
[cd51da4]236 <para>
[1476aabf]237 To test the results of any of the <application>SWIG</application>
238 bindings, you can use any of the following commands:
[466d85a]239 <command>make check-swig-pl</command>,
[55582eb0]240 <command>make check-swig-py</command>, or
[466d85a]241 <command>make check-swig-rb</command>.
[cd51da4]242 </para>
[2fcfa4a1]243
[cd51da4]244 <para>
245 Now, as the <systemitem class="username">root</systemitem> user:
246 </para>
247
[59a6b63]248<screen role="root"><userinput>make install &amp;&amp;
249
[37c1117]250install -v -m755 -d /usr/share/doc/subversion-&subversion-version; &amp;&amp;
[55582eb0]251cp -v -R doc/* /usr/share/doc/subversion-&subversion-version;</userinput></screen>
[a91dd56]252
[cd51da4]253 <para>
254 If you built the Java bindings, issue the following command as the
255 <systemitem class="username">root</systemitem> user to install them:
256 </para>
[4b33d7d5]257 <para>
[c599277]258<screen><command>make install-javahl</command></screen>
[4b33d7d5]259 </para>
[4d6e546]260
[cd51da4]261 <para>
[466d85a]262 If you built the <application>Perl</application>,
[3aee187]263 <application>Python</application>, or
[466d85a]264 <application>Ruby</application> bindings, issue any of the following
265 commands as the <systemitem class="username">root</systemitem> user
266 to install them:
267 </para>
268 <para>
[c599277]269<screen><command>make install-swig-pl</command>
[466d85a]270<command>make install-swig-py \
[3aee187]271 swig_pydir=/usr/lib/python&python3-majorver;/site-packages/libsvn \
272 swig_pydir_extra=/usr/lib/python&python3-majorver;/site-packages/svn</command>
[4b33d7d5]273<command>make install-swig-rb</command></screen>
[cd51da4]274 </para>
[8d0d2eb]275
[f5c839e]276 <para>
277 The java bindings need to be installed in order for the tests to run,
278 since the tests attempt to look for them in CLASSPATH. To test the
279 results of the Java bindings build, issue
280 <command>LANG=C make check-javahl</command>.
281 <!-- ~~ This explanation is added to the configure above ~~
282 The <application>JUnit</application> testing framework must be installed,
283 and the location of the JUnit jar has to be specified by passing the
284 <option>- -with-junit=&lt;path to junit jar&gt;</option> parameter to
285 <command>configure</command>. Note that <application>JUnit</application>
286 is included in <xref linkend="apache-ant"/>, and can be accessed by
287 passing <option>- -with-junit=/opt/ant/lib/junit-4.12.jar</option>
288 to <command>configure</command>.
289 -->
290 </para>
[cd51da4]291 </sect2>
292
293 <sect2 role="commands">
294 <title>Command Explanations</title>
295
[c1d37550]296 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
297 href="../../xincludes/static-libraries.xml"/>
[cd51da4]298
[b26bc4c]299 <para>
[31ff9f72]300 <parameter>--with-apache-libexecdir</parameter>:
[466d85a]301 If <xref linkend="apache"/> is installed, the shared
302 <application>Apache</application> modules are
303 built. This switch allows to have those modules installed to
304 <application>Apache</application>'s configured module dir instead
305 of <filename class="directory">/usr/libexec</filename>. It has no effect
306 if <application>Apache</application> is not installed.
[31ff9f72]307 </para>
308
[ed9ef43f]309 <para>
[875b3b57]310 <parameter>--with-utf8proc=internal</parameter>:
[1f9c8ece]311 Remove these switches if you have installed the optional dependencies.
[ed9ef43f]312 </para>
313
[464f030]314 <para>
315 <option>--enable-javahl</option>: enables compilation of Java high level
316 bindings. Running <command>make javahl</command> is necessary to do
317 the compilation.
318 </para>
319
320 <para>
321 <option>--with-junit=&lt;location of the junit jar file&gt;</option>:
322 gives the location of the junit jar, otherwise the javahl tests cannot
323 be run.
324 </para>
325
[59a6b63]326 <para>
[f4cbce35]327 <option>--disable-gmock</option>: Do not use the Googlemock testing
[59a6b63]328 framework.
329 </para>
330
[11a05ad]331 </sect2>
[8d0d2eb]332
[11a05ad]333 <sect2 role="configuration">
334 <title>Configuring Subversion</title>
335
336 <sect3 id="subversion-config">
337 <title>Config Files</title>
[8d0d2eb]338
[cd51da4]339 <para>
340 <filename>~/.subversion/config</filename> and
341 <filename>/etc/subversion/config</filename>
342 </para>
[8d0d2eb]343
[11a05ad]344 <indexterm zone="subversion subversion-config">
345 <primary sortas="e-AA.subversion/config">~/.subversion/config</primary>
346 </indexterm>
[8d0d2eb]347
[11a05ad]348 <indexterm zone="subversion subversion-config">
349 <primary sortas="e-etc-subversion-config">/etc/subversion/config</primary>
350 </indexterm>
351 </sect3>
[8d0d2eb]352
[11a05ad]353 <sect3>
354 <title>Configuration Information</title>
[8d0d2eb]355
[cd51da4]356 <para>
357 <filename>/etc/subversion/config</filename> is the
358 <application>Subversion</application> system-wide configuration file.
359 This file is used to specify defaults for different
360 <command>svn</command> commands.
361 </para>
362
363 <para>
364 <filename>~/.subversion/config</filename> is the user's personal
365 configuration file. It is used to override the system-wide defaults set
366 in <filename>/etc/subversion/config</filename>.
367 </para>
[11a05ad]368 </sect3>
[b279414]369
[11a05ad]370 </sect2>
[8d0d2eb]371
[11a05ad]372 <sect2 role="content">
373 <title>Contents</title>
[8d0d2eb]374
[11a05ad]375 <segmentedlist>
376 <segtitle>Installed Programs</segtitle>
377 <segtitle>Installed Libraries</segtitle>
378 <segtitle>Installed Directories</segtitle>
[8d0d2eb]379
[11a05ad]380 <seglistitem>
[cd51da4]381 <seg>
[59a6b63]382 svn, svnadmin, svnbench, svndumpfilter, svnfsfs, svnlook, svnmucc,
383 svnrdump, svnserve, svnsync, and svnversion
[cd51da4]384 </seg>
385 <seg>
[1476aabf]386 libsvn_*-1.so and optionally, a Java library, the mod_dav_svn.so and
[eb684454]387 mod_authz_svn.so <application>Apache HTTP</application> DSO
[66c47415]388 modules and various <application>Perl</application>,
389 <application>Python</application> and
390 <application>Ruby</application> modules.
[cd51da4]391 </seg>
392 <seg>
393 /usr/include/subversion-1,
[7f5413b]394 /usr/lib/perl5/site_perl/&lfs-perl-version;/{,auto/}SVN,
[3aee187]395 /usr/lib/python&python3-majorver;/site-packages/{libsvn,svn},
[7374e16]396 /usr/lib/ruby/site_ruby/&lt;x.y.z&gt;/{,&lt;arch-linux&gt;-linux/}svn,
[7f5413b]397 /usr/lib/svn-javahl, and
398 /usr/share/doc/subversion-&subversion-version;
[cd51da4]399 </seg>
[11a05ad]400 </seglistitem>
401 </segmentedlist>
[8d0d2eb]402
[11a05ad]403 <variablelist>
404 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
405 <?dbfo list-presentation="list"?>
406 <?dbhtml list-presentation="table"?>
[8d0d2eb]407
[11a05ad]408 <varlistentry id="svn">
409 <term><command>svn</command></term>
410 <listitem>
[cd51da4]411 <para>
412 is a command-line client program used to access
[4c24eb0a]413 <application>Subversion</application> repositories
[cd51da4]414 </para>
[11a05ad]415 <indexterm zone="subversion svn">
416 <primary sortas="b-svn">svn</primary>
417 </indexterm>
418 </listitem>
419 </varlistentry>
[8d0d2eb]420
[11a05ad]421 <varlistentry id="svnadmin">
422 <term><command>svnadmin</command></term>
423 <listitem>
[cd51da4]424 <para>
425 is a tool for creating, tweaking or repairing a
[4c24eb0a]426 <application>Subversion</application> repository
[cd51da4]427 </para>
[11a05ad]428 <indexterm zone="subversion svnadmin">
429 <primary sortas="b-svnadmin">svnadmin</primary>
430 </indexterm>
431 </listitem>
432 </varlistentry>
[8d0d2eb]433
[59a6b63]434 <varlistentry id="svnbench">
435 <term><command>svnbench</command></term>
436 <listitem>
437 <para>
[4c24eb0a]438 is a benchmarking tool
[59a6b63]439 </para>
440 <indexterm zone="subversion svnbench">
441 <primary sortas="b-svnbench">svnbench</primary>
442 </indexterm>
443 </listitem>
444 </varlistentry>
445
[11a05ad]446 <varlistentry id="svndumpfilter">
447 <term><command>svndumpfilter</command></term>
448 <listitem>
[cd51da4]449 <para>
450 is a program for filtering <application>Subversion</application>
[4c24eb0a]451 repository dumpfile format streams
[cd51da4]452 </para>
[11a05ad]453 <indexterm zone="subversion svndumpfilter">
454 <primary sortas="b-svndumpfilter">svndumpfilter</primary>
455 </indexterm>
456 </listitem>
457 </varlistentry>
[8d0d2eb]458
[59a6b63]459 <varlistentry id="svnfsfs">
460 <term><command>svnfsfs</command></term>
461 <listitem>
462 <para>
463 is the FSFS (FileSystem atop of the FileSystem -
464 <application>Subversion</application> filesystem implementation)
[4c24eb0a]465 repository manipulation tool
[59a6b63]466 </para>
467 <indexterm zone="subversion svnfsfs">
468 <primary sortas="b-svnfsfs">svnfsfs</primary>
469 </indexterm>
470 </listitem>
471 </varlistentry>
472
[11a05ad]473 <varlistentry id="svnlook">
474 <term><command>svnlook</command></term>
475 <listitem>
[cd51da4]476 <para>
477 is a tool for inspecting a <application>Subversion</application>
[4c24eb0a]478 repository
[cd51da4]479 </para>
[11a05ad]480 <indexterm zone="subversion svnlook">
481 <primary sortas="b-svnlook">svnlook</primary>
482 </indexterm>
483 </listitem>
484 </varlistentry>
[8d0d2eb]485
[66c47415]486 <varlistentry id="svnmucc">
487 <term><command>svnmucc</command></term>
488 <listitem>
489 <para>
[4c24eb0a]490 is a Multiple URL Command Client for <application>Subversion</application>
[66c47415]491 </para>
492 <indexterm zone="subversion svnmucc">
493 <primary sortas="b-svnmucc">svnmucc</primary>
494 </indexterm>
495 </listitem>
496 </varlistentry>
497
[cd51da4]498 <varlistentry id="svnrdump">
499 <term><command>svnrdump</command></term>
500 <listitem>
501 <para>
502 is a tool for dumping or loading a remote
[4c24eb0a]503 <application>Subversion</application> repository
[cd51da4]504 </para>
505 <indexterm zone="subversion svnrdump">
506 <primary sortas="b-svnrdump">svnrdump</primary>
507 </indexterm>
508 </listitem>
509 </varlistentry>
510
[11a05ad]511 <varlistentry id="svnserve">
512 <term><command>svnserve</command></term>
513 <listitem>
[cd51da4]514 <para>
515 is a custom standalone server program, able to run as a daemon
[4c24eb0a]516 process or invoked by SSH
[cd51da4]517 </para>
[11a05ad]518 <indexterm zone="subversion svnserve">
519 <primary sortas="b-svnserve">svnserve</primary>
520 </indexterm>
521 </listitem>
522 </varlistentry>
[8d0d2eb]523
[cd51da4]524 <varlistentry id="svnsync">
525 <term><command>svnsync</command></term>
[11a05ad]526 <listitem>
[cd51da4]527 <para>
528 is a <application>Subversion</application> repository
[4c24eb0a]529 synchronisation tool
[cd51da4]530 </para>
531 <indexterm zone="subversion svnsync">
532 <primary sortas="b-svnsync">svnsync</primary>
[11a05ad]533 </indexterm>
534 </listitem>
535 </varlistentry>
[8d0d2eb]536
[cd51da4]537 <varlistentry id="svnversion">
538 <term><command>svnversion</command></term>
[11a05ad]539 <listitem>
[cd51da4]540 <para>
541 is used to report the version number and state of a working
[4c24eb0a]542 <application>Subversion</application> repository copy
[cd51da4]543 </para>
544 <indexterm zone="subversion svnversion">
545 <primary sortas="b-svnversion">svnversion</primary>
[11a05ad]546 </indexterm>
547 </listitem>
548 </varlistentry>
[8d0d2eb]549
[1476aabf]550 <varlistentry id="libsvn_star-1">
551 <term><filename class="libraryfile">libsvn_*-1.so</filename></term>
[11a05ad]552 <listitem>
[cd51da4]553 <para>
554 are the support libraries used by the
[4c24eb0a]555 <application>Subversion</application> programs
[cd51da4]556 </para>
[1476aabf]557 <indexterm zone="subversion libsvn_star-1">
558 <primary sortas="c-libsvn_star-1">libsvn_*-1.so</primary>
[11a05ad]559 </indexterm>
560 </listitem>
561 </varlistentry>
[8d0d2eb]562
[11a05ad]563 <varlistentry id="mod_authz_svn">
[cd51da4]564 <term><filename class="libraryfile">mod_authz_svn.so</filename></term>
[11a05ad]565 <listitem>
[cd51da4]566 <para>
567 is a plug-in module for the <application>Apache</application> HTTP
568 server, used to authenticate users to a
569 <application>Subversion</application> repository over the Internet
[4c24eb0a]570 or an intranet
[cd51da4]571 </para>
[11a05ad]572 <indexterm zone="subversion mod_authz_svn">
573 <primary sortas="c-mod_authz_svn">mod_authz_svn.so</primary>
574 </indexterm>
575 </listitem>
576 </varlistentry>
[8d0d2eb]577
[11a05ad]578 <varlistentry id="mod_dav_svn">
[cd51da4]579 <term><filename class="libraryfile">mod_dav_svn.so</filename></term>
[11a05ad]580 <listitem>
[cd51da4]581 <para>
582 is a plug-in module for the <application>Apache</application> HTTP
583 server, used to make a <application>Subversion</application>
[4c24eb0a]584 repository available to others over the Internet or an intranet
[cd51da4]585 </para>
[11a05ad]586 <indexterm zone="subversion mod_dav_svn">
587 <primary sortas="c-mod_authz_svn">mod_dav_svn.so</primary>
588 </indexterm>
589 </listitem>
590 </varlistentry>
[b279414]591
[11a05ad]592 </variablelist>
[b279414]593
[11a05ad]594 </sect2>
[b279414]595
[a91dd56]596</sect1>
Note: See TracBrowser for help on using the repository browser.