我正在尝试遵循本指南 - http://www.helping-squad.com/nginx-rtmp-compile-for-windows/
为 Windows 编译 nginx rtmp,但是当我尝试执行nmake -f objs/Makefile
时,它会给出一个错误,即 -NMAKE : fatal error U1052: file 'Makefile' not found
并且之前的调用也会给出一个错误。
代码
auto/configure --with-cc=cl --builddir=objs --prefix= --conf-path=conf/nginx.conf --pid-path=temp/nginx.pid --http-log-path=logs/access.log --error-log-path=logs/error.log --sbin-path=nginx.exe --http-client-body-temp-path=temp/client_body_temp --http-proxy-temp-path=temp/proxy_temp --http-fastcgi-temp-path=temp/fastcgi_temp --http-uwsgi-temp-path=temp/uwsgi_temp --http-scgi-temp-path=temp/scgi_temp --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs/lib/pcre2-10.21 --with-zlib=objs/lib/zlib-1.2.8 --with-openssl=objs/lib/openssl-1.0.1s --with-select_module --with-http_ssl_module --add-module=objs/lib/nginx-rtmp-module-master
错误-auto/configure: error: no objs/lib/nginx-rtmp-module-master/config was found
即使目录中有一个配置文件。
所以我读到了类似的东西——新版本的 nginx 不需要单独的 rtmp-module-master,所以我从代码中删除了它,它编译得很好。