Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update POSIX doc and correct FreeBSD installation supported versions warning #476

Merged
merged 1 commit into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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