Hmmm. I thought we fixed this in revision 755. Can you take a look
at that change, and see if it is related to this problem?
Thanks,
-Karl
Joseph Dane <jdane@studio3511.com> writes:
> you're not doing anything wrong. I just ran into the same thing.
>
> the problem is that the svn build scripts expect a shared DB library
> to be built, but only the static version gets built. this despite
> passing '--disable-shared' to the subversion config.
>
> the solution, for me, was to let the build fail, then go into the DB
> directory and manually build the shared version of the library, and
> then restart the subversion build. e.g.
>
> subversion-r727 > make
>
> ... eventually fails
>
> subversion-r727 > cd db/dist
> dist > make libdb-4.0.la
>
> ... makes the shared library
>
> dist > cd ../..
> subversion-r727 > make
>
> ... subversion builds successfully.
>
> I haven't done too much poking at this point, but I think the
> top-level subversion Makefile is wrong at this point:
>
> (line 153)
> # recursive targets to handle external projects (e.g. APR, Neon)
> external-all external-clean external-distclean external-install:
> @target=`echo $@ | sed s/external-//`; \
> list='$(EXTERNAL_PROJECT_DIRS)'; \
> for i in $$list; do \
> echo "------ making $$target in $$i"; \
> (cd $$i && $(MAKE) $$target) || exit 1; \
> echo "------ completed $$target in $$i"; \
> done;
>
> this makes the wrong target in the DB directory.
>
> --
>
> joe
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:55 2006