On Nov 9, 2009, at 2:51 PM, Gavin Baumanis wrote:
> There are no errors when I run /.configure and it seems to find all
> the mandatory dependancies and a few non-mandatories, too.
> There are no warnngs / errors.
>
> There are a few warning about functions being deprecated, Eg.;
> subversion/libsvn_ra/compat.c: In function ‘prev_log_path’:
> subversion/libsvn_ra/compat.c:163: warning: ‘svn_path_join’ is
> deprecated (declared at ./subversion/include/svn_path.h:108)
>
> and this block that I have no idea about;
>
> ranlib: file: .libs/libsvn_subr-1.a(config_win.o) has no symbols
> ranlib: file: .libs/libsvn_subr-1.a(debug.o) has no symbols
> ranlib: file: .libs/libsvn_subr-1.a(win32_crashrpt.o) has no symbols
> ranlib: file: .libs/libsvn_subr-1.a(win32_crypto.o) has no symbols
> ranlib: file: .libs/libsvn_subr-1.a(win32_xlate.o) has no symbols
> ranlib: file: .libs/libsvn_subr-1.a(config_win.o) has no symbols
> ranlib: file: .libs/libsvn_subr-1.a(debug.o) has no symbols
> ranlib: file: .libs/libsvn_subr-1.a(win32_crashrpt.o) has no symbols
> ranlib: file: .libs/libsvn_subr-1.a(win32_crypto.o) has no symbols
> ranlib: file: .libs/libsvn_subr-1.a(win32_xlate.o) has no symbols
You aren't building on windows, so all these files are essentially
#ifdef'd out. After the preprocessor run, they look like empty files
to the compiler. The linker complains about the fact that you're
linking files with essentially no code in them. I get the same
warnings.
-Hyrum
> Otherwise make "seems" to run fine and dandy.
> And I am not too sure why the difference... but it took only a few
> minutes this time around for make and make install to complete.
>
> I "assume" that it is because "other stuff" is now compile that
> previously wan't? But I thought that was all taken care of when they
> libraries were installed via macports...
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2415905
Received on 2009-11-09 21:54:30 CET