diff options
author | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2003-03-04 00:06:33 +0000 |
---|---|---|
committer | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2003-03-04 00:06:33 +0000 |
commit | 9e0068623ea097baf468eb2905f6b86b82e92ecc (patch) | |
tree | 47280f1e85cb4a564ea9f41bc48056dd6bc15583 /misc | |
parent | 5f5ad14963f1adc3093db422ef510a595e98dde6 (diff) | |
download | libapr-9e0068623ea097baf468eb2905f6b86b82e92ecc.tar.gz |
Even if the build doesn't support OTHER_CHILD functionality, we still need the
definitions and typedef's since the function stubs require them.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64393 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc')
-rw-r--r-- | misc/unix/otherchild.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/unix/otherchild.c b/misc/unix/otherchild.c index 38d147bf9..bc0d17bf5 100644 --- a/misc/unix/otherchild.c +++ b/misc/unix/otherchild.c @@ -53,12 +53,12 @@ */ #include "apr.h" - -#if APR_HAS_OTHER_CHILD - #include "apr_arch_misc.h" #include "apr_arch_threadproc.h" #include "apr_arch_file_io.h" + +#if APR_HAS_OTHER_CHILD + #ifdef HAVE_TIME_H #include <sys/time.h> #endif |