|
From: Timothee B. <tt...@id...> - 2002-07-31 11:43:32
|
Yes! New and final patch below. It's configuring and building fine now.. the src/Makefile should be removed, it is generated from Makefile.in now .. svn rm src/Makefile .. TTimo Index: ./configure.in =================================================================== --- ./configure.in +++ ./configure.in Wed Jul 31 13:26:57 2002 @@ -55,4 +55,7 @@ CXXFLAGS="$CXXFLAGS `$WXCONFIG --cxxflags`" WX_LIBS="`$WXCONFIG --libs`" +AC_SUBST(APR_LIBS) +AC_SUBST(WX_LIBS) + AC_OUTPUT(src/Makefile) On Wed, 31 Jul 2002 07:11:34 -0400 Garrett Rooney <ro...@el...> wrote: > 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 > > > ------------------------------------------------------- > This sf.net email is sponsored by: Dice - The leading online job board > for high-tech professionals. Search and apply for tech jobs today! > http://seeker.dice.com/seeker.epl?rel_code=31 > _______________________________________________ > Rapidsvn-general mailing list > Rap...@li... > https://lists.sourceforge.net/lists/listinfo/rapidsvn-general > |