From b4b16ada274ac2d21b2c6fb07c40043bee9fdadc Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Thu, 7 Mar 2019 18:59:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=89=E8=A3=85=E6=96=87=E4=BB=B6=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/php/versions/53/install.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 ------------------------------------# }