$NetBSD: patch-source_API_CMakeLists.txt,v 1.2 2019/06/02 08:35:55 adam Exp $

Fix finding libxml2's includes.

--- source/API/CMakeLists.txt.orig	2019-01-04 12:47:02.000000000 +0000
+++ source/API/CMakeLists.txt
@@ -9,6 +9,10 @@ if(NOT LLDB_DISABLE_PYTHON)
   set(lldb_python_wrapper ${lldb_scripts_dir}/LLDBWrapPython.cpp)
 endif()
 
+if(LIBXML2_FOUND)
+  include_directories(SYSTEM ${LIBXML2_INCLUDE_DIR})
+endif()
+
 add_lldb_library(liblldb SHARED
   SBAddress.cpp
   SBAttachInfo.cpp
