diff options
author | Gordon Sim <gsim@apache.org> | 2008-10-29 11:01:49 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-10-29 11:01:49 +0000 |
commit | d0b9f8e0b4794dc57680b0902456e2e7a2940fd0 (patch) | |
tree | 43f2327b1ff10aff3abcdcdba9dd7fc8893376ae /cpp/src | |
parent | 86ed9f4cc99564e80ba3cdd891a5608f4f35c55f (diff) | |
download | qpid-python-d0b9f8e0b4794dc57680b0902456e2e7a2940fd0.tar.gz |
Ensure required header files are installed (we may want to revise this, but as committed by r707808 applications no longer compile due to these headers being missing; if we do want to avoid them being installed any includes from other headers need to be revised also).
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@708872 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am index a66eda3463..2ac9a7e716 100644 --- a/cpp/src/Makefile.am +++ b/cpp/src/Makefile.am @@ -372,12 +372,10 @@ libqpidclient_la_SOURCES = \ qpid/client/Bounds.cpp \ qpid/client/Connection.cpp \ qpid/client/ConnectionHandler.cpp \ - qpid/client/ConnectionImpl.h \ qpid/client/ConnectionImpl.cpp \ qpid/client/ConnectionSettings.cpp \ qpid/client/Connector.cpp \ qpid/client/Demux.cpp \ - qpid/client/Dispatcher.h \ qpid/client/Dispatcher.cpp \ qpid/client/FailoverConnection.cpp \ qpid/client/FailoverSession.cpp \ @@ -398,11 +396,9 @@ libqpidclient_la_SOURCES = \ qpid/client/SessionBase_0_10.h \ qpid/client/SessionBase_0_10Access.h \ qpid/client/ConnectionAccess.h \ - qpid/client/SessionImpl.h \ qpid/client/SessionImpl.cpp \ qpid/client/StateManager.cpp \ qpid/client/Subscription.cpp \ - qpid/client/SubscriptionImpl.h \ qpid/client/SubscriptionImpl.cpp \ qpid/client/SubscriptionManager.cpp @@ -509,17 +505,20 @@ nobase_include_HEADERS = \ qpid/broker/Vhost.h \ qpid/client/AckMode.h \ qpid/client/Bounds.h \ - qpid/client/ChainableFrameHandler.h \ + qpid/client/ChainableFrameHandler.h \ qpid/client/Completion.h \ qpid/client/Connection.h \ qpid/client/ConnectionHandler.h \ + qpid/client/ConnectionImpl.h \ qpid/client/ConnectionSettings.h \ qpid/client/Connector.h \ qpid/client/Demux.h \ + qpid/client/Dispatcher.h \ qpid/client/Execution.h \ qpid/client/FailoverConnection.h \ qpid/client/FailoverSession.h \ qpid/client/Subscription.h \ + qpid/client/SubscriptionImpl.h \ qpid/client/SubscriptionSettings.h \ qpid/client/FailoverSubscriptionManager.h \ qpid/client/FlowControl.h \ @@ -534,6 +533,7 @@ nobase_include_HEADERS = \ qpid/client/Results.h \ qpid/client/SessionBase_0_10.h \ qpid/client/Session.h \ + qpid/client/SessionImpl.h \ qpid/client/AsyncSession.h \ qpid/client/StateManager.h \ qpid/client/SubscriptionManager.h \ |