summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2011-02-09 15:56:18 +0000
committerCharles E. Rolke <chug@apache.org>2011-02-09 15:56:18 +0000
commit89bcd94764e54eb471d4ef72369a92faa0694406 (patch)
tree9f269831f8baa249ea6b9debeb3c1036e239efe4 /cpp/src
parent33edbe909fcbb4bd4b8beca378432aa651187da2 (diff)
downloadqpid-python-89bcd94764e54eb471d4ef72369a92faa0694406.tar.gz
QPID-3041 Make dist process does not package the .NET Binding source
cpp/configure.ac: add tar-ustar to automake init options (name length > 99 fix) create a makefile in bindings/qpid/dotnet cpp/src/Makefile.am add various windows-specific source files that have crept in cpp/binding/qpid/Makefile.am add the dotnet directory to subdirs list cpp/bindings/qpid/dotnet/Makefile.am EXTRA_DIST list of all the dotnet binding files Requires a ./bootstrap and ./configure to take effect. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1068944 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Makefile.am7
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am
index e93e0c960d..cd30526675 100644
--- a/cpp/src/Makefile.am
+++ b/cpp/src/Makefile.am
@@ -24,6 +24,7 @@ SUBDIRS = . tests
# using Visual Studio solutions/projects.
windows_dist = \
qpid/client/windows/SaslFactory.cpp \
+ qpid/client/windows/SslConnector.cpp \
qpid/log/windows/SinkOptions.cpp \
qpid/log/windows/SinkOptions.h \
../include/qpid/sys/windows/check.h \
@@ -42,6 +43,8 @@ windows_dist = \
qpid/sys/windows/Shlib.cpp \
qpid/sys/windows/SocketAddress.cpp \
qpid/sys/windows/Socket.cpp \
+ qpid/sys/windows/SslAsynchIO.cpp \
+ qpid/sys/windows/SslAsynchIO.h \
qpid/sys/windows/StrError.cpp \
qpid/sys/windows/SystemInfo.cpp \
qpid/sys/windows/Thread.cpp \
@@ -51,7 +54,9 @@ windows_dist = \
qpid/sys/windows/uuid.h \
windows/QpiddBroker.cpp \
qpid/broker/windows/BrokerDefaults.cpp \
- qpid/broker/windows/SaslAuthenticator.cpp
+ qpid/broker/windows/SaslAuthenticator.cpp \
+ qpid/broker/windows/SslProtocolFactory.cpp \
+ qpid/messaging/HandleInstantiator.cpp
EXTRA_DIST= $(platform_dist) $(rgen_srcs) $(windows_dist)