From da3ec55e71887d6b2e79f75e03e49c80650f7f0a Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 13 Jan 2014 09:36:15 -0500 Subject: [PATCH] Do not require LibXml2 to configure In commit 033fc31e (Allow fine grained control over dependancies, 2013-05-16, committed 2013-12-12) the find_package(LibXml2) line was accidentally given a REQUIRED specifier. Remove it now. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 11b71394a..d317212dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -902,7 +902,7 @@ ENDIF(ENABLE_ICONV) # # Find Libxml2 -FIND_PACKAGE(LibXml2 REQUIRED) +FIND_PACKAGE(LibXml2) # IF(LIBXML2_FOUND) CMAKE_PUSH_CHECK_STATE() # Save the state of the variables -- 2.47.2