Repository: qpid-cpp Updated Branches: refs/heads/master 4012fdbbc -> 04efcd908
QPID-7389: Need to use all caps CYRUSSASL_FOUND for earlier versions of cmake Project: http://git-wip-us.apache.org/repos/asf/qpid-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-cpp/commit/04efcd90 Tree: http://git-wip-us.apache.org/repos/asf/qpid-cpp/tree/04efcd90 Diff: http://git-wip-us.apache.org/repos/asf/qpid-cpp/diff/04efcd90 Branch: refs/heads/master Commit: 04efcd908b10830dda525041c2b8eedc78b7f468 Parents: 4012fdb Author: Andrew Stitcher <[email protected]> Authored: Tue Aug 16 12:50:42 2016 -0400 Committer: Andrew Stitcher <[email protected]> Committed: Tue Aug 16 12:50:42 2016 -0400 ---------------------------------------------------------------------- src/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-cpp/blob/04efcd90/src/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a38e639..7bc6f2c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -361,11 +361,11 @@ endif (NOT CMAKE_SYSTEM_NAME STREQUAL Windows) check_size_t_distinct (QPID_SIZE_T_DISTINCT) -option(BUILD_SASL "Build with Cyrus SASL support" ${CyrusSASL_FOUND}) +option(BUILD_SASL "Build with Cyrus SASL support" ${CYRUSSASL_FOUND}) if (BUILD_SASL) - if (NOT CyrusSASL_FOUND) + if (NOT CYRUSSASL_FOUND) message(FATAL_ERROR "Cyrus SASL support requested but libsasl2 library or headers not found") - endif (NOT CyrusSASL_FOUND) + endif (NOT CYRUSSASL_FOUND) set(qpidcommon_sasl_source qpid/sys/cyrus/CyrusSecurityLayer.h --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
