From cvs-return-1173-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Fri May 04 18:37:00 2001 Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 14459 invoked by uid 500); 4 May 2001 18:34:41 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 13665 invoked by uid 1121); 4 May 2001 18:33:47 -0000 Date: 4 May 2001 18:33:47 -0000 Message-ID: <20010504183347.13609.qmail@apache.org> From: trawick@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/misc/unix otherchild.c trawick 01/05/04 11:33:46 Modified: misc/unix otherchild.c Log: get otherchild.c to compile when !APR_HAS_OTHER_CHILD Revision Changes Path 1.21 +5 -0 apr/misc/unix/otherchild.c Index: otherchild.c =================================================================== RCS file: /home/cvs/apr/misc/unix/otherchild.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- otherchild.c 2001/02/16 04:15:56 1.20 +++ otherchild.c 2001/05/04 18:33:41 1.21 @@ -53,6 +53,9 @@ */ #include "apr.h" + +#if APR_HAS_OTHER_CHILD + #include "misc.h" #include "threadproc.h" #include "fileio.h" @@ -198,3 +201,5 @@ } } } + +#endif /* APR_HAS_OTHER_CHILD */