forked from pool/audacity
Dave Plater
fac9ee7869
- Update to version 3.0.4 - Add git patches: 0001-Adds-an-option-to-disable-Conan.patch, 0001-Scope-libraries-required-by-the-optional-features.patch 0001-Fixes-wxwidgets-fixup-script.patch - Added patch adapted from git, Fixes-GCC11-compatibility.patch - Removed obsolete patches, audacity-remove-wx-test.patch and b4b5cc8.patch - Upstream changes: *This is a hotfix release that fixes a bug with envelope points, which could multiply uncontrollably and cause Audacity to crash. *In particular: #1476: Envelope points are multiplied when using Filter Curve EQ or Graphic EQ #1477: Filter Curve EQ will crash if there is an envelope point outside of the selection *This fix re-introduces an earlier, but way less destructive bug: bugzilla 208 / #1500: Some effects delete Envelope Control Points or do not move them when timeline changes *Other than that, this release is identical to Version 3.0.3. OBS-URL: https://build.opensuse.org/request/show/914616 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=167
17 lines
486 B
Diff
17 lines
486 B
Diff
From: Dave Plater davejplater@gmail.com
|
|
Date: Fri 27 Aug 15:03:07 SAST 2021
|
|
Subject: [PATCH] Fix build by adding #include <limits>
|
|
|
|
---Index: b/libraries/lib-utility/MemoryX.h
|
|
===================================================================
|
|
--- a/libraries/lib-utility/MemoryX.h 2021-08-18 12:21:37.000000000 +0200
|
|
+++ b/libraries/lib-utility/MemoryX.h 2021-08-27 07:52:26.723479327 +0200
|
|
@@ -10,6 +10,7 @@
|
|
#endif
|
|
|
|
#include <functional>
|
|
+#include <limits>
|
|
|
|
/*
|
|
* ArrayOf<X>
|