Hi there,
I have found an errorin the ./configure file for rlib
when compiling it with php support. Basically, there is
a check for --enable-php or --disable-php which sets
the variable $enable_php to the string "yes".
Later though, this variable is compared against the
string "xyes", causing php support never to be
compiled. The solution was simple, replace "xyes" with
"yes"
Sven Oostenbrink