summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-11-29 17:50:44 +0000
committerAlan Conway <aconway@apache.org>2006-11-29 17:50:44 +0000
commit0779e98c3d4705b531f3f8e7b4a7f8c1b5fa02fe (patch)
treefc4758d16b8158e1fc34fcf2868544d779c117c4 /cpp/src
parentb13e1a24fcca8797b7be5a242f164afbe17ec4f6 (diff)
downloadqpid-python-0779e98c3d4705b531f3f8e7b4a7f8c1b5fa02fe.tar.gz
Fix apr-1 header includes.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@480657 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/sys/Monitor.h2
-rw-r--r--cpp/src/qpid/sys/Mutex.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/sys/Monitor.h b/cpp/src/qpid/sys/Monitor.h
index bbe126cecb..b2cec27db9 100644
--- a/cpp/src/qpid/sys/Monitor.h
+++ b/cpp/src/qpid/sys/Monitor.h
@@ -28,7 +28,7 @@
#include <qpid/sys/Time.h>
#ifdef USE_APR
-# include <apr-1/apr_thread_cond.h>
+# include <apr_thread_cond.h>
#endif
namespace qpid {
diff --git a/cpp/src/qpid/sys/Mutex.h b/cpp/src/qpid/sys/Mutex.h
index 3ada2e98b7..3fe4b004c5 100644
--- a/cpp/src/qpid/sys/Mutex.h
+++ b/cpp/src/qpid/sys/Mutex.h
@@ -20,7 +20,7 @@
*/
#ifdef USE_APR
-# include <apr-1/apr_thread_mutex.h>
+# include <apr_thread_mutex.h>
# include <qpid/apr/APRBase.h>
# include <qpid/apr/APRPool.h>
#else