Re: [PATCH] Add dn_skipname() from OpenBSD

2009-09-17 Thread Bernhard Reutner-Fischer
On Wed, Sep 16, 2009 at 10:06:36PM -0400, Mike Frysinger wrote: i think you're lumping standardized networking code in with non-standardized libresolv. i'm talking about libresolv/ here while you're making references to libc/inet/. indeed, my bad. Turned off stub libresolv per default now.

[PATCH] Add dn_skipname() from OpenBSD

2009-09-16 Thread Natanael Copa
dn_skipname() is needed by a few applications like yate, wine, kde, libspf2 and probably more. Fixes https://bugs.busybox.net/show_bug.cgi?id=297 Signed-off-by: Natanael Copa natanael.c...@gmail.com --- libresolv/resolv.c | 85 1 files

Re: [PATCH] Add dn_skipname() from OpenBSD

2009-09-16 Thread Bernhard Reutner-Fischer
On Wed, Sep 16, 2009 at 11:32:20AM +, Natanael Copa wrote: dn_skipname() is needed by a few applications like yate, wine, kde, libspf2 and probably more. This function is non-standard and as such must not be generally available. I'd prefer if you would put that impl in a separate file. PS:

Re: [PATCH] Add dn_skipname() from OpenBSD

2009-09-16 Thread Mike Frysinger
On Wednesday 16 September 2009 07:53:36 Bernhard Reutner-Fischer wrote: On Wed, Sep 16, 2009 at 11:32:20AM +, Natanael Copa wrote: dn_skipname() is needed by a few applications like yate, wine, kde, libspf2 and probably more. This function is non-standard and as such must not be

Re: [PATCH] Add dn_skipname() from OpenBSD

2009-09-16 Thread Bernhard Reutner-Fischer
On Wed, Sep 16, 2009 at 10:18:19AM -0400, Mike Frysinger wrote: On Wednesday 16 September 2009 07:53:36 Bernhard Reutner-Fischer wrote: libresolv is one giant pile of shit really (not specific to uClibc). it's something that clearly just grew up without real design thought behind it which

Re: [PATCH] Add dn_skipname() from OpenBSD

2009-09-16 Thread Mike Frysinger
On Wednesday 16 September 2009 13:05:26 Bernhard Reutner-Fischer wrote: On Wed, Sep 16, 2009 at 10:18:19AM -0400, Mike Frysinger wrote: On Wednesday 16 September 2009 07:53:36 Bernhard Reutner-Fischer wrote: libresolv is one giant pile of shit really (not specific to uClibc). it's something

[PATCH] Add dn_skipname() from OpenBSD

2009-09-13 Thread Natanael Copa
dn_skipname() is needed by a few applications like yate, wine, kde and probably more. --- libresolv/resolv.c | 85 1 files changed, 85 insertions(+), 0 deletions(-) diff --git a/libresolv/resolv.c b/libresolv/resolv.c index 38b10ff..c55046d

Re: [PATCH] Add dn_skipname() from OpenBSD

2009-09-13 Thread Michael Deutschmann
On Sun, 13 Sep 2009, Natanael Copa wrote: dn_skipname() is needed by a few applications like yate, wine, kde and probably more. And libspf2. I reported this missing function as bug #297. The initial response was this function is NIH, please submit patch to remove it from the headers. When I