Fixed issues and sockets

This commit is contained in:
Shoghi Cervantes Pueyo 2013-01-04 16:04:06 +01:00
parent 284daff67f
commit 38eed99789
2 changed files with 4 additions and 3 deletions

View File

@ -62,6 +62,7 @@ cd ../
--with-mysql \
--with-mcrypt \
--with-zlib \
--enable-sockets \
--enable-pthreads \
--enable-maintainer-zts
make
@ -70,4 +71,4 @@ make install
cd $DIR
rm -r -f install_data/
rmdir install_data/
cd php5
echo "[INFO] Compilation Completed!"

View File

@ -1,8 +1,8 @@
#!/bin/bash
DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
if [ -f php5/bin/php ] then
php5/bin/php -d enable_dl=On PocketMine-MP.php
if [ -f php5/bin/php ]; then
./php5/bin/php -d enable_dl=On PocketMine-MP.php
exit 0
fi
php -d enable_dl=On PocketMine-MP.php