----- Original Message ----- 
From: "Bruce Dubbs" <bruce.du...@gmail.com>
To: "LFS Developers Mailinglist" <lfs-dev@linuxfromscratch.org>
Sent: Tuesday, November 23, 2010 5:36 AM
Subject: Re: IANA-Etc links broken (for now)


> DJ Lucas wrote:
> > On 11/22/2010 06:12 PM, William Immendorf wrote:
> >> Pretty recently, the download location for IANA-etc stopped working,
> >> and so, that means that IANA-etc is not avaliable. At least for now, I
> >> don't know if it will get better at all.
> >>
> >> This means we have to use Anduin for getting this package. This
> >> probally needs to be listed in the errata.
> >>
> >
> > The domain expired. Anybody still keep in touch?
>
>
> Looking at the tarball, the last change was March 2008.  The only thing
> this package does is create the /etc/protocols and /etc/services files.
>
> Are these files actually used by anything any more?
>
> Do we still need this package?
>
>    -- Bruce
> -- 
Yes or getservbyname will not work and cause various failures.
I have a micro test that show a variable speed depending if package is
stripped or not (you would need to use make STRIP=yes that LFS actually is
not using)

#include <netdb.h>

main(int argc, char *argv[])
{
 struct servent *sv;
 int i;

 for (i=0; i< 10000; i++)
  sv = getservbyname(argv[1], NULL);
}

Gilles

-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-dev
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to