[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Complete list of all subversion files installed

From: Alan Thompson <alanwork04_at_whitecaps.net>
Date: 2004-11-03 21:08:30 CET

Hi Mark - My post yesterday related to exactly what you are trying to
do. The "make clean" seems to delete everything necessary for a
subsequent install to work correctly. I have pasted a copy of the post
below.

Write back if this does not work for some reason.
Alan Thompson
--------------------------------------------------------------------
From: alan <ALAN.W.THOMPSON@saic.com>
Reply-To: alanwork04@whitecaps.net
To: svn-users <users@subversion.tigris.org>
Date: Tue, 02 Nov 2004 20:35:45 -0800
Subject: Apache2 + Subversion + SSL install on Debian - HOWTO

Hi - I just set up Apache-2.0.51 and Subversion-1.1.1 using SSL
(OpenSSL) on a Debian Linux system after some difficulty. I had
problems with apparent errors in the INSTALL file, which I finally got
sorted out with the help of some old (2003) messages in the mail
archives and a lot of trial and error (I have done about 6 non-ssl
Apache/Subversion installs before trying this install).

Since I didn't see a good HOWTO anywhere, I thought I'd contribute this
concise summary to the list. You may wish to type the following
commands into a short "go.csh" script in the top-level directory of each
source tree, and then execute the script (rather than typing each
command individually). This can be very helpful if you need to tweak
paths, flags, etc for multiple build attempts.

In particular, the usage and interaction of the --enable-ssl,
--with-ssl, and --with-libs flags was not well-documented in either the
INSTALL file or by "./configure --help". Note that the syntax of the
--with-ssl flag is different in the Apache and Subversion builds.

Here are the steps I used, in the order that I executed them:

OpenSSL (http://www.openssl.org):
---------------------------------------------------------------------------
./config
make
make test
make install
---------------------------------------------------------------------------

Apache2 (http://httpd.apache.org/):
---------------------------------------------------------------------------
./configure --enable-dav --enable-so --enable-deflate \
  --enable-ssl --with-ssl=/usr/local/ssl
make clean
make
make install
---------------------------------------------------------------------------

Subversion (http://subversion.tigris.org/):
---------------------------------------------------------------------------
./configure --with-zlib --enable-ssl --with-ssl \
--with-libs=/usr/local/ssl:/usr/local/ssl/lib:/usr/local/lib:/usr/lib:/lib
make clean
make
make install
---------------------------------------------------------------------------

After building from the three source trees, add the following lines to
the bottom of the Apache httpd.conf file as described in section III.C
of the Subversion INSTALL file (circa line 1056).

      <Location /svn/repos>
          DAV svn
          SVNPath /absolute/path/to/repository
      </Location>

Note that the subversion "make install" command apparently takes care of
putting the following line into httpd.conf:

     LoadModule dav_svn_module modules/mod_dav_svn.so

Also, note that Apache must be started by:

        /usr/local/apache2/bin/apachectl startssl

(rather than just "apachectl start") in order for https:// addresses to
be accepted.

I hope this helps.
Alan Thompson

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

On Wed, 2004-11-03 at 11:58, Faine, Mark wrote:
> Does anyone have a listing of every file installed when doing a make
> install. I'd like to remove everything and start all over in an effort to
> fix my install. I've been trying for about a month now to get http[s]
> working with subversion and perhaps a complete uninstall, clean-up and
> re-install everything will help fix the problem or at least help in some
> way.
>
> Thanks,
> -Mark
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Nov 3 21:10:46 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.