You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by hiten pandya <hp...@lycos.co.uk> on 2001/10/19 18:29:10 UTC

failure of linking

hi all,
i tried to install apache CVS version.. again... but 
because of my scre**d luck...
when i run make....
i am getting an error saying:
ln: libapr.la: Operation not Supported..

i know its got nothing to do with the make file.. but why 
does ln reject it... i tried linking it manually as well... 
both.. the so.. and the la version.. but still the same 
error... only it replaces libapr.la with libapr.so if u do 
shared configuration.

i would very much appreciate some help,
thanks,



regards,
hiten pandya
<hp...@lycos.co.uk>

            

______________________________________________________
Free E-mail - Lycos UK - http://www.lycos.co.uk
Get your domain for £9.90 - http://lycos.uk.domainnames.com/default.asp?caller=lycos_ef
Play now to win £1 Million - http://www.thedailydraw.com/mainframe.cfm?source=lycos



Re: failure of linking

Posted by Aaron Bannert <aa...@clove.org>.
On Fri, Oct 19, 2001 at 09:29:28AM -0700, hiten pandya wrote:
> hi all,
> i tried to install apache CVS version.. again... but 
> because of my scre**d luck...
> when i run make....
> i am getting an error saying:
> ln: libapr.la: Operation not Supported..
> 
> i know its got nothing to do with the make file.. but why 
> does ln reject it... i tried linking it manually as well... 
> both.. the so.. and the la version.. but still the same 
> error... only it replaces libapr.la with libapr.so if u do 
> shared configuration.

"ln" is for hard and soft links (symbolic links) on the filesystem,
you may be confusing it with "ld" which is for linking libraries and
executables from object code.

- check permissions in the directory you specified in ./configure --prefix=
- run "make clean"
- rerun "./buildconf" after you do a cvs update

-aaron