Removed Math_BigInteger dependency

This commit is contained in:
Shoghi Cervantes Pueyo
2013-02-15 20:04:21 +01:00
parent 39df588dd9
commit b3db08a370
6 changed files with 22 additions and 3646 deletions

View File

@ -80,6 +80,11 @@ if(!extension_loaded("zlib") and @dl((PHP_SHLIB_SUFFIX === "dll" ? "php_":"") .
++$errors;
}
if(!extension_loaded("gmp") and @dl((PHP_SHLIB_SUFFIX === "dll" ? "php_":"") . "gmp." . PHP_SHLIB_SUFFIX) === false){
console("[ERROR] Unable to find GMP extension", true, true, 0);
++$errors;
}
if($errors > 0){
exit(1); //Exit with error
}