Skip to content

Commit

Permalink
Add WebP to build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rodarima committed Nov 24, 2024
1 parent 9f9f7c3 commit 56a2ac0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
with:
fetch-depth: 1
- name: Install dependencies
run: sudo apt install -y libfltk1.3-dev libssl-dev xvfb x11-apps x11-utils imagemagick
run: sudo apt install -y libfltk1.3-dev libssl-dev libwebp-dev xvfb x11-apps x11-utils imagemagick

- name: autogen
run: ./autogen.sh
Expand Down Expand Up @@ -164,6 +164,7 @@ jobs:
fltk-dev
libpng-dev
libjpeg-turbo-dev
libwebp-dev
mbedtls-dev
- run: |
./autogen.sh
Expand Down Expand Up @@ -245,7 +246,7 @@ jobs:
fetch-depth: 1
- uses: cygwin/cygwin-install-action@master
with:
packages: gcc-core gcc-g++ autoconf automake make zlib-devel mbedtls-devel libfltk-devel libiconv-devel libpng-devel libjpeg-devel libgif-devel
packages: gcc-core gcc-g++ autoconf automake make zlib-devel mbedtls-devel libfltk-devel libiconv-devel libpng-devel libjpeg-devel libwebp-devel libgif-devel
- shell: C:\cygwin\bin\bash.exe --login --norc -eo pipefail -o igncr '{0}'
run: |
set -x
Expand Down
6 changes: 3 additions & 3 deletions doc/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
libpng-dev libjpeg-dev libwebp-dev
```

If you prefer to use mbedTLS, replace `libssl-dev` with
Expand Down Expand Up @@ -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
libiconv-devel libpng-devel libjpeg-devel libwebp-devel
```

**Note**: Dillo can also be built with OpenSSL (libssl-devel) but there is a
Expand All @@ -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,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,xorg-server,xinit
```

To build Dillo, follow the usual steps from a Cygwin shell:
Expand Down

0 comments on commit 56a2ac0

Please sign in to comment.