summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorEliel C. Sardanons <eliels@gmail.com>2010-05-02 02:52:23 +0000
committerEliel C. Sardanons <eliels@gmail.com>2010-05-02 02:52:23 +0000
commitcaa2eff30c93d73ab9baa1e5c3107c5ab7bf547b (patch)
treefb4ab1d4e826932aa1170e44568d31660cc37472 /include/asterisk
parent6dd80de93da6be77d765cbbf8f419a5e53899440 (diff)
Avoid making AstData depend on libxml2 to compile.
We have some functions inside the AstData API to get the tree in XML form, but it is not required at the moment to compile asterisk and we can disable that part of the API if we don't have libxml2 support. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@260521 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/data.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asterisk/data.h b/include/asterisk/data.h
index cc92a0c10..54259e48c 100644
--- a/include/asterisk/data.h
+++ b/include/asterisk/data.h
@@ -500,6 +500,7 @@ int ast_data_search_has_condition(const struct ast_data_search *search,
*/
struct ast_data *ast_data_get(const struct ast_data_query *query);
+#ifdef HAVE_LIBXML2
/*!
* \brief Retrieve a subtree from the asterisk data API in XML format..
* \param[in] query The query structure specifying what nodes to retrieve.
@@ -509,6 +510,7 @@ struct ast_data *ast_data_get(const struct ast_data_query *query);
* \see ast_data_free, ast_data_get
*/
struct ast_xml_doc *ast_data_get_xml(const struct ast_data_query *query);
+#endif
/*!
* \brief Release the allocated memory of a tree.