에러발생
configure: error: Package requirements (libsystemd >= 209) were not met:
해결
1 |
[root@localhost php-7.4.29]# yum -y install systemd-devel |
에러발생
configure: error: Package requirements (sqlite3 > 3.7.4) were not met:
해결
1 |
yum -y install sqlite-devel |
에러발생
configure: error: Package requirements (libcurl >= 7.15.5) were not met:
해결
1 |
[root@localhost php-7.4.29]# yum -y install libcurl-devel |
에러발생
configure: error: Package requirements (enchant) were not met:
No package ‘enchant’ found
1 |
[root@localhost php-7.4.29]# yum -y install enchant enchant-devel |
에러발생
configure: error: GNU MP Library version 4.2 or greater required.
해결
1 |
[root@localhost php-7.4.29]# yum -y install gmp-devel |
에러발생
configure: error: Package requirements (icu-uc >= 50.1 icu-io icu-i18n) were not met:
해결
1 |
[root@localhost php-7.4.29]# yum -y install libicu-devel |
에러발생
configure: error: Package requirements (oniguruma) were not met:
No package ‘oniguruma’ found
해결
1 |
[root@localhost php-7.4.29]# yum -y install oniguruma-* |
에러발생
configure: error: Please reinstall readline – I cannot find readline.h
해결
1 |
[root@localhost php-7.4.29]# yum -y install readline-devel |