summaryrefslogtreecommitdiff
path: root/pcr/helm/sigemptyset.patch
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-01-25 07:16:10 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-01-25 08:33:25 +0100
commit3be9852b6fde22282bf615102c5d79ede26eb395 (patch)
tree56b5f76e6eacbc1b63c361c9ed4825a8f6752a9e /pcr/helm/sigemptyset.patch
parent4ba771bb1d8bd3ee9c08f2ba65b3b3b615377b67 (diff)
downloadabslibre-3be9852b6fde22282bf615102c5d79ede26eb395.tar.gz
abslibre-3be9852b6fde22282bf615102c5d79ede26eb395.tar.bz2
abslibre-3be9852b6fde22282bf615102c5d79ede26eb395.zip
pcr/helm: updated to 0.9.0
Diffstat (limited to 'pcr/helm/sigemptyset.patch')
-rw-r--r--pcr/helm/sigemptyset.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/pcr/helm/sigemptyset.patch b/pcr/helm/sigemptyset.patch
new file mode 100644
index 000000000..c0a843173
--- /dev/null
+++ b/pcr/helm/sigemptyset.patch
@@ -0,0 +1,11 @@
+--- a/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c 2018-01-24 21:17:51.340789192 +0100
++++ b/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c 2018-01-24 21:18:15.104457279 +0100
+@@ -247,7 +247,7 @@ void FLAC__cpu_info(FLAC__CPUInfo *info)
+ #ifdef __ANDROID__
+ sigemptyset (&sigill_sse.sa_mask);
+ #else
+- __sigemptyset(&sigill_sse.sa_mask);
++ sigemptyset(&sigill_sse.sa_mask);
+ #endif
+ sigill_sse.sa_flags = SA_SIGINFO | SA_RESETHAND; /* SA_RESETHAND just in case our SIGILL return jump breaks, so we don't get stuck in a loop */
+ if(0 == sigaction(SIGILL, &sigill_sse, &sigill_save))