无法在 ubuntu 13.10 上手动配置 apache httpd 2.4.12

Unable to manually configure apache httpd 2.4.12 on ubuntu 13.10

我需要在 ubuntu 13.10 上手动安装 apache httpd 2.4.12。由于某些原因,我无法使用 apt-get install。

按照安装httpd的说明,依次执行以下命令

  1. 解压缩下载的安装
  2. 导航到安装所在的文件夹,直到 bin 文件夹
  3. 在 bin 文件夹中使用所需的参数执行 ./configure。
  4. make(此处出现错误,无法继续)
  5. 进行安装

当我执行 make 命令时,我得到这个错误

**make: *** No targets specified and no makefile found.  Stop.**

任何人都知道我哪里出错了。

你要么是

  1. 在错误的文件夹中(没有 Makefile

  2. 未能正确./configure(有错误吗?)

configure 负责生成 Makefile。如果您没有成功配置(也许您缺少编译所需的一些库?)那么您将不会获得 Makefiles 并且无法调用 make.

从不 忽略错误。毕竟,它们是错误的。他们会回来咬你的。