php 7.4 error installed

rootADMIN

Verified User
Joined
Oct 6, 2009
Messages
12
Hi.
I want to install php 7.4
I have a bug.

Code:
configure: error: Package requirements (oniguruma) were not met:
Package 'oniguruma', required by 'virtual:world', not found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables ONIG_CFLAGS
and ONIG_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
*** There was an error while trying to configure php. Check the configure file

Code:
my options.conf file / php setings:
#PHP Settings
php1_release=7.3
php1_mode=php-fpm
php2_release=7.2
php2_mode=php-fpm
php3_release=7.1
php3_mode=php-fpm
php4_release=7.4
php4_mode=php-fpm

secure_php=no
php_ini=no
php_timezone=Europe/Berlin
php_ini_type=production
x_mail_header=yes
redis=no
csf=no
new_zlib=no
 
Is it the latest version? Try:
Code:
yum -y update
yum -y install oniguruma-devel --enablerepo=powertools
 
Back
Top