You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2017/10/27 17:05:14 UTC

qpid-interop-test git commit: QPIDIT-97: Reduced required Proton version from 0.18 to 0.17 because RHEL-7 does not have the 0.18 packages yet.

Repository: qpid-interop-test
Updated Branches:
  refs/heads/master 3881d008d -> 225e85788


QPIDIT-97: Reduced required Proton version from 0.18 to 0.17 because RHEL-7 does not have the 0.18 packages yet.


Project: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/commit/225e8578
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/225e8578
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/225e8578

Branch: refs/heads/master
Commit: 225e85788a876b58d6acf641c613da5d6225c5f3
Parents: 3881d00
Author: Kim van der Riet <kp...@apache.org>
Authored: Fri Oct 27 13:04:56 2017 -0400
Committer: Kim van der Riet <kp...@apache.org>
Committed: Fri Oct 27 13:04:56 2017 -0400

----------------------------------------------------------------------
 CMakeLists.txt               | 4 ++--
 shims/rhea-js/CMakeLists.txt | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/225e8578/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c1c4962..c22ed0b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -66,7 +66,7 @@ endif ()
 
 # Find Proton components
 
-find_package(Proton 0.18)
+find_package(Proton 0.17)
 if (Proton_FOUND)
     get_filename_component(PROTON_INSTALL_DIR ${Proton_INCLUDE_DIRS} PATH CACHE PATH "Proton install directory")
     message(STATUS "Qpid proton found. Version ${Proton_VERSION} at ${Proton_INCLUDE_DIRS}")
@@ -75,7 +75,7 @@ else ()
     set (ErrorFlag TRUE)
 endif ()
 
-find_package(ProtonCpp 0.18)
+find_package(ProtonCpp 0.17)
 if (ProtonCpp_FOUND)
     get_filename_component(PROTON_CPP_INSTALL_DIR ${ProtonCpp_INCLUDE_DIRS} PATH CACHE PATH "ProtonCpp install directory")
     message(STATUS "Qpid proton c++ binding found. Version ${ProtonCpp_VERSION} at ${ProtonCpp_INCLUDE_DIRS}")

http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/225e8578/shims/rhea-js/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/shims/rhea-js/CMakeLists.txt b/shims/rhea-js/CMakeLists.txt
index d997215..1ffd94b 100644
--- a/shims/rhea-js/CMakeLists.txt
+++ b/shims/rhea-js/CMakeLists.txt
@@ -20,9 +20,9 @@
 # Building Rhea requires that node.js is installed.
 
 project(qpid-interop-test-rhea-shims)
-message(STATUS "Searching for Rhea shim build and run requirements...")
-
 set(RHEA_DIR "$ENV{HOME}/rhea" CACHE PATH "Path to local Rhea installation")
+message(STATUS "Searching for Rhea shim build and run requirements... RHEA_DIR=${RHEA_DIR}")
+
 find_file(RHEA package.json HINTS ${RHEA_DIR} NO_DEFAULT_PATH DOC "Rhea javascript package file")
 if (RHEA STREQUAL "RHEA-NOTFOUND")
   message(STATUS "No local Rhea directory found, using upstream package.")


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