Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Novak <jnovak@skedulo.com>2022-05-17 02:23:01 +0300
committerkcgen <1557255+kcgen@users.noreply.github.com>2022-05-22 05:50:08 +0300
commit2eae4273b4c66e538ea0f5231260a8c301c95517 (patch)
treeb8f42a8e977a239261fe0491e93d7655986cbbb9 /README.md
parentf490505b2adbe4707423ffc64c4c455b10c6c13c (diff)
Replace linear-interpolation resampler with SpeeX
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md
index ccf4ab05d..c5207d0c0 100644
--- a/README.md
+++ b/README.md
@@ -159,7 +159,7 @@ sudo dnf install ccache gcc-c++ meson alsa-lib-devel libpng-devel \
# Debian, Ubuntu
sudo apt install ccache build-essential libasound2-dev libpng-dev \
libsdl2-dev libsdl2-net-dev libopusfile-dev \
- libfluidsynth-dev libslirp-dev
+ libfluidsynth-dev libslirp-dev libspeexdsp-dev
# Install Meson on Debian-10 "Buster" or Ubuntu-20.04 and older
sudo apt install python3-setuptools python3-pip
@@ -172,20 +172,21 @@ sudo apt install meson
``` shell
# Arch, Manjaro
sudo pacman -S ccache gcc meson alsa-lib libpng sdl2 sdl2_net opusfile \
- fluidsynth libslirp
+ fluidsynth libslirp speexdsp
```
``` shell
# openSUSE
sudo zypper install ccache gcc gcc-c++ meson alsa-devel libpng-devel \
libSDL2-devel libSDL2_net-devel opusfile-devel \
- fluidsynth-devel libmt32emu-devel libslirp-devel
+ fluidsynth-devel libmt32emu-devel libslirp-devel \
+ speexdsp
```
``` shell
# macOS
xcode-select --install
-brew install ccache meson libpng sdl2 sdl2_net opusfile fluid-synth libslirp
+brew install ccache meson libpng sdl2 sdl2_net opusfile fluid-synth libslirp speexdsp
```
### Build and stay up-to-date with the latest sources
@@ -237,7 +238,7 @@ is bootstrapped, open PowerShell and run:
``` powershell
PS:\> .\vcpkg integrate install
-PS:\> .\vcpkg install --triplet x64-windows libpng sdl2 sdl2-net libmt32emu opusfile fluidsynth gtest
+PS:\> .\vcpkg install --triplet x64-windows libpng sdl2 sdl2-net libmt32emu opusfile fluidsynth gtest speexdsp
```
These two steps will ensure that MSVC finds and links all dependencies.