diff options
| author | Gordon Sim <gsim@apache.org> | 2012-10-19 17:16:07 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2012-10-19 17:16:07 +0000 |
| commit | a3a5e66987000ac9b93e8ac04a4bd69b5adca862 (patch) | |
| tree | e836dc8e865051cdd9e254c76082c7a450a9c0ca /qpid/cpp/configure.ac | |
| parent | d672df2c5c286c14ea65256ea78314523f7fd1dc (diff) | |
| download | qpid-python-a3a5e66987000ac9b93e8ac04a4bd69b5adca862.tar.gz | |
QPID-4368: Pluggable AMQP 1.0 implementation for broker and client
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1400178 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/configure.ac')
| -rw-r--r-- | qpid/cpp/configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qpid/cpp/configure.ac b/qpid/cpp/configure.ac index c4e55f90de..872a8853e3 100644 --- a/qpid/cpp/configure.ac +++ b/qpid/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 |
