audio/SuperCollider: Patched SlackBuild.

Fixes build failure with gcc-4.9 on -current.

Signed-off-by: David Spencer <baildon.research@googlemail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
David Spencer 2015-08-21 14:17:30 +01:00 committed by Willy Sudiarto Raharjo
parent 419ea9ca8d
commit 02b1541b62
2 changed files with 23 additions and 0 deletions

View file

@ -61,6 +61,9 @@ if [ "$LIBDIRSUFFIX" = "64" ]; then
patch -p1 < $CWD/fixups_for_x86_64.diff
fi
# Fix build failure with gcc-4.9 (thanks to Debian)
patch -p1 < $CWD/ftbfs-gcc-4.9.patch
# Pass AVAHI=yes to the script to enable avahi support
if [ "${AVAHI:-no}" = "yes" ]; then avahi="OFF"; else avahi="ON"; fi

View file

@ -0,0 +1,20 @@
From: Felipe Sateler <fsateler@debian.org>
Date: Fri, 6 Jun 2014 13:15:18 -0400
Subject: Fix implementation of aligned_allocator::construct<U>.
Fixes a build failure with gcc >= 4.9, because it defines __cplusplus >= 201103L.
A typo, apparently. This patch can be dropped in the next upstream release.
Index: supercollider/server/supernova/utilities/malloc_aligned.hpp
===================================================================
--- supercollider.orig/server/supernova/utilities/malloc_aligned.hpp 2014-09-11 09:15:20.399357542 +0100
+++ supercollider/server/supernova/utilities/malloc_aligned.hpp 2014-09-11 09:15:20.399357542 +0100
@@ -243,7 +243,7 @@
template< class U, class... Args >
void construct(U * p, Args&& ... args)
{
- ::new(p) T(std::forward<Args>(args)...);
+ ::new(p) U(std::forward<Args>(args)...);
}
#endif