summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/Monitor.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-11-17 20:30:42 +0000
committerAlan Conway <aconway@apache.org>2006-11-17 20:30:42 +0000
commitd386f860a3404ec9735dab2730f8ed683446838c (patch)
tree2980f35a6add967ab376a08fad7cdef4acff5933 /cpp/src/qpid/sys/Monitor.h
parentbf74286e6a5eba055fd8bf9410c325205b8595d5 (diff)
downloadqpid-python-d386f860a3404ec9735dab2730f8ed683446838c.tar.gz
Patch from Andrew Stitcher to fix APR #include using apr-config.
Fixed build problems with USE_APR= - builds OK but broker non-functional. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@476303 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/Monitor.h')
-rw-r--r--cpp/src/qpid/sys/Monitor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/sys/Monitor.h b/cpp/src/qpid/sys/Monitor.h
index a3abe37748..59e1e74b57 100644
--- a/cpp/src/qpid/sys/Monitor.h
+++ b/cpp/src/qpid/sys/Monitor.h
@@ -25,8 +25,8 @@
#include <boost/noncopyable.hpp>
#ifdef USE_APR
-# include <apr-1/apr_thread_mutex.h>
-# include <apr-1/apr_thread_cond.h>
+# include <apr_thread_mutex.h>
+# include <apr_thread_cond.h>
# include <qpid/apr/APRBase.h>
# include <qpid/apr/APRPool.h>
#else