diff options
Diffstat (limited to 'media-sound/snapcast/files/snapcast-0.29.0-resampler-include.patch')
-rw-r--r-- | media-sound/snapcast/files/snapcast-0.29.0-resampler-include.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/media-sound/snapcast/files/snapcast-0.29.0-resampler-include.patch b/media-sound/snapcast/files/snapcast-0.29.0-resampler-include.patch new file mode 100644 index 000000000000..296a5d61db86 --- /dev/null +++ b/media-sound/snapcast/files/snapcast-0.29.0-resampler-include.patch @@ -0,0 +1,25 @@ +https://github.com/badaix/snapcast/commit/f6ce4f3fbb3c797f5d92578d7bc8df547ad4cd64 + +From f6ce4f3fbb3c797f5d92578d7bc8df547ad4cd64 Mon Sep 17 00:00:00 2001 +From: Johannes Pohl <johannes.pohl@badaix.de> +Date: Wed, 11 Dec 2024 15:50:11 +0100 +Subject: [PATCH] Add missing include in resampler.cpp + +This fixes issue #1295 +--- + common/resampler.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/common/resampler.cpp b/common/resampler.cpp +index 1d5d698a..9548c957 100644 +--- a/common/resampler.cpp ++++ b/common/resampler.cpp +@@ -21,6 +21,7 @@ + + // local headers + #include "common/aixlog.hpp" ++#include "common/snap_exception.hpp" + + // standard headers + #include <cmath> + |