diff --git a/plugins/php/versions/53/install.sh b/plugins/php/versions/53/install.sh index c956376c9..cc0d18da7 100755 --- a/plugins/php/versions/53/install.sh +++ b/plugins/php/versions/53/install.sh @@ -56,6 +56,7 @@ cd $sourcePath/php/php-5.3.29 && ./configure \ --enable-mysqlnd \ --without-iconv \ --enable-zip \ +--enable-sockets \ --enable-mbstring \ --enable-ftp \ --enable-wddx \ @@ -64,6 +65,15 @@ cd $sourcePath/php/php-5.3.29 && ./configure \ --enable-fpm \ && make && make install && make clean + +if [ -f $serverPath/php/53/bin/php.dSYM ];then + mv $serverPath/php/53/bin/php.dSYM $serverPath/php/53/bin/php +fi + +if [ -f $serverPath/php/53/sbin/php-fpm.dSYM ];then + mv $serverPath/php/53/sbin/php-fpm.dSYM $serverPath/php/53/sbin/php-fpm +fi + #------------------------ install end ------------------------------------# }