Resolved..
Got this from Cpanel Staff
Changing print "1" to print "0" in /home/cpapachebuild/buildapache/checkmysqli and then running the bs script from that directory should allow this to work for you.
Code:
#!/usr/bin/perl
my $mv = `/usr/bin/mysql --version 2>/dev/null`;
if ($mv eq "") {
$mv = `/usr/local/bin/mysql --version 2>/dev/null`;
};
$mv =~ /[\s\t]+4\.(\d+)/;
my $subver = $1;
if ($subver eq "1" || $mv =~ /[\s\t]+5\.\d+\./) {
print "0"; # this is what I changed and it still did not work...
exit;
} else {
print "0";
exit;
}
run ./buildapache to make sure your using 5.0
then
./buildscript