为了能快速了解并处理您的问题,请提供以下基础信息:
相关截图(日志、错误):checking which type to use for apr_off_t... configure: error: could not determine the size of off_t 原因是 apache.sh 中使用的apr版本太低
需要这样才行
DEBIAN_13_CHECK=$(cat /etc/os-release | grep 'VERSION_ID="13"')
UBUNTU_26_CHECK=$(cat /etc/os-release | grep 'VERSION_ID="26.04"')
if [ "${DEBIAN_13_CHECK}" ] || [ "${UBUNTU_26_CHECK}" ]; then
aprVersion="1.7.6"
aprutilVersion="1.6.3"
fi
|
|