Skip to content

Commit

Permalink
docker: install libpango1.0-dev (fix rendering) (#16)
Browse files Browse the repository at this point in the history
In a shell I installed libcairo and rebuilt. No change when I ran
demo-js.xml. Installing libpango fixed it though.
  • Loading branch information
andy5995 authored Nov 24, 2024
1 parent 612d24e commit 330bf4e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ RUN \
curl \
freeglut3-dev \
git \
libpango1.0-dev \
libpng-dev \
libsqlite3-0 \
libsqlitecpp-dev \
Expand Down
6 changes: 5 additions & 1 deletion docs/for-developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ In addition to that, this repo makes use of:
- [swiftc](https://www.swift.org/documentation/swift-compiler/) barely used for now, but many of the native components shipped within `vs` will be written in swift (or so I am planning). Swift 6 will be needed, but for now any version will do.

For now, you will need to install [some dependencies](https://github.com/fltk/fltk/blob/master/README.Unix.txt) to support FLTK.
Specifically `libpng-dev` & `libglu1-mesa-dev` are likely missing on most distributions.
Specifically, the following are likely missing on most distributions:

- **libpng-dev**
- **libglu1-mesa-dev**
- **libpango1.0-dev**

There are also some more or less optional dependencies:

Expand Down

0 comments on commit 330bf4e

Please sign in to comment.