Throw error if attempting to use both xmlrpc-c and tinyxml2

This commit is contained in:
kannibalox
2024-10-27 17:08:27 -04:00
committed by Jari Sundell
parent b360a734f1
commit 3a8e462bd3
3 changed files with 12 additions and 3 deletions
+4 -3
View File
@@ -37,7 +37,9 @@
#include "config.h"
#ifdef HAVE_XMLRPC_TINYXML2
#ifndef HAVE_XMLRPC_C
#ifdef HAVE_XMLRPC_C
#error HAVE_XMLRPC_C and HAVE_XMLRPC_TINYXML2 cannot be used together. Please choose only one
#endif
#include <cctype>
#include <string>
@@ -449,5 +451,4 @@ bool XmlRpc::is_valid() const { return m_isValid; }
}
#endif // ifndef HAVE_XMLRPC_C
#endif // ifdef HAVE_XMLRPC_TINYXML2
#endif