1846447 Members
2640 Online
110256 Solutions
New Discussion

Re: Problem with wget

 
Smucker
Regular Advisor

Problem with wget

I am installing wget on a few of my servers. I downloaded the .depot and it's dependencies from hpux.cs.utah.edu.

It installed and worked fine on all but one machine I get this error
root@pbj2:/tmp/wget>wget www.yahoo.com
/usr/lib/dld.sl: Unresolved symbol: libintl_bindtextdomain (code) from wget
Abort(coredump)

Any ideas
4 REPLIES 4
Steven E. Protter
Exalted Contributor

Re: Problem with wget

Shalom,

I got this periodically from different versions of wget.

Is a problem on the system that compiled the depot.

My fix is to use another version or to compile the source code.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Carlos Roberto Schimidt
Regular Advisor

Re: Problem with wget

Do you have libintl_bindtextdomain in /usr/lib or another path included in LD_LIBRARY_PATH ?

You can try download from this site:

http://hpux.connect.org.uk/hppd/hpux/Gnu/wget-1.10.2/
Smucker
Regular Advisor

Re: Problem with wget

I figured it out 5 min after I posted the question. After doing a ldd on wget I noticed that one server (the one that did not work) was pulling in

/opt/gnome/lib/libiconv.sl.2 => /opt/gnome/lib/libiconv.sl.2

instead of

/usr/local/lib/libiconv.sl => /usr/local/lib/libiconv.sl

I found the SHLIB_PATH was being set on one sever to /opt/gnome/lib/

After correcting this all worked fine
Smucker
Regular Advisor

Re: Problem with wget

thanks to all