diff options
| author | Alan Conway <aconway@apache.org> | 2007-04-11 19:53:32 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-04-11 19:53:32 +0000 |
| commit | 1fd57585c8ea536630d69de3fc16ce0c6f81c82b (patch) | |
| tree | dc6a92d539d14a333c5033938d13b08edad9c9b9 /cpp/src/framing | |
| parent | f7f31c6a720d23749b23735b71cd401d93ded9b5 (diff) | |
| download | qpid-python-1fd57585c8ea536630d69de3fc16ce0c6f81c82b.tar.gz | |
* cpp/qpidc.spec.in: Added qpidd-devel sub-package.
* cpp/configure.ac: Use a more reliable srcdir test file.
* cpp/docs/api/Makefile.am: Fix bug in VPATH builds.
* cpp/gentools/*, src/**.h,**.cpp: Fix #includes of files in gen/
* cpp/rpm/Makefile.am: Removed. RPM targets defined in top level Makefile.am.
* cpp/Makefile.am: Add RPM targets, fix VPATH bug with RPM targets
* cpp/rpm/README.qpidd-devel: placeholder for qpidd-devel documentation.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@527639 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/framing')
| -rw-r--r-- | cpp/src/framing/AMQFrame.h | 4 | ||||
| -rw-r--r-- | cpp/src/framing/AMQMethodBody.cpp | 2 | ||||
| -rw-r--r-- | cpp/src/framing/AMQMethodBody.h | 2 | ||||
| -rw-r--r-- | cpp/src/framing/AMQRequestBody.cpp | 2 | ||||
| -rw-r--r-- | cpp/src/framing/AMQResponseBody.cpp | 2 | ||||
| -rw-r--r-- | cpp/src/framing/amqp_framing.h | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/cpp/src/framing/AMQFrame.h b/cpp/src/framing/AMQFrame.h index d4c2e0640d..d31df4cc41 100644 --- a/cpp/src/framing/AMQFrame.h +++ b/cpp/src/framing/AMQFrame.h @@ -30,8 +30,8 @@ #include "AMQHeaderBody.h" #include "AMQContentBody.h" #include "AMQHeartbeatBody.h" -#include "AMQP_MethodVersionMap.h" -#include "AMQP_HighestVersion.h" +#include "../gen/AMQP_MethodVersionMap.h" +#include "../gen/AMQP_HighestVersion.h" #include "Buffer.h" namespace qpid { diff --git a/cpp/src/framing/AMQMethodBody.cpp b/cpp/src/framing/AMQMethodBody.cpp index 44924b76e1..0180d6c372 100644 --- a/cpp/src/framing/AMQMethodBody.cpp +++ b/cpp/src/framing/AMQMethodBody.cpp @@ -21,7 +21,7 @@ #include "AMQFrame.h" #include "AMQMethodBody.h" #include "../QpidError.h" -#include "AMQP_MethodVersionMap.h" +#include "../gen/AMQP_MethodVersionMap.h" namespace qpid { namespace framing { diff --git a/cpp/src/framing/AMQMethodBody.h b/cpp/src/framing/AMQMethodBody.h index c5f0a1adf7..2fb952ddbb 100644 --- a/cpp/src/framing/AMQMethodBody.h +++ b/cpp/src/framing/AMQMethodBody.h @@ -25,7 +25,7 @@ #include "amqp_types.h" #include "AMQBody.h" #include "Buffer.h" -#include "AMQP_ServerOperations.h" +#include "../gen/AMQP_ServerOperations.h" #include "MethodContext.h" namespace qpid { diff --git a/cpp/src/framing/AMQRequestBody.cpp b/cpp/src/framing/AMQRequestBody.cpp index 54e1c11863..bb5a448dc3 100644 --- a/cpp/src/framing/AMQRequestBody.cpp +++ b/cpp/src/framing/AMQRequestBody.cpp @@ -17,7 +17,7 @@ */ #include "AMQRequestBody.h" -#include "AMQP_MethodVersionMap.h" +#include "../gen/AMQP_MethodVersionMap.h" namespace qpid { namespace framing { diff --git a/cpp/src/framing/AMQResponseBody.cpp b/cpp/src/framing/AMQResponseBody.cpp index 7da71a5d25..ad99ab32e0 100644 --- a/cpp/src/framing/AMQResponseBody.cpp +++ b/cpp/src/framing/AMQResponseBody.cpp @@ -18,7 +18,7 @@ #include "AMQFrame.h" #include "AMQResponseBody.h" -#include "AMQP_MethodVersionMap.h" +#include "../gen/AMQP_MethodVersionMap.h" namespace qpid { namespace framing { diff --git a/cpp/src/framing/amqp_framing.h b/cpp/src/framing/amqp_framing.h index 5cbaedb102..c99dd2bb64 100644 --- a/cpp/src/framing/amqp_framing.h +++ b/cpp/src/framing/amqp_framing.h @@ -26,7 +26,7 @@ #include "AMQHeaderBody.h" #include "AMQContentBody.h" #include "AMQHeartbeatBody.h" -#include "AMQP_MethodVersionMap.h" +#include "../gen/AMQP_MethodVersionMap.h" #include "InputHandler.h" #include "OutputHandler.h" #include "InitiationHandler.h" |
