make problems with mp3::info perl module install

2001-04-27 Thread Jason Pepas
i am trying to install a perl module. i read on http://www.rcbowen.com/imho/perl/modules.html that you simply run: perl makefile.pl make make test make install however, make returns an error in all three of its steps which says?: your make file has been rebuilt please rerun the make command

Re: Re: make problems

2001-02-02 Thread romain lerallut
try rather a symlink ln -s /lib/libdb1.so /lib/libdb.so it will be easier than trying to modify an autoconf-generated makefile. Cheer up, you'll get it done :-) Romain Begin Original Message From: jdls [EMAIL PROTECTED] I had a similar problem with compiling mod_dav from

Re: make problems

2001-02-02 Thread jdls
: make problems Try installing libdb2-dev (though I don't know if that's in potato). Usually when you are having trouble compiling something because of a missing library, you can be sure that the package that you need to install begins with lib and ends with -dev. I don't know how a new user

make problems

2001-02-01 Thread jdls
Hi, When trying to compile gnome_dialup from source I get this error: trunks:/home/jdls/gnome_dialup# make usr/bin/ld: cannot find -ldb collect2: ld returned 1 exit status make: *** [gnome-dialup] Error 1 searching the contents of the latest release or packages directories turns up nothing

Re: make problems

2001-02-01 Thread Romain Lerallut
-ldb mean link to library libdb: /lib/libdb.so.2 it's in package libc6, so it's *strange* that you can't find it. for such things you can search pacakges.debian.org. On Thu, 1 Feb 2001 [EMAIL PROTECTED] wrote: Hi, When trying to compile gnome_dialup from source I get this error:

Re: make problems

2001-02-01 Thread Mike Moran
[EMAIL PROTECTED] wrote: Hi, When trying to compile gnome_dialup from source I get this error: trunks:/home/jdls/gnome_dialup# make usr/bin/ld: cannot find -ldb collect2: ld returned 1 exit status make: *** [gnome-dialup] Error 1 searching the contents of the latest release or

Re: make problems

2001-02-01 Thread jdls
I had a similar problem with compiling mod_dav from source (this is using debian testing). For some reason, ld couldn't find libdb, even though it was available in /lib/ (or /usr/lib, I can't remember) and ldconfig was finding it ok. My solution was to replace -ldb with -ldb1 in the

Re: make problems

2001-02-01 Thread Chris Gray
On Thu, 01 Feb 2001, [EMAIL PROTECTED] wrote: I had a similar problem with compiling mod_dav from source (this is using debian testing). For some reason, ld couldn't find libdb, even though it was available in /lib/ (or /usr/lib, I can't remember) and ldconfig was finding it ok. My solution

Re: make problems

2000-06-06 Thread Joseph de los Santos
hi, In answer to your questions no, I did not run ./configure in my own directory I just downloaded a tar.gz file into the new a directory in the new partition (since I no longer have any diskspace in my root partion containing my home directories) symlinked to my home directory. e.g. ln -s

make problems

2000-06-05 Thread Joseph de los Santos
Hi, I have another partition and I put files there. usually just for backups. (bec I am running out of disk space in my root partition). now I have ran out of disk space in my / and so now I am forced to run make from that new partition. however, when I try to run make from that new partition

Re: make problems

2000-06-05 Thread Bolan Meek
Joseph de los Santos wrote: however, when I try to run make from that new partition I get this error: Let me guess: did you run ./configure in your home directory, then mv the files to your working space on your new partition? make -C src/ptlib/unix both ; make -C tools/asnparser both ;