LINUX下编译Nginx出现WARNING: 'aclocal-1.14' is missing on your system错误的解决办法
今天在Ubuntu下编译了下nginx,openssl直接使用apt-get install libssl-dev安装的Openssl库,在配置完进行编译nginx时,在进入到pcre目录下进行编译时出现了警告WARNING: 'aclocal-1.14' is missing on your system,虽然是警告,但是编辑无法向下进行了,只能进行上网搜索,最后发现可能缺少了如下几个程序:au
WARNING: 'aclocal-1.14' is missing on your system,虽然是警告,但是编辑无法向下进行了,只能进行上网搜索,最后发现可能缺少了如下几个程序:autotools-dev; automake; m4.
安装这几个程序后再进行make即可成功编译通过。
贴下我的配置:
./configure --builddir=build --conf-path=conf/nginx.conf --pid-path=logs/nginx.pid --http-log-path=logs/access.log --error-log-path=logs/error.log --http-client-body-temp-path=temp/client_body_temp --http-proxy-temp-path=temp/proxy_temp --http-fastcgi-temp-path=temp/fastcgi_temp --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=../pcre --with-zlib=../zlib --with-select_module --with-http_ssl_module --with-http_sub_module
更多推荐
所有评论(0)