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

Re: make install fails with 0.22

From: Philip Martin <philip_at_codematters.co.uk>
Date: 2003-05-09 00:59:19 CEST

Dominik Westner <lists@logicunited.com> writes:

> I am just trying to update from 0.21 to 0.22 but I am having problems
> during make install. The changes say that ra_dav is now optional. I am
> not quite sure if this is the reason for the failure.

You are correct, this problem affects HEAD as well 0.22. The problem
is this bit in configure.in

if test "$svn_lib_neon" = "yes"; then
  BUILD_RULES="$BUILD_RULES dav-lib"
  INSTALL_STATIC_RULES="$INSTALL_STATIC_RULES install-dav-lib"
  INSTALL_RULES="$INSTALL_RULES install-dav-lib"
fi

as that sets up to install libsvn_ra_dav *after* installing libsvn_ra.
It won't work since libsvn_ra depends on libsvn_ra_dav.

The final Makefile needs to look something like

local-install: install-base-lib install-fs-lib install-dav-lib install-lib install-include install-static install-mods-shared install-swig-py-lib

with install-dav-lib *before* install-lib.

Installing over a previous installation will work if libsvn_ra_dav is
already present, which probably explains how the mistake was made.

-- 
Philip Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri May 9 01:00:10 2003

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

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