(1)进入 Apache httpd 2.4.57 源代码目录,找到 pre_check.sh 文件。
(2)打开 pre_check.sh 文件并找到以下代码:
AC_MSG_NOTICE([checking if the source is ready for building and installation])
(3)将该行代码注释掉(在前面加上 # 号)。
(4)保存并退出 pre_check.sh 文件,并重新执行 ./configure 和 make 命令。
(1)进入 Apache httpd 2.4.57 源代码目录,找到 configure 文件。
(2)打开 configure 文件并找到以下代码:
AC_MSG_CHECKING([whether the source is ready for building and installation])
(3)将该行代码注释掉(在前面加上 # 号)。
(4)保存并退出 configure 文件,并重新执行 ./configure 和 make 命令。
经过以上步骤,应该能够解决 Apache httpd 2.4.57 源代码预检时出错的问题。