Re: [sword-devel] linker problems with 1.6.0? - help needed

2009-05-25 Thread Martin Gruner
Hi Troy, it was indeed - as expected - a problem with my configuration. I used usrinst.sh to compile and install sword, changed --prefix to /usr/local, but left --libdir at /usr/lib64, so the old library was not overwritten but still used. Works nicely now! Thanks! mg Am Sonntag, 24. Mai 200

Re: [sword-devel] linker problems with 1.6.0? - help needed

2009-05-24 Thread Martin Gruner
Hi Troy, just tried your suggestion. g++ ../cmake/sword_linker_check.cpp `pkg-config --cflags sword` `pkg-config -- libs sword` /tmp/Wh8w.o: In function `main': /home/dev/bibletime/build/../cmake/sword_linker_check.cpp:23: undefined reference to `sword::InstallMgr::InstallMgr(char const*, s

Re: [sword-devel] linker problems with 1.6.0? - help needed

2009-05-24 Thread Greg Hellings
On Sun, May 24, 2009 at 8:38 AM, Troy A. Griffitts wrote: > Dear Martin, > > I have just tried out your test program.  Here is my experience. > > I have the file yo.cpp: > > #include > #include > #include > int main(int argc, char* argv[]) > { >        sword::SWMgr mgr; >        sword::InstallM

Re: [sword-devel] linker problems with 1.6.0? - help needed

2009-05-24 Thread Dmitrijs Ledkovs
2009/5/24 Martin Gruner : > Hi all, > > we use the following stupid program to check that linking BibleTime against > Sword is going to work: > >  sword_linker_check.cpp:(.text+0xd7): undefined reference to >  `sword::InstallMgr::InstallMgr(char const*, sword::StatusReporter*, >  sword::SWBuf, swor

Re: [sword-devel] linker problems with 1.6.0? - help needed

2009-05-24 Thread Troy A. Griffitts
Dear Martin, I have just tried out your test program. Here is my experience. I have the file yo.cpp: #include #include #include int main(int argc, char* argv[]) { sword::SWMgr mgr; sword::InstallMgr imgr; sword::FTPTransport trans("example.com"); return 0; }

[sword-devel] linker problems with 1.6.0? - help needed

2009-05-24 Thread Martin Gruner
Hi all, we use the following stupid program to check that linking BibleTime against Sword is going to work: #include #include #include #include int main(int argc, char* argv[]) { sword::SWMgr mgr; sword::InstallMgr imgr; sword::FTPTransport trans("example.com");