mysqli doesn't install headers with structures it uses
[2010-08-20 12:29 UTC] andrey@php.net
Description: ------------ mysqli declares in php_mysqli_structs.h structures which internally are used. One of these is MY_MYSQL. However, if another extension wants to make use of a mysqli object it has no chance to decode it, because php_mysqli_structs.h is not installed. Expected result: ---------------- Split php_mysqli_structs.h in two header files : one really public and one private. Install the public one.