Skip to content

Commit

Permalink
Update POSIX doc and corrected FreeBSD installation supported version…
Browse files Browse the repository at this point in the history
…s warning (#476)
  • Loading branch information
dnzbk authored Dec 23, 2024
1 parent e5cbe71 commit 82c9602
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions docs/POSIX.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,17 @@ download the libraries at the given URLs and compile them (see hints below).

### Debian:
```
apt install cmake build-essential libncurses-dev libssl-dev libxml2-dev zlib1g-dev libboost-json1.81-dev
apt install cmake build-essential libncurses-dev libssl-dev libxml2-dev zlib1g-dev
```
- For tests:
- Debian 12 (bookworm)
```bash
apt install libboost-json1.81-dev
apt install libboost-test1.81-dev #(optional: for testing)
```
apt install libboost-test1.81-dev
- Debian 13 (trixie)
```bash
apt install libboost-json-dev
apt install libboost-test-dev #(optional: for testing)
```
- For static code analysis:
```
Expand Down
2 changes: 1 addition & 1 deletion linux/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ PrintHelp()
Info "This installer supports Linux kernel 2.6 or newer and the following CPU architectures:"
fi
if test "$PLATFORM" = "freebsd"; then
Info "This installer supports FreeBSD 9.1 or newer and the following CPU architectures:"
Info "This installer supports FreeBSD 13 or newer and the following CPU architectures:"
fi
PrintArch "i686" " i686 - x86, 32 or 64 Bit"
PrintArch "x86_64" " x86_64 - x86, 64 Bit"
Expand Down

0 comments on commit 82c9602

Please sign in to comment.