diff options
Diffstat (limited to 'audio/ardour/ardour.SlackBuild')
-rw-r--r-- | audio/ardour/ardour.SlackBuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/audio/ardour/ardour.SlackBuild b/audio/ardour/ardour.SlackBuild index a58a946f16..2570e723d3 100644 --- a/audio/ardour/ardour.SlackBuild +++ b/audio/ardour/ardour.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for ardour -# Copyright 2008-2010 Heinz Wiesinger, Amsterdam, The Netherlands +# Copyright 2008-2012 Heinz Wiesinger, Amsterdam, The Netherlands # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=ardour -VERSION=2.8.11 +VERSION=2.8.12 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -97,7 +97,13 @@ find . \ patch -d gtk2_ardour -p0 -i $CWD/SConscript.diff # Omit -O3 from the CFLAGS -patch -p1 < $CWD/SConstruct.diff +patch -p1 -i $CWD/SConstruct.diff + +# Fix issues with gcc-4.7 +patch -p1 -i $CWD/ardour-gcc47.patch + +# fix building vst support +sed -i "s|string.h|ustring.h|" libs/ardour/vst_plugin.cc scons \ PREFIX=/usr \ |