You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by jr...@apache.org on 2018/03/14 20:50:44 UTC

[10/14] qpid-cpp git commit: QPID-8128: Remove the Proton version warning and raise the minimum version

QPID-8128: Remove the Proton version warning and raise the minimum version


Project: http://git-wip-us.apache.org/repos/asf/qpid-cpp/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-cpp/commit/3b6f718d
Tree: http://git-wip-us.apache.org/repos/asf/qpid-cpp/tree/3b6f718d
Diff: http://git-wip-us.apache.org/repos/asf/qpid-cpp/diff/3b6f718d

Branch: refs/heads/master
Commit: 3b6f718deb0d71e194e9ccdd276caea854c97d5d
Parents: 5d28224
Author: Justin Ross <jr...@apache.org>
Authored: Mon Mar 12 16:52:42 2018 -0700
Committer: Justin Ross <jr...@apache.org>
Committed: Wed Mar 14 10:46:27 2018 -0700

----------------------------------------------------------------------
 src/amqp.cmake | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-cpp/blob/3b6f718d/src/amqp.cmake
----------------------------------------------------------------------
diff --git a/src/amqp.cmake b/src/amqp.cmake
index fc97e22..906119c 100644
--- a/src/amqp.cmake
+++ b/src/amqp.cmake
@@ -19,14 +19,11 @@
 
 # Optional AMQP1.0 support. Requires proton toolkit.
 
-find_package(Proton 0.7)
+find_package(Proton 0.16)
 
 set (amqp_default ${amqp_force})
-set (maximum_version 0.18.1)
+
 if (Proton_FOUND)
-    if (Proton_VERSION VERSION_GREATER ${maximum_version})
-        message(WARNING "Qpid proton ${Proton_VERSION} is not a tested version and might not be compatible, ${maximum_version} is highest tested; build may not work")
-    endif (Proton_VERSION VERSION_GREATER ${maximum_version})
     message(STATUS "Qpid proton found, amqp 1.0 support enabled")
     set (amqp_default ON)
     if (Proton_VERSION VERSION_GREATER 0.7)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org