Added PocketMine native extension version 0.0.1

This commit is contained in:
Shoghi Cervantes 2014-04-08 22:08:35 +02:00
parent 9fcbe2698a
commit 71737c3e53
2 changed files with 7 additions and 2 deletions

View File

@ -9,7 +9,7 @@ READLINE_VERSION="6.3"
NCURSES_VERSION="5.9"
PHPNCURSES_VERSION="1.0.2"
PTHREADS_VERSION="2.0.4"
PHP_POCKETMINE_VERSION="2c4dc6a9de5a4c746aa80cc3019996d9b8d12b78"
PHP_POCKETMINE_VERSION="0.0.1"
UOPZ_VERSION="2.0.3"
WEAKREF_VERSION="0.2.2"
PHPYAML_VERSION="1.1.1"

View File

@ -325,7 +325,12 @@ namespace pocketmine {
}
if(!extension_loaded("uopz")){
console("[NOTICE] Couldn't find the uopz extension. Some functions may be limited", true, true, 0);
//console("[NOTICE] Couldn't find the uopz extension. Some functions may be limited", true, true, 0);
}
if(extension_loaded("pocketmine") and version_compare(phpversion("pocketmine"), "0.0.1") < 0){
console("[ERROR] You have the native PocketMine extension, but your version is lower than 0.0.1.", true, true, 0);
++$errors;
}
if(!extension_loaded("curl")){