Skip to content

Commit

Permalink
Pin FLTK to 1.3 in homebrew
Browse files Browse the repository at this point in the history
Homebrew has updated the default version of FLTK to 1.4, which is
causing rendering issues in Dillo. So for now, we build with FLTK 1.3 by
pinning it.

See: Homebrew/homebrew-core#198029
See: #246
  • Loading branch information
rodarima committed Nov 27, 2024
1 parent 56a2ac0 commit f78fddd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,17 +180,21 @@ jobs:
with:
fetch-depth: 1
- name: Install dependencies
run: brew install autoconf automake fltk
run: brew install autoconf automake fltk@1.3
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure --disable-mbedtls
run: |
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
./configure --disable-mbedtls
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
run: |
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
make distcheck
macOS-13-openssl-3:
needs: ubuntu-latest-html-tests
runs-on: macos-13
Expand All @@ -201,17 +205,21 @@ jobs:
- name: Remove old OpenSSL 1.1
run: brew uninstall [email protected]
- name: Install dependencies
run: brew install autoconf automake fltk openssl@3
run: brew install autoconf automake fltk@1.3 openssl@3
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure --disable-mbedtls
run: |
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
./configure --disable-mbedtls
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
run: |
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
make distcheck
freebsd-14-openssl-3:
needs: ubuntu-latest-html-tests
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion doc/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ autoconf and automake if you are building Dillo from the git repository.
They are available in the Homebrew package manager:

```
$ brew install autoconf automake fltk
$ brew install autoconf automake fltk@1.3
```

For OpenSSL you can use either 1.1 or 3.X (recommended):
Expand Down

0 comments on commit f78fddd

Please sign in to comment.