RE: svn commit: r1902364 - /subversion/trunk/build.conf

2022-07-04 Thread Bert Huijben
> == > --- subversion/trunk/build.conf (original) > +++ subversion/trunk/build.conf Thu Jun 30 08:10:48 2022 > @@ -340,6 +340,7 @@ type = ra-module > path = subversion/libsvn_ra_serf > install = serf-lib > libs = libsvn_

RE: svn commit: r1902364 - /subversion/trunk/build.conf

2022-07-04 Thread Bert Huijben
Most likely this user just has a bunch of libraries in that environment variable, and this links the ra layers to quite a few dependencies it doesn't need, potentially loading things like BDB in cases where it Is absolutely not necessary. There are other better ways to add the depencies to spec

Re: svn commit: r1902364 - /subversion/trunk/build.conf

2022-07-04 Thread Daniel Sahlberg
Den mån 4 juli 2022 kl 16:07 skrev Bert Huijben : > > > == > > --- subversion/trunk/build.conf (original) > > +++ subversion/trunk/build.conf Thu Jun 30 08:10:48 2022 > > @@ -340,6 +340,7 @@ type = ra-module > > path = su

RE: svn commit: r1902364 - /subversion/trunk/build.conf

2022-07-04 Thread Bert Huijben
That line will add the ./configure time dependencies (or gen-make.py for Windows). The dependencies on our own libraries are added by the ‘libs =’ line right above. � If you don’t get these, then it is most likely because the files don’t exist/aren’t build at the right time, and in that case

Re: svn commit: r1902364 - /subversion/trunk/build.conf

2022-07-04 Thread Daniel Sahlberg
Den mån 4 juli 2022 kl 17:09 skrev Bert Huijben : > That line will add the ./configure time dependencies (or gen-make.py for > Windows). The dependencies on our own libraries are added by the ‘libs =’ > line right above. > The libs at issue (libsvn_delta and libsvn_subr) are already in libs. The