You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2001/05/04 20:33:47 UTC

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 */