<html><head>

<style>blockquote.cite
{margin-left: 5px; margin-right: 0px; padding-left: 10px; padding-right: 0px; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);}
blockquote.cite2
{margin-left: 5px; margin-right: 0px; padding-left: 10px; padding-right: 0px; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); margin-top: 3px; padding-top: 0px;}
a img
{border: 0px;}
body
{font-family: Tahoma; font-size: 12pt;}
</style>
</head>
<body background=""><div><span>When running the following command I ended up getting errors that phpize was missing. Trying to dig into this further i found that configure.ac was just trying to run php-config without providing a path.  The following patch corrects the issue by using the $PHPCONFIG variable instead.</span></div><div><span><br></span></div><div><span>./configure --prefix=/opt/libvirt-php --with-php-config=/path/to/php-config`</span></div><div><br></div><div>diff --git a/configure.ac b/configure.ac<br>index f232756..d93e946 100644<br>--- a/configure.ac<br>+++ b/configure.ac<br>@@ -159,7 +159,7 @@ if test "x$PHPCONFIG" = "xno"; then<br>     AC_MSG_ERROR([php-config not found; please install the PHP SDK])<br> fi<br><br>-AC_PATH_PROG([PHPIZE], [phpize], [no], [`php-config --prefix`/bin$PATH_SEPARATOR$PATH])<br>+AC_PATH_PROG([PHPIZE], [phpize], [no], [`$PHPCONFIG --prefix`/bin$PATH_SEPARATOR$PATH])<br> if test "x$PHPIZE" = "xno"; then<br>     AC_MSG_ERROR([phpize not found; please install the PHP SDK])<br> fi</div><div><br></div><div><br></div><div id="signature_old"><div style="FONT-SIZE: 12pt; FONT-FAMILY: Tahoma">
<div>--</div>
<div>Shaun Reitan</div>
<div>Network Data Center Host, Inc.</div></div></div><div><br></div>
</body></html>