Any idea why I wouldn't have this file on my system after building from sources?<br><br>-Jon<br><br><br><div class="gmail_quote">On Tue, Sep 21, 2010 at 3:04 PM, Matthias Bolte <span dir="ltr"><<a href="mailto:matthias.bolte@googlemail.com">matthias.bolte@googlemail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">2010/9/21 Jonathan Kelley <<a href="mailto:jkelley@vm-labs.com">jkelley@vm-labs.com</a>>:<br>

<div><div></div><div class="h5">> Hello,<br>
><br>
> I am trying to run ./configure --with-one --with-esx but I get the following<br>
> error:<br>
><br>
> checking pkg-config is at least version 0.9.0... yes<br>
> checking for XMLRPC... no<br>
> configure: error: You must install XMLRPC-C >= 1.14.0 to compile libvirt ONE<br>
> driver<br>
><br>
> However I have downloaded xmlrpc-c-client and built from sources version<br>
> 1.16.31<br>
><br>
> root@sa251:~/libvirt-0.8.4# xmlrpc-c-config --version<br>
> 1.16.31<br>
> root@sa251:~/libvirt-0.8.4# xmlrpc-c-config --features<br>
> c++ abyss-server curl-client<br>
><br>
><br>
> What am I missing here?<br>
><br>
<br>
</div></div>libvirt's configure script doesn't use xmlrpc-c-config to detect<br>
xmlrpc-c, it uses pkg-config:<br>
<br>
$ pkg-config --modversion xmlrpc_client<br>
1.17.7<br>
<br>
Maybe you need to explicitly set PKG_CONFIG_PATH to point to the the<br>
directory that contains xmlrpc_client.pc, for example:<br>
<br>
PKG_CONFIG_PATH=/path/to/xmlrpc-c-dir ./configure --with-one --with-esx<br>
<font color="#888888"><br>
Matthias<br>
</font></blockquote></div><br>