浏览代码

HPCC-12931 SET USE_LIBXSLT as default

Turn off USE_XALAN
Xiaoming Wang 10 年之前
父节点
当前提交
86e2738bcc
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      cmake_modules/commonSetup.cmake

+ 3 - 3
cmake_modules/commonSetup.cmake

@@ -62,9 +62,9 @@ IF ("${COMMONSETUP_DONE}" STREQUAL "")
   option(USE_NATIVE_LIBRARIES "Search standard OS locations for thirdparty libraries" ON)
   option(USE_GIT_DESCRIBE "Use git describe to generate build tag" ON)
   option(CHECK_GIT_TAG "Require git tag to match the generated build tag" OFF)
-  option(USE_XALAN "Configure use of xalan" ON)
+  option(USE_XALAN "Configure use of xalan" OFF)
   option(USE_APR "Configure use of Apache Software Foundation (ASF) Portable Runtime (APR) libraries" ON)
-  option(USE_LIBXSLT "Configure use of libxslt" OFF)
+  option(USE_LIBXSLT "Configure use of libxslt" ON)
   option(MAKE_DOCS "Create documentation at build time." OFF)
   option(MAKE_DOCS_ONLY "Create a base build with only docs." OFF)
   option(DOCS_DRUPAL "Create Drupal HTML Docs" OFF)
@@ -91,7 +91,7 @@ IF ("${COMMONSETUP_DONE}" STREQUAL "")
   endif()
 
   if ( USE_XALAN AND USE_LIBXSLT )
-      set(USE_XALAN OFF)
+      set(USE_LIBXSLT OFF)
   endif()
   if ( USE_LIBXSLT )
       set(USE_LIBXML2 ON)