diff options
author | Andrew Stitcher <astitcher@apache.org> | 2009-05-05 22:26:53 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2009-05-05 22:26:53 +0000 |
commit | b27ad2402037ff204b1c2b704e6799522e658da8 (patch) | |
tree | ac1251163bcd9febd135d975b5a693d03d8be882 /cpp/src | |
parent | 8da2392961daf55549b57a8c576f66df206f2c69 (diff) | |
download | qpid-python-b27ad2402037ff204b1c2b704e6799522e658da8.tar.gz |
Get the sense of the BUILD_ACL option the correct way round
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@771992 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/CMakeLists.txt b/cpp/src/CMakeLists.txt index 605c5b6e2c..3cde35c9fb 100644 --- a/cpp/src/CMakeLists.txt +++ b/cpp/src/CMakeLists.txt @@ -230,9 +230,9 @@ endif (BUILD_XML) # Build the ACL plugin set (acl_default ON) # Like this until we fix exporting symbols from the generated management code -if (NOT CMAKE_SYSTEM_NAME STREQUAL Windows) +if (CMAKE_SYSTEM_NAME STREQUAL Windows) set(acl_default OFF) -endif (NOT CMAKE_SYSTEM_NAME STREQUAL Windows) +endif (CMAKE_SYSTEM_NAME STREQUAL Windows) option(BUILD_ACL "Build ACL enforcement broker plugin" ${acl_default}) if (BUILD_ACL) set (acl_SOURCES |