diff options
author | Ryan Bloom <rbb@apache.org> | 1999-12-06 15:47:45 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 1999-12-06 15:47:45 +0000 |
commit | 4f135b4d60e751c40cc37d8ad827e44a2c6ac11b (patch) | |
tree | 917ceb779046901c5d78c8cf75d7ff92afe534c6 /threadproc/unix/thread.c | |
parent | 666261d1cc38d3c76476a216e3a6a78a7965a7f0 (diff) | |
download | apr-4f135b4d60e751c40cc37d8ad827e44a2c6ac11b.tar.gz apr-4f135b4d60e751c40cc37d8ad827e44a2c6ac11b.zip |
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: https://svn.apache.org/repos/asf/apr/apr/trunk@59505 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/unix/thread.c')
-rw-r--r-- | threadproc/unix/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/unix/thread.c b/threadproc/unix/thread.c index c37dc1e4c..7615dc824 100644 --- a/threadproc/unix/thread.c +++ b/threadproc/unix/thread.c @@ -56,7 +56,7 @@ #include "threadproc.h" #include "apr_portable.h" -#ifdef APR_HAS_THREADS +#if APR_HAS_THREADS #ifdef HAVE_PTHREAD_H /* ***APRDOC******************************************************** |