Linux

在 linux 伺服器上建構 apache

  • March 21, 2020

我從https://ftp.pcre.org/pub/pcre/pcre2-10.34.tar.gz下載了 pcre並將其解壓縮到 /usr/local/lib

當我跑步時

./configure --with-included-apr --with-pcre=/usr/local/lib/pcre2-10.34

我收到以下錯誤

配置:錯誤:未在 /usr/local/lib/pcre2-10.34 找到 pcre-config 腳本

yum install pcre-devel -y

修復了這個問題,缺少開發(開發)包。

引用自:https://unix.stackexchange.com/questions/573634