源码安装禅道-php源码编译安装

编译安装php开启模块

./configure \
--prefix=/usr/local/php \
--with-config-file-path=/etc \
--with-iconv \
--with-zlib-dir \
--with-curl \
--enable-mbstring \
--with-openssl \
--with-gd \
--with-pdo-mysql \
--enable-filter \
--enable-json \
--enable-cgi

缺少php.h报如下错误

configure: error: png.h not found.

原因:开启了gd模块
解决:安装相关包

sudo apt-get install libpng-dev

缺少evp.h 报如下错误

Cannot find OpenSSL's evp.h 

原因:openSSL需要一些其他包来支持
解决:看我的另一篇文章Cannot find OpenSSL’s evp.h

你可能感兴趣的:(服务器部署)