You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by "Martin J. Evans" <ma...@easysoft.com> on 2004/05/18 08:10:42 UTC

RE: [subversion] Re: Possible bug in svnversion/install

Joe,

Thanks for the suggestion. I've added those lines and rebuilt but svnversion
still does this as does svn co:

bash-2.03$ svn co http://source.subversion.easysoft.local/bootstrap/make/trunk
xxx
svn: Unrecognized URL scheme
'����������������������������������������������������������������http://source.s
ubversion.easysoft.local/bootstrap/make/trunk'

Any other ideas where I might start looking?

Martin
--
Martin J. Evans
Easysoft Ltd, UK
Development

On 17-May-2004 Joe Orton wrote:
> On Mon, May 17, 2004 at 02:30:17PM +0100, Martin J. Evans wrote:
>> /home/sources/subversion-1.0.2/ac-helpers/install-sh -c -m 644
>> ../subversion-1.0.2/subversion/svnversion/svnversion.1
>> /usr/local/man/man1/svnversion.1
>>         subversion/svnversion/svnversion ../subversion-1.0.2
>>         /repos/svn/trunk >
>> /usr/local/include/subversion-1/svn-revision.txt
>> svn:
>> '????????????????????????????????????????????????????????????????../subversio
>> n-1
>> .0.2' does not exist
>> make: 1254-004 The error code from the last command is 1.
> 
> Try this patch for apr-util:
> 
> Index: xlate/xlate.c
> ===================================================================
> RCS file: /home/cvs/apr-util/xlate/xlate.c,v
> retrieving revision 1.19
> diff -u -r1.19 xlate.c
> --- xlate/xlate.c     13 Feb 2004 09:55:27 -0000      1.19
> +++ xlate/xlate.c     19 Mar 2004 01:06:48 -0000
> @@ -132,6 +132,11 @@
>          convset->ich = (iconv_t)-1;
>  
>          /* TODO: add the table to the cache */
> +    } else {
> +        /* reopen the iconv cd to get back to initial conversion
> +         * state */
> +        iconv_close(convset->ich);
> +        convset->ich = iconv_open(convset->topage, convset->frompage);
>      }
>  }
>  #elif APU_HAVE_APR_ICONV

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: [subversion] Re: Possible bug in svnversion/install

Posted by "Martin J. Evans" <ma...@easysoft.com>.
On 18-May-2004 Joe Orton wrote:
> On Tue, May 18, 2004 at 09:10:42AM +0100, Martin J. Evans wrote:
>> Joe,
>> 
>> Thanks for the suggestion. I've added those lines and rebuilt but svnversion
>> still does this as does svn co:

>> bash-2.03$ svn co
>> http://source.subversion.easysoft.local/bootstrap/make/trunk
>> xxx
>> svn: Unrecognized URL scheme
>> '????????????????????????????????????????????????????????????????http://sourc
>> e.s
>> ubversion.easysoft.local/bootstrap/make/trunk'
>> 
>> Any other ideas where I might start looking?
> 
> That's a symptom of the same problem; did you do a "make clean" of the
> entire tree (not just apr-util) after applying the patch?

I thought so. I was not building subversion in the source tree but in a
separate directory (usually do this) I thought I deleted. Anyway, I started
again from scratch but with the patch you supplied and got it as far as a seg
fault in all svn commands. I then changed neon/src/Makefile from:

LIBS=

to

LIBS = ../../apr-util/xml/expat/lib/libexpat.la

as per http://www.contactor.se/~dast/svnusers/archive-2004-03/1461.shtml,
did a make clean in top dir and make again. All is now well.

Thanks for your help.

Martin
--
Martin J. Evans
Easysoft Ltd, UK
Development


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: [subversion] Re: Possible bug in svnversion/install

Posted by Joe Orton <jo...@manyfish.co.uk>.
On Tue, May 18, 2004 at 09:10:42AM +0100, Martin J. Evans wrote:
> Joe,
> 
> Thanks for the suggestion. I've added those lines and rebuilt but svnversion
> still does this as does svn co:
> 
> bash-2.03$ svn co http://source.subversion.easysoft.local/bootstrap/make/trunk
> xxx
> svn: Unrecognized URL scheme
> '????????????????????????????????????????????????????????????????http://source.s
> ubversion.easysoft.local/bootstrap/make/trunk'
> 
> Any other ideas where I might start looking?

That's a symptom of the same problem; did you do a "make clean" of the
entire tree (not just apr-util) after applying the patch?

joe

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org