|
From: Garrett R. <ro...@el...> - 2002-07-31 11:11:39
|
On Wed, Jul 31, 2002 at 10:50:28AM +0200, Timothee Besset wrote: > Not working yet. For the compilation itself, the svn include has to come > in first (otherwise the preprocessor gets confused for some reason I > can't explain). Attaching a patch. > > Then .. it doesn't link: > > c++ -o rapidsvn -lsvn_client-1 -lsvn_wc-1 -lsvn_ra-1 -lsvn_delta-1 -lsvn_subr-1 @APR_LIBS@ @WX_LIBS@ action_thread.o add_action.o auth_baton.o checkout_action.o checkout_dlg.o commit_action.o commit_dlg.o copy_action.o copy_dlg.o delete_action.o delete_dlg.o exceptions.o filelist_ctrl.o folder_browser.o import_action.o import_dlg.o include.o merge_action.o merge_dlg.o mkdir_action.o mkdir_dlg.o notify.o report_dlg.o resolve_action.o revert_action.o svn_file_info.o svn_file_log.o svn_file_status.o trace_commit.o trace_update.o tracer.o update_action.o update_dlg.o utils.o rapidsvn.o rapidsvn_app.o > c++: @APR_LIBS@: No such file or directory > c++: @WX_LIBS@: No such file or directory > make: *** [rapidsvn] Error 1 > > I don't know enough about auto* to settle this though. add the following lines to the configure.in file: AC_SUBST(APR_LIBS) AC_SUBST(WX_LIBS) somewhere near the bottom. this will make it substitute in the values it calculates for the apr and wx libs. then rerun autoconf and configure and you should be all set. -garrett -- garrett rooney Remember, any design flaw you're ro...@el... sufficiently snide about becomes http://electricjellyfish.net/ a feature. -- Dan Sugalski |