summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-02-24 18:00:36 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2019-02-24 19:01:22 +0100
commit0d3305b4b8ea983b075001a2adf8ec72947b4fe2 (patch)
treea12995d968252fd14bad729ebcc987cf3e511581 /media-sound/helm/files
parentapp-office/libalkimia: Add USE gmp, EAPI-7 bump (diff)
downloadgentoo-0d3305b4b8ea983b075001a2adf8ec72947b4fe2.tar.gz
gentoo-0d3305b4b8ea983b075001a2adf8ec72947b4fe2.tar.bz2
gentoo-0d3305b4b8ea983b075001a2adf8ec72947b4fe2.zip
media-sound/helm: Drop 0.4.1-r2
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/helm/files')
-rw-r--r--media-sound/helm/files/helm-0.4.1-gcc6.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/media-sound/helm/files/helm-0.4.1-gcc6.patch b/media-sound/helm/files/helm-0.4.1-gcc6.patch
deleted file mode 100644
index d71587296b92..000000000000
--- a/media-sound/helm/files/helm-0.4.1-gcc6.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 9a94165d8c400e45d617bf2d7cb657a477f43915 Mon Sep 17 00:00:00 2001
-From: Hodorgasm <nsane457@gmail.com>
-Date: Tue, 20 Sep 2016 17:33:14 -0400
-Subject: [PATCH] Assume there exists lround if compiling with g++ in C++11 or
- later
-
-GCC-6 doesn't define HAVE_LROUND, but lround is valid in C++ in dialects >= c++11.
----
- JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c b/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c
-index 87e2321e6..512b8279c 100644
---- a/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c
-+++ b/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c
-@@ -50,7 +50,7 @@
-
- #ifndef FLAC__INTEGER_ONLY_LIBRARY
-
--#if !defined(HAVE_LROUND)
-+#if (!defined(__GNUC__) && !defined(HAVE_LROUND)) || __cplusplus < 201103L
- #if defined(_MSC_VER)
- #include <float.h>
- #define copysign _copysign