Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!usc!ucsd!ucbvax!xtel.co.uk!j.onions From: j.onions@xtel.co.uk (Julian Onions) Newsgroups: comp.protocols.iso.dev-environ Subject: Re: Implementation of ISODE 6.8 on SUN 4/20 Message-ID: <23654.672399666@xtel.co.uk> Date: 23 Apr 91 09:41:06 GMT References: <9104221156.AA00534@melvin.zdv.uni-tuebingen..de.> Sender: daemon@ucbvax.BERKELEY.EDU Distribution: inet Organization: The Internet Lines: 17 > That is OK, since my system generated libisode.so.68.385 as the shared librar y > and certainly not libisode.so.68 :-( !!!! No - the dynamic linking rules will ensure that a library of the form libisode.so.68.* will be loaded for anything requiring libisode.68. > So my question: what is wrong, where is that libisode.so.68 shared library??? Your problem is that your shared libisode is not in the standard system path. I think what you need to do is to change the definition of LIBISODE in CONFIG.make to have the path of you library directory too. So you have something like LIBISODE = -L$(TOPDIR) -L$(LIBDIR) -lisode This will allow it to find the shared object in your private lib directory. Julian.