On Thursday 01 February 2007 16:32 [EMAIL PROTECTED] wrote: > "configure" now works (no more warning / path newline) but "make" > returns the following error: > > $ make ... > cc -L/usr/local/lib -L/openpkg/lib -lsvn_subr-1 -lsvn_ra-1 > -lsvn_client-1 -lpcre -o fsvs ac_list.o actions.o add_unvers.o build.o > checksum.o commit.o diff.o direnum.o est_ops.o export.o fsvs.o helper.o > ignore.o info.o init.o pwcache.o racallback.o remote.o revert.o status.o > sync.o update.o url.o waa.o warnings.o > /usr/local/subversion-1.4.2/lib/libsvn_ra_dav-1.so.0: undefined > reference to `gss_import_name' [Similar errors deleted]
That means that there's libsvn_ra_dav-1.so.0, which refers to `gss_import_name' - which is not found. That seems to belong to GSSAPI (http://docs.hp.com/en/B9106-90010/gss_import_name.3.html) I assume that subversion could be compiled - so there's just some library missing from LDFLAGS. Please try to find the correct library - eg. with grep -l gss_import_name /usr/lib/lib* and extend the LDFLAGS in Makefile.in - see the other libraries referenced there. HTH! Regards, Phil -- Versioning your /etc, /home or even your whole installation? Try fsvs (fsvs.tigris.org)! --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
