summaryrefslogtreecommitdiff
path: root/cpp/configure.ac
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2012-10-19 17:16:07 +0000
committerGordon Sim <gsim@apache.org>2012-10-19 17:16:07 +0000
commitd9cf555efdc694433837187f8b57d7dfa8236ae1 (patch)
tree4e8e5a066db948b2f123256bcc8bb5d933f31d9a /cpp/configure.ac
parente6ec89af34dca9959403b6a2a3ccf9154c77d12e (diff)
downloadqpid-python-d9cf555efdc694433837187f8b57d7dfa8236ae1.tar.gz
QPID-4368: Pluggable AMQP 1.0 implementation for broker and client
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1400178 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/configure.ac')
-rw-r--r--cpp/configure.ac9
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/configure.ac b/cpp/configure.ac
index c4e55f90de..872a8853e3 100644
--- a/cpp/configure.ac
+++ b/cpp/configure.ac
@@ -296,6 +296,15 @@ AS_IF([test "x$WANT_SASL" != xno],
AM_CONDITIONAL([HAVE_SASL], [test "x$have_sasl" = xyes])
AC_SUBST([SASL_PASSWD])
+# Allow integration against external AMQP 1.0 protocol engine
+AC_ARG_WITH([proton], AS_HELP_STRING([--with-proton], [Build with the proton toolkit for AMQP 1.0 support]))
+
+AS_IF([test "x$with_proton" = "xyes"], [
+ PKG_CHECK_MODULES([PROTON], [libqpid-proton])
+])
+AM_CONDITIONAL([HAVE_PROTON], [test "x$have_proton" = xyes])
+
+
# Setup --with-xml/--without-xml as arguments to configure
use_xml=yes
want_xml=check