diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-08 22:45:29 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-08 22:45:29 +0200 |
commit | 38e108ea70b2022a58468e64cff2899d3f409868 (patch) | |
tree | c9265eadedf27c84379d9dc22b8de87e206f9b08 /doc/install.md | |
parent | 54fe81fc60ce84d5740041c43ce9bcc1e8bb6693 (diff) |
Add Debian packages to install instructions
Diffstat (limited to 'doc/install.md')
-rw-r--r-- | doc/install.md | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/doc/install.md b/doc/install.md index 4830bb33..3cbf418c 100644 --- a/doc/install.md +++ b/doc/install.md @@ -28,7 +28,19 @@ If you don't want to use a TLS library, use the configure option and `--disable-mbedtls` to control the search. By default OpenSSL is search first, then mbedTLS. -Then, to build and install Dillo: +For Debian, you can use the following command to install the required +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 libgif-dev +``` + +If you prefer to use mbedTLS, replace `libssl-dev` with +`libmbedtls-dev`. + +To build and install Dillo follow the steps below. ### From a release |