summaryrefslogtreecommitdiff
path: root/qpid/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
commit898f325167cb832853712c99432f89a1e2c464d5 (patch)
tree1847bf404757b414bf94ae8273e30ec1efb20184 /qpid/cpp/src
parent3bb9f37e40cb72d88cf6885bc80f93da3c3231ed (diff)
downloadqpid-python-898f325167cb832853712c99432f89a1e2c464d5.tar.gz
Fix apr-1 header includes.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@480657 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/sys/Monitor.h2
-rw-r--r--qpid/cpp/src/qpid/sys/Mutex.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/sys/Monitor.h b/qpid/cpp/src/qpid/sys/Monitor.h
index bbe126cecb..b2cec27db9 100644
--- a/qpid/cpp/src/qpid/sys/Monitor.h
+++ b/qpid/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/qpid/cpp/src/qpid/sys/Mutex.h b/qpid/cpp/src/qpid/sys/Mutex.h
index 3ada2e98b7..3fe4b004c5 100644
--- a/qpid/cpp/src/qpid/sys/Mutex.h
+++ b/qpid/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