| > I got this file to download httrack-3.40-2.tar.gz,
> try to install Sun Solaris system.
> I has study the README file, don't know how to
> install.
The steps are the same as on Linux ; that is:
tar xvfz httrack.tar.gz
cd httrack-*
./configure
make
make install
Note that on Solaris, you may patch the proxytrack.c file:
Around line 254, in gethost() function:
#if HTS_INET6==0
/*
ipV4 resolver
*/
t_hostent* hp=gethostbyname(hostname);
if (hp!=NULL) {
if (hp->h_length) {
SOCaddr_copyaddr(*server, server_size, hp->h_addr_list[0], hp->h_length);
return 1;
}
}
#else
| |