A problem with Perl 5.10.0 installation

A problem with Perl 5.10.0 installation

am 19.12.2007 16:59:35 von rwxrxrx

when i run make tool, i got such problem

perl.c:(.text+0x47f2): undefined reference to `SOCKSinit'

AND i could not search SOCKSinit definition in /usr/include/*
how could i fix this problem

Re: A problem with Perl 5.10.0 installation

am 19.12.2007 17:03:02 von rwxrxrx

Scott.zhou дµÀ:
> when i run make tool, i got such problem
>
> perl.c:(.text+0x47f2): undefined reference to `SOCKSinit'
>
> AND i could not search SOCKSinit definition in /usr/include/*
> how could i fix this problem
ps: I run Fedora 8 on my PC

Re: A problem with Perl 5.10.0 installation

am 19.12.2007 17:15:39 von Joost Diepenmaat

"Scott.zhou" writes:

> when i run make tool, i got such problem
>
> perl.c:(.text+0x47f2): undefined reference to `SOCKSinit'
>
> AND i could not search SOCKSinit definition in /usr/include/*
> how could i fix this problem

Did you enable "SOCKS support" during the sh Configure stage?
It's disabled by default and I think you'd know if you need it.

I just did a

$ sh Configure
( chose defaults for everything except that I enabled threads )
$ make
.... (lots of output)
Everything is up to date. Type 'make test' to run test suite.

Or did you mean something else by "run make tool"?

See also the INSTALL file.

HTH,
Joost.

Re: A problem with Perl 5.10.0 installation

am 19.12.2007 17:17:24 von Joost Diepenmaat

Joost Diepenmaat writes:
> I just did a
>
> $ sh Configure
> ( chose defaults for everything except that I enabled threads )
> $ make
> .... (lots of output)
> Everything is up to date. Type 'make test' to run test suite.

That's on debian testing/unstable, by the way.

Joost.

Re: A problem with Perl 5.10.0 installation

am 19.12.2007 18:38:50 von Abigail

_
Scott.zhou (rwxrxrx@gmail.com) wrote on VCCXXIII September MCMXCIII in
:
'' when i run make tool, i got such problem
''
'' perl.c:(.text+0x47f2): undefined reference to `SOCKSinit'
''
'' AND i could not search SOCKSinit definition in /usr/include/*
'' how could i fix this problem


It might help if you post the arguments to Configure, or, if you ran
configure interactively, the answers to the questions where you didn't
pick a default.



Abigail
--
echo "==== ======= ==== ======"|perl -pes/=/J/|perl -pes/==/us/|perl -pes/=/t/\
|perl -pes/=/A/|perl -pes/=/n/|perl -pes/=/o/|perl -pes/==/th/|perl -pes/=/e/\
|perl -pes/=/r/|perl -pes/=/P/|perl -pes/=/e/|perl -pes/==/rl/|perl -pes/=/H/\
|perl -pes/=/a/|perl -pes/=/c/|perl -pes/=/k/|perl -pes/==/er/|perl -pes/=/./;

Re: A problem with Perl 5.10.0 installation

am 20.12.2007 04:23:14 von rwxrxrx

Joost Diepenmaat 写道:
> "Scott.zhou" writes:
>
>> when i run make tool, i got such problem
>>
>> perl.c:(.text+0x47f2): undefined reference to `SOCKSinit'
>>
>> AND i could not search SOCKSinit definition in /usr/include/*
>> how could i fix this problem
>
> Did you enable "SOCKS support" during the sh Configure stage?
> It's disabled by default and I think you'd know if you need it.
>
> I just did a
>
> $ sh Configure
> ( chose defaults for everything except that I enabled threads )
> $ make
> .... (lots of output)
> Everything is up to date. Type 'make test' to run test suite.
>
> Or did you mean something else by "run make tool"?
>
> See also the INSTALL file.
>
> HTH,
> Joost.
Done!
When I firstly chose interactively installation, I said "yes" to enable
"SOCKS support".
Thanks very much to all friends.