You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "Victor J. Orlikowski" <v....@gte.net> on 2000/07/25 19:48:01 UTC

initgroups...

In 1.3.x we handled platforms that defined initgroups but did not declare
it in a header file by declaring it for them in ap_config.h.
However, initgroups is not handled in any way on 2.0.
Suggestions on a place wherein to declare it?

Victor
-- 
Victor J. Orlikowski            v.j.orlikowski@gte.net
                                vjo@raleigh.ibm.com
                                vjo@us.ibm.com


Re: initgroups...

Posted by rb...@covalent.net.
The easiest place to put this is ap_config.h.  Just add:

#ifndef HAVE_INITGROUPS
initgroups definition
#endif to the bottom of that file.

Ryan

On Tue, 25 Jul 2000, Victor J. Orlikowski wrote:

> In 1.3.x we handled platforms that defined initgroups but did not declare
> it in a header file by declaring it for them in ap_config.h.
> However, initgroups is not handled in any way on 2.0.
> Suggestions on a place wherein to declare it?
> 
> Victor
> -- 
> Victor J. Orlikowski            v.j.orlikowski@gte.net
>                                 vjo@raleigh.ibm.com
>                                 vjo@us.ibm.com
> 


_______________________________________________________________________________
Ryan Bloom                        	rbb@apache.org
406 29th St.
San Francisco, CA 94131
-------------------------------------------------------------------------------