diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2013-07-25 20:25:14 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2013-07-25 20:25:14 +0000 |
| commit | 25f9ff86c702792a492697b03fa3c4190fa12903 (patch) | |
| tree | f0f4edbe4a5dd29a6e191713872b6a8bd3e28dd4 /qpid/cpp/bindings | |
| parent | d73ba2c389413b64aba0ef6893c98c89120622ce (diff) | |
| download | qpid-python-25f9ff86c702792a492697b03fa3c4190fa12903.tar.gz | |
QPID-4640: QPID-3633: Remove autotools build from qpid C++ source tree
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507112 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/bindings')
| -rw-r--r-- | qpid/cpp/bindings/qmf/Makefile.am | 32 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qmf/python/Makefile.am | 51 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qmf/ruby/Makefile.am | 45 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qmf/tests/Makefile.am | 27 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qmf2/Makefile.am | 32 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qmf2/examples/cpp/Makefile.am | 39 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qmf2/python/Makefile.am | 49 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qmf2/ruby/Makefile.am | 44 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qpid/Makefile.am | 79 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qpid/dotnet/Makefile.am | 159 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qpid/python/Makefile.am | 49 | ||||
| -rw-r--r-- | qpid/cpp/bindings/qpid/ruby/Makefile.am | 44 |
12 files changed, 0 insertions, 650 deletions
diff --git a/qpid/cpp/bindings/qmf/Makefile.am b/qpid/cpp/bindings/qmf/Makefile.am deleted file mode 100644 index ee4ff1d3c1..0000000000 --- a/qpid/cpp/bindings/qmf/Makefile.am +++ /dev/null @@ -1,32 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -if HAVE_SWIG - -SUBDIRS = tests - -if HAVE_RUBY_DEVEL -SUBDIRS += ruby -endif - -if HAVE_PYTHON_DEVEL -SUBDIRS += python -endif - -endif diff --git a/qpid/cpp/bindings/qmf/python/Makefile.am b/qpid/cpp/bindings/qmf/python/Makefile.am deleted file mode 100644 index f787d3955f..0000000000 --- a/qpid/cpp/bindings/qmf/python/Makefile.am +++ /dev/null @@ -1,51 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -if HAVE_PYTHON_DEVEL - -INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/src/qmf -I$(top_srcdir)/src -I$(top_builddir)/src - -generated_file_list = \ - qmfengine.cpp \ - qmfengine.py - -EXTRA_DIST = CMakeLists.txt python.i qmfengine.py -BUILT_SOURCES = $(generated_file_list) -SWIG_FLAGS = -w362,401 - -$(generated_file_list): $(srcdir)/python.i - $(SWIG) -c++ -python $(SWIG_FLAGS) $(INCLUDES) $(QPID_CXXFLAGS) -I$(top_srcdir)/src/qmf -I/usr/include -o qmfengine.cpp $(srcdir)/python.i - -pylibdir = $(pyexecdir) - -pylib_LTLIBRARIES = _qmfengine.la -qenginedir = $(pythondir) -qengine_PYTHON = qmfengine.py qmf.py - -#_qmfengine_la_LDFLAGS = -avoid-version -module -shrext "$(PYTHON_SO)" -#_qmfengine_la_LDFLAGS = -avoid-version -module -shrext ".so" -_qmfengine_la_LDFLAGS = -avoid-version -module -shared -_qmfengine_la_LIBADD = $(PYTHON_LIBS) -L$(top_builddir)/src/.libs -lqpidclient $(top_builddir)/src/libqmf.la -_qmfengine_la_CXXFLAGS = $(INCLUDES) -I$(srcdir)/qmf $(PYTHON_CFLAGS) -fno-strict-aliasing -nodist__qmfengine_la_SOURCES = qmfengine.cpp - -CLEANFILES = $(generated_file_list) - -endif # HAVE_PYTHON_DEVEL - diff --git a/qpid/cpp/bindings/qmf/ruby/Makefile.am b/qpid/cpp/bindings/qmf/ruby/Makefile.am deleted file mode 100644 index 488d5550c5..0000000000 --- a/qpid/cpp/bindings/qmf/ruby/Makefile.am +++ /dev/null @@ -1,45 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -if HAVE_RUBY_DEVEL - -INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/src -I$(top_builddir)/src - -EXTRA_DIST = $(srcdir)/CMakeLists.txt $(srcdir)/ruby.i -BUILT_SOURCES = qmfengine.cpp -SWIG_FLAGS = -w362,401 - -rubylibdir = $(RUBY_LIB) - -dist_rubylib_DATA = qmf.rb - -qmfengine.cpp: $(srcdir)/ruby.i - $(SWIG) -ruby -c++ $(SWIG_FLAGS) $(INCLUDES) $(QPID_CXXFLAGS) -I/usr/include -o qmfengine.cpp $(srcdir)/ruby.i - -rubylibarchdir = $(RUBY_LIB_ARCH) -rubylibarch_LTLIBRARIES = qmfengine.la - -qmfengine_la_LDFLAGS = -avoid-version -module -shared -shrext ".$(RUBY_DLEXT)" -qmfengine_la_LIBADD = $(RUBY_LIBS) -L$(top_builddir)/src/.libs -lqpidclient $(top_builddir)/src/libqmfengine.la -qmfengine_la_CXXFLAGS = $(INCLUDES) -I$(RUBY_INC) -I$(RUBY_INC_ARCH) -fno-strict-aliasing -nodist_qmfengine_la_SOURCES = qmfengine.cpp - -CLEANFILES = qmfengine.cpp - -endif # HAVE_RUBY_DEVEL diff --git a/qpid/cpp/bindings/qmf/tests/Makefile.am b/qpid/cpp/bindings/qmf/tests/Makefile.am deleted file mode 100644 index 182771e16b..0000000000 --- a/qpid/cpp/bindings/qmf/tests/Makefile.am +++ /dev/null @@ -1,27 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -TESTS = run_interop_tests - -EXTRA_DIST = \ - agent_ruby.rb \ - python_agent.py \ - python_console.py \ - ruby_console.rb \ - run_interop_tests diff --git a/qpid/cpp/bindings/qmf2/Makefile.am b/qpid/cpp/bindings/qmf2/Makefile.am deleted file mode 100644 index 0f50e757a2..0000000000 --- a/qpid/cpp/bindings/qmf2/Makefile.am +++ /dev/null @@ -1,32 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -if HAVE_SWIG - -SUBDIRS = examples/cpp - -if HAVE_RUBY_DEVEL -SUBDIRS += ruby -endif - -if HAVE_PYTHON_DEVEL -SUBDIRS += python -endif - -endif diff --git a/qpid/cpp/bindings/qmf2/examples/cpp/Makefile.am b/qpid/cpp/bindings/qmf2/examples/cpp/Makefile.am deleted file mode 100644 index 8bf56ead91..0000000000 --- a/qpid/cpp/bindings/qmf2/examples/cpp/Makefile.am +++ /dev/null @@ -1,39 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -INCLUDE = -I$(top_srcdir)/include - -AM_CPPFLAGS = $(INCLUDE) - -TYPES_LIB=$(top_builddir)/src/libqpidtypes.la -MESSAGING_LIB=$(top_builddir)/src/libqpidmessaging.la - -noinst_PROGRAMS=agent event_driven_list_agents list_agents print_events - -agent_SOURCES=agent.cpp -agent_LDADD=$(top_builddir)/src/libqmf2.la $(TYPES_LIB) $(MESSAGING_LIB) - -list_agents_SOURCES=list_agents.cpp -list_agents_LDADD=$(top_builddir)/src/libqmf2.la $(MESSAGING_LIB) - -event_driven_list_agents_SOURCES=event_driven_list_agents.cpp -event_driven_list_agents_LDADD=$(top_builddir)/src/libqmf2.la $(MESSAGING_LIB) - -print_events_SOURCES=print_events.cpp -print_events_LDADD=$(top_builddir)/src/libqmf2.la $(TYPES_LIB) $(MESSAGING_LIB) diff --git a/qpid/cpp/bindings/qmf2/python/Makefile.am b/qpid/cpp/bindings/qmf2/python/Makefile.am deleted file mode 100644 index 309e8f8dad..0000000000 --- a/qpid/cpp/bindings/qmf2/python/Makefile.am +++ /dev/null @@ -1,49 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -if HAVE_PYTHON_DEVEL - -INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/bindings -I$(top_builddir)/include -I$(top_srcdir)/src -I$(top_builddir)/src $(QMF_INCLUDES) - -generated_file_list = \ - cqmf2.cpp \ - cqmf2.py - -EXTRA_DIST = CMakeLists.txt python.i -BUILT_SOURCES = $(generated_file_list) -SWIG_FLAGS = -w362,401 - -$(generated_file_list): $(srcdir)/python.i - $(SWIG) -c++ -python $(SWIG_FLAGS) $(INCLUDES) $(QPID_CXXFLAGS) -I/usr/include -o cqmf2.cpp $(srcdir)/python.i - -pylibdir = $(pyexecdir) - -pylib_LTLIBRARIES = _cqmf2.la -cqpiddir = $(pythondir) -cqpid_PYTHON = qmf2.py cqmf2.py - -_cqmf2_la_LDFLAGS = -avoid-version -module -shared -_cqmf2_la_LIBADD = $(PYTHON_LIBS) -L$(top_builddir)/src/.libs $(top_builddir)/src/libqmf2.la -_cqmf2_la_CXXFLAGS = $(INCLUDES) -I$(srcdir)/qmf $(PYTHON_CFLAGS) -fno-strict-aliasing -nodist__cqmf2_la_SOURCES = cqmf2.cpp - -CLEANFILES = $(generated_file_list) - -endif # HAVE_PYTHON_DEVEL - diff --git a/qpid/cpp/bindings/qmf2/ruby/Makefile.am b/qpid/cpp/bindings/qmf2/ruby/Makefile.am deleted file mode 100644 index 9952edb972..0000000000 --- a/qpid/cpp/bindings/qmf2/ruby/Makefile.am +++ /dev/null @@ -1,44 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -if HAVE_RUBY_DEVEL - -INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/bindings -I$(top_builddir)/include -I$(top_srcdir)/src -I$(top_builddir)/src $(QMF_INCLUDES) - -EXTRA_DIST = CMakeLists.txt ruby.i -BUILT_SOURCES = cqmf2.cpp -SWIG_FLAGS = -w362,401 - -rubylibdir = $(RUBY_LIB) - -cqmf2.cpp: $(srcdir)/ruby.i - $(SWIG) -ruby -c++ $(SWIG_FLAGS) $(INCLUDES) $(QPID_CXXFLAGS) -I/usr/include -o cqmf2.cpp $(srcdir)/ruby.i - -rubylibarchdir = $(RUBY_LIB_ARCH) -rubylibarch_LTLIBRARIES = cqmf2.la -dist_rubylib_DATA = qmf2.rb - -cqmf2_la_LDFLAGS = -avoid-version -module -shared -shrext ".$(RUBY_DLEXT)" -cqmf2_la_LIBADD = $(RUBY_LIBS) -L$(top_builddir)/src/.libs -lqmf2 $(top_builddir)/src/libqmf2.la -cqmf2_la_CXXFLAGS = $(INCLUDES) -I$(RUBY_INC) -I$(RUBY_INC_ARCH) -fno-strict-aliasing -nodist_cqmf2_la_SOURCES = cqmf2.cpp - -CLEANFILES = cqmf2.cpp - -endif # HAVE_RUBY_DEVEL diff --git a/qpid/cpp/bindings/qpid/Makefile.am b/qpid/cpp/bindings/qpid/Makefile.am deleted file mode 100644 index 5f47ee9b0a..0000000000 --- a/qpid/cpp/bindings/qpid/Makefile.am +++ /dev/null @@ -1,79 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -SUBDIRS = dotnet - -if HAVE_SWIG - -if HAVE_RUBY_DEVEL -SUBDIRS += ruby -endif - -if HAVE_PYTHON_DEVEL -SUBDIRS += python -endif - -if HAVE_PERL_DEVEL - -INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/bindings -I$(top_builddir)/include -I$(top_srcdir)/src -I$(top_builddir)/src -I$(PERL_INC) - -EXTRA_DIST = perl/perl.i perl/CMakeLists.txt perl/Makefile.PL perl/lib/qpid.pm perl/lib -BUILT_SOURCES = perl/cqpid_perl.cpp -SWIG_FLAGS = -w362,401 - -perl/cqpid_perl.cpp: $(srcdir)/perl/perl.i - mkdir -p perl - $(SWIG) -perl -c++ $(SWIG_FLAGS) $(INCLUDES) $(QPID_CXXFLAGS) -I/usr/include -o perl/cqpid_perl.cpp $(srcdir)/perl/perl.i - -perl/Makefile: perl/cqpid_perl.cpp - mkdir -p perl - cd perl; \ - $(PERL) Makefile.PL PREFIX=$(prefix) ; \ - cd .. - -all-local: perl/Makefile - cd perl; \ - $(MAKE) OPTIMIZE="$(CXXFLAGS)" ; \ - cd .. - -install-exec-local: - cd perl ; \ - $(MAKE) pure_install ; \ - cd .. - -clean-local: - cd perl ; \ - $(MAKE) clean ; \ - cd .. - -distclean-local: - cd perl ; \ - $(MAKE) distclean ; \ - cd .. - -maintainer-clean-local: - cd perl ; \ - $(PERL) maintainer-clean ; \ - cd .. - -CLEANFILES = perl/cqpid_perl.cpp perl/Makefile.old perl/cqpid_perl.pm - -endif - -endif diff --git a/qpid/cpp/bindings/qpid/dotnet/Makefile.am b/qpid/cpp/bindings/qpid/dotnet/Makefile.am deleted file mode 100644 index 82ae315578..0000000000 --- a/qpid/cpp/bindings/qpid/dotnet/Makefile.am +++ /dev/null @@ -1,159 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -EXTRA_DIST = configure-windows.ps1 \ - examples/csharp.direct.receiver/csharp.direct.receiver.cs \ - examples/csharp.direct.receiver/Properties/AssemblyInfo.cs \ - examples/csharp.direct.sender/csharp.direct.sender.cs \ - examples/csharp.direct.sender/Properties/AssemblyInfo.cs \ - examples/csharp.example.client/csharp.example.client.cs \ - examples/csharp.example.client/Properties/AssemblyInfo.cs \ - examples/csharp.example.declare_queues/csharp.example.declare_queues.cs \ - examples/csharp.example.declare_queues/Properties/AssemblyInfo.cs \ - examples/csharp.example.drain/csharp.example.drain.cs \ - examples/csharp.example.drain/Options.cs \ - examples/csharp.example.drain/Properties/AssemblyInfo.cs \ - examples/csharp.example.helloworld/csharp.example.helloworld.cs \ - examples/csharp.example.helloworld/Properties/AssemblyInfo.cs \ - examples/csharp.example.server/csharp.example.server.cs \ - examples/csharp.example.server/Properties/AssemblyInfo.cs \ - examples/csharp.example.spout/csharp.example.spout.cs \ - examples/csharp.example.spout/Options.cs \ - examples/csharp.example.spout/Properties/AssemblyInfo.cs \ - examples/csharp.map.callback.receiver/csharp.map.callback.receiver.cs \ - examples/csharp.map.callback.receiver/Properties/AssemblyInfo.cs \ - examples/csharp.map.callback.sender/csharp.map.callback.sender.cs \ - examples/csharp.map.callback.sender/Properties/AssemblyInfo.cs \ - examples/csharp.map.receiver/csharp.map.receiver.cs \ - examples/csharp.map.receiver/Properties/AssemblyInfo.cs \ - examples/csharp.map.sender/csharp.map.sender.cs \ - examples/csharp.map.sender/Properties/AssemblyInfo.cs \ - examples/msvc10/csharp.direct.receiver/app.config \ - examples/msvc10/csharp.direct.receiver/csharp.direct.receiver.csproj \ - examples/msvc10/csharp.direct.sender/app.config \ - examples/msvc10/csharp.direct.sender/csharp.direct.sender.csproj \ - examples/msvc10/csharp.example.client/app.config \ - examples/msvc10/csharp.example.client/csharp.example.client.csproj \ - examples/msvc10/csharp.example.declare_queues/app.config \ - examples/msvc10/csharp.example.declare_queues/csharp.example.declare_queues.csproj \ - examples/msvc10/csharp.example.drain/app.config \ - examples/msvc10/csharp.example.drain/csharp.example.drain.csproj \ - examples/msvc10/csharp.example.helloworld/app.config \ - examples/msvc10/csharp.example.helloworld/csharp.example.helloworld.csproj \ - examples/msvc10/csharp.example.server/app.config \ - examples/msvc10/csharp.example.server/csharp.example.server.csproj \ - examples/msvc10/csharp.example.spout/app.config \ - examples/msvc10/csharp.example.spout/csharp.example.spout.csproj \ - examples/msvc10/csharp.map.callback.receiver/app.config \ - examples/msvc10/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj \ - examples/msvc10/csharp.map.callback.sender/app.config \ - examples/msvc10/csharp.map.callback.sender/csharp.map.callback.sender.csproj \ - examples/msvc10/csharp.map.receiver/app.config \ - examples/msvc10/csharp.map.receiver/csharp.map.receiver.csproj \ - examples/msvc10/csharp.map.sender/app.config \ - examples/msvc10/csharp.map.sender/csharp.map.sender.csproj \ - examples/msvc9/csharp.direct.receiver/csharp.direct.receiver.csproj \ - examples/msvc9/csharp.direct.sender/csharp.direct.sender.csproj \ - examples/msvc9/csharp.example.client/csharp.example.client.csproj \ - examples/msvc9/csharp.example.declare_queues/csharp.example.declare_queues.csproj \ - examples/msvc9/csharp.example.drain/csharp.example.drain.csproj \ - examples/msvc9/csharp.example.helloworld/csharp.example.helloworld.csproj \ - examples/msvc9/csharp.example.server/csharp.example.server.csproj \ - examples/msvc9/csharp.example.spout/csharp.example.spout.csproj \ - examples/msvc9/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj \ - examples/msvc9/csharp.map.callback.sender/csharp.map.callback.sender.csproj \ - examples/msvc9/csharp.map.receiver/csharp.map.receiver.csproj \ - examples/msvc9/csharp.map.sender/csharp.map.sender.csproj \ - Makefile.am \ - msvc10/org.apache.qpid.messaging.sessionreceiver.sln \ - msvc10/org.apache.qpid.messaging.sln \ - msvc9/org.apache.qpid.messaging.sessionreceiver.sln \ - msvc9/org.apache.qpid.messaging.sln \ - ReadMe.txt \ - src/Address.cpp \ - src/Address.h \ - src/app.rc \ - src/AssemblyInfo.cpp \ - src/Connection.cpp \ - src/Connection.h \ - src/Duration.h \ - src/FailoverUpdates.cpp \ - src/FailoverUpdates.h \ - src/Message.cpp \ - src/Message.h \ - src/msvc10/org.apache.qpid.messaging.vcxproj \ - src/msvc10/org.apache.qpid.messaging.vcxproj.filters \ - src/msvc9/org.apache.qpid.messaging.vcproj \ - src/org.apache.qpid.messaging.template.rc \ - src/qpid.snk \ - src/QpidException.h \ - src/QpidMarshal.h \ - src/QpidTypeCheck.h \ - src/ReadMe.txt \ - src/Receiver.cpp \ - src/Receiver.h \ - src/resource1.h \ - src/Sender.cpp \ - src/Sender.h \ - src/Session.cpp \ - src/Session.h \ - src/sessionreceiver/msvc10/org.apache.qpid.messaging.sessionreceiver.csproj \ - src/sessionreceiver/msvc9/org.apache.qpid.messaging.sessionreceiver.csproj \ - src/sessionreceiver/Properties/sessionreceiver-AssemblyInfo-template.cs \ - src/sessionreceiver/qpid.snk \ - src/sessionreceiver/sessionreceiver.cs \ - src/TypeTranslator.cpp \ - src/TypeTranslator.h \ - test/messaging.test/messaging.test.address.cs \ - test/messaging.test/messaging.test.connection.cs \ - test/messaging.test/messaging.test.cs \ - test/messaging.test/messaging.test.duration.cs \ - test/messaging.test/messaging.test.message.cs \ - test/messaging.test/msvc10/messaging.test.csproj \ - test/messaging.test/msvc9/messaging.test.csproj \ - test/messaging.test/Properties/AssemblyInfo.cs \ - winsdk_sources/msvc10/examples/csharp.direct.receiver/csharp.direct.receiver.csproj \ - winsdk_sources/msvc10/examples/csharp.direct.sender/csharp.direct.sender.csproj \ - winsdk_sources/msvc10/examples/csharp.example.client/csharp.example.client.csproj \ - winsdk_sources/msvc10/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj \ - winsdk_sources/msvc10/examples/csharp.example.drain/csharp.example.drain.csproj \ - winsdk_sources/msvc10/examples/csharp.example.helloworld/csharp.example.helloworld.csproj \ - winsdk_sources/msvc10/examples/csharp.example.server/csharp.example.server.csproj \ - winsdk_sources/msvc10/examples/csharp.example.spout/csharp.example.spout.csproj \ - winsdk_sources/msvc10/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj \ - winsdk_sources/msvc10/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj \ - winsdk_sources/msvc10/examples/csharp.map.receiver/csharp.map.receiver.csproj \ - winsdk_sources/msvc10/examples/csharp.map.sender/csharp.map.sender.csproj \ - winsdk_sources/msvc10/winsdk_dotnet_examples.sln \ - winsdk_sources/msvc9/examples/csharp.direct.receiver/csharp.direct.receiver.csproj \ - winsdk_sources/msvc9/examples/csharp.direct.sender/csharp.direct.sender.csproj \ - winsdk_sources/msvc9/examples/csharp.example.client/csharp.example.client.csproj \ - winsdk_sources/msvc9/examples/csharp.example.declare_queues/csharp.example.declare_queues.csproj \ - winsdk_sources/msvc9/examples/csharp.example.drain/csharp.example.drain.csproj \ - winsdk_sources/msvc9/examples/csharp.example.helloworld/csharp.example.helloworld.csproj \ - winsdk_sources/msvc9/examples/csharp.example.server/csharp.example.server.csproj \ - winsdk_sources/msvc9/examples/csharp.example.spout/csharp.example.spout.csproj \ - winsdk_sources/msvc9/examples/csharp.map.callback.receiver/csharp.map.callback.receiver.csproj \ - winsdk_sources/msvc9/examples/csharp.map.callback.sender/csharp.map.callback.sender.csproj \ - winsdk_sources/msvc9/examples/csharp.map.receiver/csharp.map.receiver.csproj \ - winsdk_sources/msvc9/examples/csharp.map.sender/csharp.map.sender.csproj \ - winsdk_sources/msvc9/winsdk_dotnet_examples.sln \ - ../../../src/windows/resources/qpid-icon.ico \ - ../../../src/windows/resources/template-resource.rc \ - ../../../src/windows/resources/version-resource.h diff --git a/qpid/cpp/bindings/qpid/python/Makefile.am b/qpid/cpp/bindings/qpid/python/Makefile.am deleted file mode 100644 index d27cc8b3a2..0000000000 --- a/qpid/cpp/bindings/qpid/python/Makefile.am +++ /dev/null @@ -1,49 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -if HAVE_PYTHON_DEVEL - -INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/bindings -I$(top_builddir)/include -I$(top_srcdir)/src/qmf -I$(top_srcdir)/src -I$(top_builddir)/src - -generated_file_list = \ - cqpid.cpp \ - cqpid.py - -EXTRA_DIST = CMakeLists.txt python.i -BUILT_SOURCES = $(generated_file_list) -SWIG_FLAGS = -w362,401 - -$(generated_file_list): $(srcdir)/python.i - $(SWIG) -c++ -python $(SWIG_FLAGS) $(INCLUDES) $(QPID_CXXFLAGS) -I$(top_srcdir)/src/qmf -I/usr/include -o cqpid.cpp $(srcdir)/python.i - -pylibdir = $(pyexecdir) - -pylib_LTLIBRARIES = _cqpid.la -cqpiddir = $(pythondir) -cqpid_PYTHON = cqpid.py - -_cqpid_la_LDFLAGS = -avoid-version -module -shared -_cqpid_la_LIBADD = $(PYTHON_LIBS) -L$(top_builddir)/src/.libs -lqpidmessaging -lqpidtypes $(top_builddir)/src/libqpidmessaging.la $(top_builddir)/src/libqpidtypes.la -_cqpid_la_CXXFLAGS = $(INCLUDES) $(PYTHON_CFLAGS) -fno-strict-aliasing -nodist__cqpid_la_SOURCES = cqpid.cpp - -CLEANFILES = $(generated_file_list) - -endif # HAVE_PYTHON_DEVEL - diff --git a/qpid/cpp/bindings/qpid/ruby/Makefile.am b/qpid/cpp/bindings/qpid/ruby/Makefile.am deleted file mode 100644 index 398449c7ed..0000000000 --- a/qpid/cpp/bindings/qpid/ruby/Makefile.am +++ /dev/null @@ -1,44 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -if HAVE_RUBY_DEVEL - -INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/bindings -I$(top_builddir)/include -I$(top_srcdir)/src -I$(top_builddir)/src - -EXTRA_DIST = CMakeLists.txt ruby.i -BUILT_SOURCES = cqpid.cpp -SWIG_FLAGS = -w362,401 - -rubylibdir = $(RUBY_LIB) - -cqpid.cpp: $(srcdir)/ruby.i - $(SWIG) -ruby -c++ $(SWIG_FLAGS) $(INCLUDES) $(QPID_CXXFLAGS) -I/usr/include -o cqpid.cpp $(srcdir)/ruby.i - -rubylibarchdir = $(RUBY_LIB_ARCH) -rubylibarch_LTLIBRARIES = cqpid.la - -cqpid_la_LDFLAGS = -avoid-version -module -shared -shrext ".$(RUBY_DLEXT)" -cqpid_la_LIBADD = $(RUBY_LIBS) -L$(top_builddir)/src/.libs -lqpidmessaging -lqpidtypes \ - $(top_builddir)/src/libqpidmessaging.la $(top_builddir)/src/libqpidtypes.la -cqpid_la_CXXFLAGS = $(INCLUDES) -I$(RUBY_INC) -I$(RUBY_INC_ARCH) -fno-strict-aliasing -nodist_cqpid_la_SOURCES = cqpid.cpp - -CLEANFILES = cqpid.cpp - -endif # HAVE_RUBY_DEVEL |
