citykings / netsound

0 stars 0 forks source link

The problem of compile installation php-7.4 #7

Open citykings opened 2 years ago

citykings commented 2 years ago

the problems and solutions recorded during compile installation 7.4

1)libxml libzip devel in this step. Because the version is low

php7.4.1 configure: error: Package requirements (libxml-2.0 >= 2.7.6) were not met: 1. 2)libcurl the version is low

3)openssl the version is low (openssl >= 1.0.1) were not met: 1. 4)Q: sqlite、oniguruma

error: Package requirements (sqlite3 > 3.7.4) were not met

No module named ‘_sqlite3′ No package ‘oniguruma‘ found

A:
sqlite : yum install libsqlite3x-devel -y

oniguruma: yum install -y oniguruma oniguruma-devel

or

wget https://github.com/kkos/oniguruma/releases/download/v6.9.5_rev1/onig-6.9.5-rev1.tar.gz -O onig-6.9.5.tar.gz tar -zxvf onig-6.9.5.tar.gz cd onig-6.9.5/ autoreconf -vfi ./configure make && make install

citykings commented 2 years ago

yum -y install http://mirror.centos.org/centos-7/7.7.1908/cloud/x86_64/openstack-queens/oniguruma-6.7.0-1.el7.x86_64.rpm yum -y install http://mirror.centos.org/centos-7/7.7.1908/cloud/x86_64/openstack-queens/oniguruma-devel-6.7.0-1.el7.x86_64.rpm