问题复现:
在编译php的时候,报错:
checking for cURL 7.15.5 or greater… configure: error: cURL version 7.15.5
问题解决
[root@xinsz08 php-7.3.6]# yum -y install curl-devel
然后重新编译即可:
[root@xinsz08 php-7.3.6]# './configure' '--prefix=/app/php' '--with-pdo-pgsql' '--with-zlib-dir' '--with-freetype-dir' '--enable-mbstring' '--with-libxml-dir=/root/data/php-7.3.6/ext/libxml' '--enable-soap' '--enable-calendar' '--with-curl' '--with-mcrypt' '--with-gd' '--with-pgsql' '--disable-rpath' '--enable-inline-optimization' '--with-bz2' '--with-zlib' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-pcntl' '--enable-mbregex' '--with-freetype-dir=/usr/include/freetype2/freetype ' '--enable-exif' '--enable-bcmath' '--with-mhash' '--enable-zip' '--with-pcre-regex' '--with-pdo-mysql' '--with-mysqli' '--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--with-openssl' '--with-fpm-user=zmedu' '--with-fpm-group=zmedu' '--with-libdir=/lib/x86_64-linux-gnu/' '--enable-ftp' '--with-gettext' '--with-xmlrpc' '--with-xsl' '--enable-opcache' '--enable-fpm' '--with-iconv' '--with-xpm-dir=/usr' '--with-apxs2=/app/httpd24/bin/apxs'
zmedu 20200723 -阿里云网站更新