diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-04-06 00:00:48 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-04-06 21:49:49 +0200 |
commit | e1ac98f67084fe6323490ae36001e7767b3e80e3 (patch) | |
tree | d41fe3f416f5127e764e7701fb93bd5b1d547e78 /doc/install.md | |
parent | b804f4a6a3950fb13342e687acfa51b5c2157625 (diff) |
Add brotli support
Implements support for brotli (br) content encoding.
Fixes: https://github.com/dillo-browser/dillo/issues/377
Diffstat (limited to 'doc/install.md')
-rw-r--r-- | doc/install.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/install.md b/doc/install.md index 7a0250eb..c26365af 100644 --- a/doc/install.md +++ b/doc/install.md @@ -35,7 +35,7 @@ packages to build Dillo: ```sh $ sudo apt install gcc g++ autoconf automake make zlib1g-dev \ libfltk1.3-dev libssl-dev libc6-dev \ - libpng-dev libjpeg-dev libwebp-dev + libpng-dev libjpeg-dev libwebp-dev libbrotli-dev ``` If you prefer to use mbedTLS, replace `libssl-dev` with @@ -170,7 +170,7 @@ will need the following dependencies to build Dillo with mbedTLS: ``` gcc-core gcc-g++ autoconf automake make zlib-devel mbedtls-devel libfltk-devel -libiconv-devel libpng-devel libjpeg-devel libwebp-devel +libiconv-devel libpng-devel libjpeg-devel libwebp-devel libbrotli-devel ``` **Note**: Dillo can also be built with OpenSSL (libssl-devel) but there is a @@ -187,7 +187,7 @@ xorg-server xinit You can also install all the dependencies from the command line with: ``` -setup-x86_64.exe -q -P gcc-core,gcc-g++,autoconf,automake,make,zlib-devel,mbedtls-devel,libfltk-devel,libiconv-devel,libpng-devel,libjpeg-devel,libwebp-devel,xorg-server,xinit +setup-x86_64.exe -q -P gcc-core,gcc-g++,autoconf,automake,make,zlib-devel,mbedtls-devel,libfltk-devel,libiconv-devel,libpng-devel,libjpeg-devel,libwebp-devel,libbrotli-devel,xorg-server,xinit ``` To build Dillo, follow the usual steps from a Cygwin shell: |