summaryrefslogtreecommitdiff
path: root/memory
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-12-06 15:47:45 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-12-06 15:47:45 +0000
commitd447642e6748d44e17065d3bae83420191c7f053 (patch)
tree917ceb779046901c5d78c8cf75d7ff92afe534c6 /memory
parentb5cd0940fb0ae37f64d8ec823cc282c72eccbb49 (diff)
downloadlibapr-d447642e6748d44e17065d3bae83420191c7f053.tar.gz
Cleanup some mistakes I made. We are now configuring the APR_HAS_FOO
macros in a cleaner way IMO, and that required that we always use #if instead of #ifdef. I also used the wrong #if HAVE_SIGNAL_H macro in apr_pools.c. Submitted by: David Reid git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59505 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'memory')
-rw-r--r--memory/unix/apr_pools.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/memory/unix/apr_pools.c b/memory/unix/apr_pools.c
index e23f8a0b3..a7307fca5 100644
--- a/memory/unix/apr_pools.c
+++ b/memory/unix/apr_pools.c
@@ -76,6 +76,9 @@
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
+#ifdef HAVE_SYS_SIGNAL_H
+#include <sys/signal.h>
+#endif
#ifdef HAVE_SIGNAL_H
#include <sys/signal.h>
#endif