I can only advise you from Solaris side. you can issue `ldd amanda_binary_name` on solaris, and see which library it's linking. Then check and make sure all the library files exist in the location it specifies.
Mark ----- Original Message ----- From: "Mary Tan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 20, 2002 6:45 PM Subject: Re: Make problem on Solaris 2.8 > > Thank you all for the advice, I got through make successfully after setting > LD_LIBRARY_PATH. > > > However, after I've installed Amanda, there's a new problem. When I try to > run any amanda executables, I get the following error: > > $ amlabel DailySet1 DailySet1-001 > ld.so.1: amlabel: fatal: libreadline.so.4: open failed: No such file or > directory > Killed > > I've already installed ReadLine-4.2 and make sure it's in LD_LIBRARY_PATH. > I'm at a lost as to where else I should be looking. > > Any help is appreciated. > > > > > > > "Mark Lin" > <sv650@macysad To: "Mary Tan" <[EMAIL PROTECTED]> > v.com> cc: > Subject: Re: Make problem on Solaris 2.8 > 03/19/02 01:05 > PM > > > > > > > Get ReadLine-4.2 from www.sunfreeware.com or if you already installed it, > make sure its lib is in the path of LD_LIBRARY_PATH. > > Mark > > ----- Original Message ----- > From: "Mary Tan" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, March 19, 2002 3:05 PM > Subject: Make problem on Solaris 2.8 > > > > Hi all: > > > > I'm trying to run make for Amanda 2.4.2p2 on a Solaris 2.8 SPARC server > > with the following configure options: > > > > ./configure --with-user=amanda --with-group=amanda > > > > During the make process, the following error occurs. Here's the tail end > > of the error message: > > > > rm -f genversion.h genversion.h.new > > echo '#define CC "gcc"' > genversion.h.new > > echo '#define BUILT_DATE "'`date`'"' >> genversion.h.new > > echo '#define BUILT_MACH "'`uname -a || echo UNKNOWN HOST`'"' >> > > genversion.h.new > > mv genversion.h.new genversion.h > > gcc -DHAVE_CONFIG_H -I. -I. -I../config -I./../regex-src > > -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE > > -D_FILE_OFFSET_BITS=64 -g -O2 -c genversion.c > > gcc -DHAVE_CONFIG_H -I. -I. -I../config -I./../regex-src > > -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE > > -D_FILE_OFFSET_BITS=64 -g -O2 -c versuff.c > > /bin/sh ../libtool --mode=link gcc -D_LARGEFILE_SOURCE > > -D_FILE_OFFSET_BITS=64 -g -O2 -o genversion genversion.o versuff.o > > alloc.o debug.o error.o util.o file.o -lgen -lm -lreadline > > -ltermcap -lsocket -lnsl -lintl > > mkdir .libs > > gcc -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o genversion > > genversion.o versuff.o alloc.o debug.o error.o util.o file.o -lgen -lm > > -lreadline -ltermcap -lsocket -lnsl -lintl > > rm -f version.c > > ./genversion > version.c > > ld.so.1: ./genversion: fatal: libreadline.so.4: open failed: No such file > > or directory > > *** Error code 137 > > make: Fatal error: Command failed for target `version.c' > > Current working directory /home/amanda/amanda-2.4.2p2/common-src > > *** Error code 1 > > make: Fatal error: Command failed for target `all-recursive' > > > > > > Any guidance will be greatly appreciated. =) > > > > > > > > > >
