diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2014-04-15 00:05:29 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-04-15 00:05:29 +0700 |
commit | 1424839ba04229d29c497035a7cd78be1b98312f (patch) | |
tree | c629ea56438220837202763a38aa7240cfdd71fc /audio/ardour/ardour.SlackBuild | |
parent | 958dc7e59bd3c72840b57a41b6e6f2990d38f113 (diff) |
audio/ardour: Fix linking issues with boost.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/ardour/ardour.SlackBuild')
-rw-r--r-- | audio/ardour/ardour.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/audio/ardour/ardour.SlackBuild b/audio/ardour/ardour.SlackBuild index 4c025b8b1f5b0..da8895a67c28c 100644 --- a/audio/ardour/ardour.SlackBuild +++ b/audio/ardour/ardour.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for ardour -# Copyright 2008-2013 Heinz Wiesinger, Amsterdam, The Netherlands +# Copyright 2008-2014 Heinz Wiesinger, Amsterdam, The Netherlands # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ PRGNAM=ardour VERSION=2.8.16 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -102,6 +102,10 @@ patch -p1 -i $CWD/SConstruct.diff # Bugfixes from git patch -p1 -i $CWD/tempoline_crash.patch patch -p1 -i $CWD/lilv.patch +patch -p1 -i $CWD/boost_startup.patch + +# Fix linking with boost +sed -i "s|lcwiid|lcwiid -lboost_system|" libs/surfaces/wiimote/SConscript scons \ PREFIX=/usr \ |