Re: os-unixware/7651: compilation of srclib/apr/network_io/unix/sa_common.c fails

2001-04-30 Thread William A. Rowe, Jr.
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, April 30, 2001 7:33 AM Subject: Re: os-unixware/7651: compilation of srclib/apr/network_io/unix/sa_common.c fails > Synopsis:

Re: os-unixware/7651: compilation of srclib/apr/network_io/unix/sa_common.c fails

2001-04-30 Thread Jeff Trawick
Help me out here... I don't follow your comments. "William A. Rowe, Jr." <[EMAIL PROTECTED]> writes: > Jeff, > > this is the wrong solution (and it was anticipated). Since win32 and OS2 > don't > need the unix MPM's they were never fixed, apparently (from this > report) they must be. what i

Re: os-unixware/7651: compilation of srclib/apr/network_io/unix/sa_common.c fails

2001-04-30 Thread rbb
I personally like Jeff's patch, with one minor adjustment. I would do something like the following #ifndef HAVE_SET_H_ERRNO #define set_h_errno(val) h_errno = val #endif And then always use set_h_errno. However, that is just my personal preference for keeping ifdefs out of the code. Other t

Re: os-unixware/7651: compilation of srclib/apr/network_io/unix/sa_common.c fails

2001-04-30 Thread rbb
On Mon, 30 Apr 2001 [EMAIL PROTECTED] wrote: > > I personally like Jeff's patch, with one minor adjustment. > > I would do something like the following > > #ifndef HAVE_SET_H_ERRNO > #define set_h_errno(val) h_errno = val > #endif > > And then always use set_h_errno. However, that is just my pe

Re: os-unixware/7651: compilation of srclib/apr/network_io/unix/sa_common.c fails

2001-04-30 Thread William A. Rowe, Jr.
From: "Jeff Trawick" <[EMAIL PROTECTED]> Sent: Monday, April 30, 2001 9:46 AM > Help me out here... I don't follow your comments. > > "William A. Rowe, Jr." <[EMAIL PROTECTED]> writes: > > > Jeff, > > > > this is the wrong solution (and it was anticipated). Since win32 and OS2 > > don't >

Re: os-unixware/7651: compilation of srclib/apr/network_io/unix/sa_common.c fails

2001-04-30 Thread David Reid
> Note that this path is only used on systems with getnameinfo() and IPv6 > support. The h_errno kludge helps out with some getnameinfo() issues > on common versions of glibc. Before we truly clean up this code we > need to understand what is needed to operate with getnameinfo() across > a variet

Re: os-unixware/7651: compilation of srclib/apr/network_io/unix/sa_common.c fails

2001-04-30 Thread Jeff Trawick
[EMAIL PROTECTED] writes: > I personally like Jeff's patch, with one minor adjustment. > > I would do something like the following > > #ifndef HAVE_SET_H_ERRNO > #define set_h_errno(val) h_errno = val > #endif > > And then always use set_h_errno. However, that is just my personal > preferenc