apache1.3编译安装configure出错解决方法

来源:互联网 发布:淘宝客服几点上班 编辑:程序博客网 时间:2024/04/30 22:03
apache1.3编译安装configure出错解决方法

 

ubuntu下编译安装apache1.3.37时出错,在ubuntu下大家用惯了apt-get可能很少会有这种
问题.
今天遇到了还是拿出来,也许以后会有类似的安装问题

Linux系统版本ubuntu7.04,不知道其他版本有没有这个问题
apache版本1.3.37
编译安装第一步./configure的时候会报错

+ Warning: Configuring Apache with default settings.
+ This is probably not what you really want.
+ Please read the README.configure and INSTALL files
+ first or at least run './configure --help' for
+ a compact summary of available options.
+ Warning: Your 'echo' command is slightly broken.
+ It interprets escape sequences per default. We already
+ tried 'echo -E' but had no real success. If errors occur
+ please set the SEO variable in 'configure' manually to
+ the required 'echo' options, i.e. those which force your
+ 'echo' to not interpret escape sequences per default.
+ using installation path layout: Apache (config.layout)

错误原因是echo 输出转义字符有问题

解决方法很简单
vi configure

#!/bin/sh => #!/bin/bash