diff options
author | Nicky <nicky.dasmijn@gmail.com> | 2022-04-18 16:52:39 +0200 |
---|---|---|
committer | Nicky <nicky.dasmijn@gmail.com> | 2022-04-18 16:52:39 +0200 |
commit | 9bbd0387332dd878a51271b654079263cfeee7b8 (patch) | |
tree | c3394b610287079795f9fc82b385735af19a0c7c /indra/llmessage | |
parent | 29ca8560381424adcee2f096de0e940b3d1f46b0 (diff) |
in case of systemlibs (conan right now), xmlrpc header structure is slightly different.
Diffstat (limited to 'indra/llmessage')
-rw-r--r-- | indra/llmessage/llfiltersd2xmlrpc.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llmessage/llfiltersd2xmlrpc.cpp b/indra/llmessage/llfiltersd2xmlrpc.cpp index d3e195789b..64792bd628 100644 --- a/indra/llmessage/llfiltersd2xmlrpc.cpp +++ b/indra/llmessage/llfiltersd2xmlrpc.cpp @@ -75,7 +75,13 @@ #include <sstream> #include <iterator> + +#ifdef LL_USESYSTEMLIBS +#include <xmlrpc.h> +#else #include <xmlrpc-epi/xmlrpc.h> +#endif + #include "apr_base64.h" #include "llbuffer.h" |