I get the same error as in this question on a oracle linux 8.7. I have tried all the sugested solutions but i'm still getting the same error.
Apache installation; libpcre error
any idea what I can do?
Download PCRE from PCRE.org
Compile it with a prefix and install it:
./configure --prefix=/usr/local/pcre
make
make install
- Go back to where your Apache installation is and compile Apache with PCRE:
--with-pcre=/usr/local/pcre
I tried this same error message. then I tried this:
sudo yum install pcre-devel
with the same result.