summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-02-25 20:39:41 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-02-25 20:39:41 +0000
commitf89feca4d20956d9232712f1febb5cb10156ba42 (patch)
treea3e2e599ce12612d3dee4b8692c03509a4ca0fa7 /lib
parent65e1cc33ee39faf300e63315a649d275054a683a (diff)
downloadapr-f89feca4d20956d9232712f1febb5cb10156ba42.tar.gz
Fix the hosed #ifdef APR_HAVE_FOO_H tests, the #if HAVE_ tests, and
also cleanup s/#ifdef HAVE_FOO_H/#if APR_HAVE_FOO_H/ whrere appropriate. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61303 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'lib')
-rw-r--r--lib/apr_pools.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/apr_pools.c b/lib/apr_pools.c
index 4f60d5c0a..9a2f4dbf7 100644
--- a/lib/apr_pools.c
+++ b/lib/apr_pools.c
@@ -70,13 +70,13 @@
#include "apr_lock.h"
#include "apr_hash.h"
-#ifdef HAVE_STDIO_H
+#if APR_HAVE_STDIO_H
#include <stdio.h>
#endif
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
-#ifdef HAVE_SYS_SIGNAL_H
+#if APR_HAVE_SYS_SIGNAL_H
#include <sys/signal.h>
#endif
#if APR_HAVE_SIGNAL_H
@@ -88,17 +88,17 @@
#if APR_HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
-#ifdef HAVE_UNISTD_H
+#if APR_HAVE_UNISTD_H
#include <unistd.h>
#endif
#if APR_HAVE_FCNTL_H
#include <fcntl.h>
#endif
-#ifdef HAVE_STRING_H
+#if APR_HAVE_STRING_H
#include <string.h>
#endif
-#ifdef HAVE_STDLIB_H
+#if APR_HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_MALLOC_H