On Mon, 2003-02-17 at 04:12, Gansser, Martin wrote: > > -----Original Message----- > > From: David Hampton [mailto:[EMAIL PROTECTED] > > Sent: Thursday, February 13, 2003 6:51 PM > > To: Gansser, Martin > > Cc: [EMAIL PROTECTED] > > Subject: Re: libtool: link: only absolute run-paths are allowed > > > > > > On Thu, 2003-02-13 at 06:39, Gansser, Martin wrote: > > > Hi, > > > > > > I tried to compile gnucash-1.8.1 on hpux 11.00, but I get > > the following error message: > > > > > > ... > > > libtool: link: only absolute run-paths are allowed > > > > This vaguely rings a bell as an hpux issue that libtool couldn't work > > around. I don't think its a gnucash issue at all. I'm not > > sure what to > > suggest other than skipping the 'make' step and going > > straight to 'make > > install'. IIRC, in the former command libtool tries to set up the > > application so it can be run from the source directory, thus relative > > run-paths. In the latter, libtool links the libs for their ultimate > > destination in the file system using absolute run paths. > > Hi, > > I solved this problem by removing the test directory from SUBDIRS in the > src/gnc-module/Makefile.in, > and the compilation went well, until the start problem. > > prounix_root:/opt/gnucash/bin # ./gnucash > /usr/lib/dld.sl: Unresolved symbol: __moddi3 (code) from > /opt/gnucash/lib/gnucash/libgncmod-engine.sl.0 > IOT Abfrage (Hauptspeicherauszug ausgegeben) > > any suggestions >
That's a symbol in the glibc libc-2*.so library: [EMAIL PROTECTED] engine $ nm /lib/libc-2.2.5.so |grep moddi3 00017690 T __moddi3 00017720 T __umoddi3 Did you compile gnucash or one of it's dependencies against glibc, and then try to run it against hpux libc? There's something about moddi3 in the archives (not much), but it was pretty much "that's a glibc function". Someone else may have something more informative to offer... -- Matthew Vanecek perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);' ******************************************************************************** For 93 million miles, there is nothing between the sun and my shadow except me. I'm always getting in the way of something... _______________________________________________ gnucash-devel mailing list [EMAIL PROTECTED] http://www.gnucash.org/cgi-bin/mailman/listinfo/gnucash-devel
