summaryrefslogtreecommitdiff
path: root/cpp/lib/common
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-12-12 16:05:01 +0000
committerAlan Conway <aconway@apache.org>2006-12-12 16:05:01 +0000
commit7d0a7581134379324b36d78f8c49dcd793d1ab1e (patch)
treea49ba6cc757891a7ff4cd5fb8e6188ea046840ce /cpp/lib/common
parentba98deefab7bfd076a8fc1ff55eed42c3cf5efbe (diff)
downloadqpid-python-7d0a7581134379324b36d78f8c49dcd793d1ab1e.tar.gz
2006-12-11 Alan Conway <aconway@redhat.com>
* SPECS/qpid-cpp.spec: Draft RPM spec file for C++. Based on initial draft provided by David Lutterkort <dlutter@redhat.com> * cpp Makefiles: Renamed libraries with qpid prefix: libqpidclient etc. * cpp/man/: moved to docs/man/ * docs/api/usr.doxygen: more restricted, user-oriented doc settings. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@486207 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/common')
-rw-r--r--cpp/lib/common/Makefile.am88
1 files changed, 47 insertions, 41 deletions
diff --git a/cpp/lib/common/Makefile.am b/cpp/lib/common/Makefile.am
index 6f21a332d4..bd9f3f422e 100644
--- a/cpp/lib/common/Makefile.am
+++ b/cpp/lib/common/Makefile.am
@@ -10,94 +10,102 @@ apr = sys/apr
apr_src = \
$(apr)/APRAcceptor.cpp \
$(apr)/APRBase.cpp \
- $(apr)/APRBase.h \
$(apr)/APRPool.cpp \
- $(apr)/APRPool.h \
$(apr)/APRSocket.cpp \
- $(apr)/APRSocket.h \
$(apr)/LFProcessor.cpp \
- $(apr)/LFProcessor.h \
$(apr)/LFSessionContext.cpp \
- $(apr)/LFSessionContext.h \
$(apr)/Socket.cpp \
$(apr)/Thread.cpp
+apr_hdr = \
+ $(apr)/APRBase.h \
+ $(apr)/APRPool.h \
+ $(apr)/APRSocket.h \
+ $(apr)/LFProcessor.h \
+ $(apr)/LFSessionContext.h
posix = sys/posix
-posix_src = \
- $(posix)/PosixAcceptor.cpp \
- $(posix)/Socket.cpp \
- $(posix)/Thread.cpp \
- $(posix)/check.cpp \
- $(posix)/check.h \
- $(posix)/EventChannel.cpp \
- $(posix)/EventChannel.h \
- $(posix)/EventChannelThreads.cpp \
+posix_src = \
+ $(posix)/PosixAcceptor.cpp \
+ $(posix)/Socket.cpp \
+ $(posix)/Thread.cpp \
+ $(posix)/check.cpp \
+ $(posix)/EventChannel.cpp \
+ $(posix)/EventChannelThreads.cpp
+posix_hdr = \
+ $(posix)/check.h \
+ $(posix)/EventChannel.h \
$(posix)/EventChannelThreads.h
-EXTRA_DIST=$(posix_src)
+EXTRA_DIST=$(posix_src) $(posix_hdr)
platform_src = $(apr_src)
+platform_hdr = $(apr_hdr)
framing = framing
gen = $(srcdir)/../../gen
-lib_LTLIBRARIES = libcommon.la
-libcommon_la_LIBADD = \
+lib_LTLIBRARIES = libqpidcommon.la
+libqpidcommon_la_LIBADD = \
$(APR_LIBS) \
$(LIB_DLOPEN) \
$(LIB_CLOCK_GETTIME)
-libcommon_la_LDFLAGS = \
+libqpidcommon_la_LDFLAGS = \
-version-info \
$(LIBTOOL_VERSION_INFO_ARG)
-libcommon_la_SOURCES = \
+libqpidcommon_la_SOURCES = \
$(platform_src) \
$(framing)/AMQBody.cpp \
- $(framing)/AMQBody.h \
$(framing)/AMQContentBody.cpp \
+ $(framing)/AMQFrame.cpp \
+ $(framing)/AMQHeaderBody.cpp \
+ $(framing)/AMQHeartbeatBody.cpp \
+ $(framing)/AMQMethodBody.cpp \
+ $(framing)/BasicHeaderProperties.cpp \
+ $(framing)/BodyHandler.cpp \
+ $(framing)/Buffer.cpp \
+ $(framing)/FieldTable.cpp \
+ $(framing)/InitiationHandler.cpp \
+ $(framing)/ProtocolInitiation.cpp \
+ $(framing)/ProtocolVersion.cpp \
+ $(framing)/ProtocolVersionException.cpp \
+ $(framing)/Value.cpp \
+ $(gen)/AMQP_ClientProxy.cpp \
+ $(gen)/AMQP_MethodVersionMap.cpp \
+ $(gen)/AMQP_ServerProxy.cpp \
+ Exception.cpp \
+ ExceptionHolder.cpp \
+ QpidError.cpp \
+ sys/Runnable.cpp \
+ sys/Time.cpp
+
+nobase_pkginclude_HEADERS = \
+ $(platform_hdr) \
+ $(framing)/AMQBody.h \
$(framing)/AMQContentBody.h \
$(framing)/AMQDataBlock.h \
- $(framing)/AMQFrame.cpp \
$(framing)/AMQFrame.h \
- $(framing)/AMQHeaderBody.cpp \
$(framing)/AMQHeaderBody.h \
- $(framing)/AMQHeartbeatBody.cpp \
$(framing)/AMQHeartbeatBody.h \
- $(framing)/AMQMethodBody.cpp \
$(framing)/AMQMethodBody.h \
- $(framing)/BasicHeaderProperties.cpp \
$(framing)/BasicHeaderProperties.h \
- $(framing)/BodyHandler.cpp \
$(framing)/BodyHandler.h \
- $(framing)/Buffer.cpp \
$(framing)/Buffer.h \
- $(framing)/FieldTable.cpp \
$(framing)/FieldTable.h \
$(framing)/FramingContent.cpp \
$(framing)/FramingContent.h \
$(framing)/HeaderProperties.h \
- $(framing)/InitiationHandler.cpp \
$(framing)/InitiationHandler.h \
$(framing)/InputHandler.h \
$(framing)/OutputHandler.h \
- $(framing)/ProtocolInitiation.cpp \
$(framing)/ProtocolInitiation.h \
- $(framing)/ProtocolVersion.cpp \
$(framing)/ProtocolVersion.h \
- $(framing)/ProtocolVersionException.cpp \
$(framing)/ProtocolVersionException.h \
- $(framing)/Value.cpp \
$(framing)/Value.h \
$(framing)/amqp_framing.h \
$(framing)/amqp_types.h \
- $(gen)/AMQP_ClientProxy.cpp \
- $(gen)/AMQP_MethodVersionMap.cpp \
- $(gen)/AMQP_ServerProxy.cpp \
- Exception.cpp \
Exception.h \
- ExceptionHolder.cpp \
ExceptionHolder.h \
- QpidError.cpp \
QpidError.h \
SharedObject.h \
sys/Acceptor.h \
@@ -105,7 +113,6 @@ libcommon_la_SOURCES = \
sys/Module.h \
sys/Monitor.h \
sys/Mutex.h \
- sys/Runnable.cpp \
sys/Runnable.h \
sys/SessionContext.h \
sys/SessionHandler.h \
@@ -113,6 +120,5 @@ libcommon_la_SOURCES = \
sys/ShutdownHandler.h \
sys/Socket.h \
sys/Thread.h \
- sys/Time.cpp \
sys/Time.h \
sys/TimeoutHandler.h