Hey Nikolaos,
I was able to reproduce your exact error and find a solution that should
meet your needs, using the current Rocky Linux 8 container image from
https://hub.docker.com/_/rockylinux with the image id of c79048e50f5f.
My solution in short: Install the package `brotli-devel`.
Here are the exact shell commands, which made your final `make modules`
command succeed for me:
docker run -it rockylinux:8 bash
dnf makecache
dnf install -y git wget gcc make pcre2-devel zlib-devel brotli-devel
cd / && git clone https://github.com/google/ngx_brotli.git
cd ngx_brotli && git submodule update --init && cd /
wget https://nginx.org/download/nginx-1.27.1.tar.gz && tar zxvf
nginx-1.27.1.tar.gz
cd nginx-1.27.1
./configure --with-compat --add-dynamic-module=../ngx_brotli
make modules
Hope this helps :)
Kind regards,
Kevin | CompileNix
On 3/9/2024 9:57 μ.μ., Kevin Weis via nginx wrote:
> ...
> I was able to reproduce your exact error and find a solution that
> should meet your needs, using the current Rocky Linux 8 container
> image from https://hub.docker.com/_/rockylinux with the image id of
> c79048e50f5f.
>
> My solution in short: Install the package `brotli-devel`.
> ...
Hi Kevin,
You are the man! Yes, it works this way!
I am wondering (sorry if the question is naive): Since I am compiling
from source, shouldn't the source code include all necessary modules?
Why an OS package (brotli-devel) should be required?
If the source code does not include some required modules, could /
should we clone some additional code from brotli git to generate the
modules instead of using brotli-devel package?
I am asking because I fear (possibly falsely) that at some point
brotli-devel and brotli source might belong to different software
versions and thus the compilation might then be impossible or generate
inoperative modules.
Thanks a lot for your kind help.
Cheers,
Nick
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 4466 bytes
Desc: S/MIME Cryptographic Signature
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20240903/041c4a20/attachment.bin>
Hi Nikolas,
On Tue, Sep 03, 2024 at 10:48:30PM +0300, Nikolaos Milas via nginx wrote:
> On 3/9/2024 9:57 μ.μ., Kevin Weis via nginx wrote:
> > ...
> > I was able to reproduce your exact error and find a solution that should
> > meet your needs, using the current Rocky Linux 8 container image from
> > https://hub.docker.com/_/rockylinux with the image id of c79048e50f5f.
> >
> > My solution in short: Install the package `brotli-devel`.
> > ...
>
> You are the man! Yes, it works this way!
Great!
> I am wondering (sorry if the question is naive): Since I am compiling from
> source, shouldn't the source code include all necessary modules? Why an OS
> package (brotli-devel) should be required?
>
> If the source code does not include some required modules, could / should we
> clone some additional code from brotli git to generate the modules instead
> of using brotli-devel package?
1. The brotli modules isn't a part of official nginx distribution, so
you may want to address that question to the module's vendor.
2. It's definitely true that the way you've tried to build the brotli
module supports only to two native things:
- pcre
- openssl
3. For other native nginx modules, a build of nginx requires additional
frameworks (headers and libraries) to build a module, as an example
please the following the next page:
https://nginx.org/en/docs/http/ngx_http_xslt_module.html
Hope that helps.
--
Sergey A. Osokin