You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Patrick Farley <pa...@dyadsodality.com> on 2002/04/08 19:27:51 UTC

Bootstrap Problems

Whew...this has been a nightmare.
 
I have subversion r1587
I have db-4.0.14 stuffed in subversion-r1587/db
I'm using the apr that came with the tar.
I run:
./configure --enable-maintainer-mode --disable-shared
and then:
make
 
It fails with the can't find '` library.  I fix that problem I think.
The make finishes with no problems.
 
I go to the cmdline directory and run the following.
 
 ./svn co  <http://svn.collab.net/repos/svn/trunk>
http://svn.collab.net/repos/svn/trunk -d subversion
 
subversion/libsvn_ra_dav/util.c:314
apr_error: #20014, src_err 0 : <Error string not specified yet>
  OPTIONS request failed on /repos/svn/trunk
 
subversion/libsvn_ra_dav/util.c:288
apr_error: #20014, src_err 0 : <Error string not specified yet>
  The OPTIONS status was 400, but expected 200.

Suggestions?

Re: Bootstrap Problems

Posted by Kevin Pilch-Bisson <ke...@pilch-bisson.net>.
On Mon, Apr 08, 2002 at 02:27:51PM -0500, Patrick Farley wrote:
> Whew...this has been a nightmare.
>  
> I have subversion r1587
> I have db-4.0.14 stuffed in subversion-r1587/db
> I'm using the apr that came with the tar.
> I run:
> ./configure --enable-maintainer-mode --disable-shared
> and then:
> make
>  
> It fails with the can't find '` library.  I fix that problem I think.  The make
> finishes with no problems.
>  
> I go to the cmdline directory and run the following.
>  
>  ./svn co http://svn.collab.net/repos/svn/trunk -d subversion
>  
> subversion/libsvn_ra_dav/util.c:314
> apr_error: #20014, src_err 0 : <Error string not specified yet>
>   OPTIONS request failed on /repos/svn/trunk
>  
> subversion/libsvn_ra_dav/util.c:288
> apr_error: #20014, src_err 0 : <Error string not specified yet>
>   The OPTIONS status was 400, but expected 200.
> Suggestions?

This looks like you have an http proxy which doesn't support all of the WebDAV
methods needed by svn.  You can do one of two things:

1) Configure the proxy to allow those methods (see the faq page on the webpage
for the specific list, but I think it is
OPTIONS,REPORT,CHECKOUT,MKACTIVITY,PROPFIND,MERGE)

2) Try checking svn out from port 81 instead of default 80, as this will
bypass most proxies, i.e.:

svn checkout http://svn.collab.net:81/repos/svn/trunk -d subversion

-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Kevin Pilch-Bisson                    http://www.pilch-bisson.net
     "Historically speaking, the presences of wheels in Unix
     has never precluded their reinvention." - Larry Wall
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~