summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-04 02:54:15 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-04 02:54:15 +0000
commite4f0063d7d1fea3518cb1b9665a8c9ad115678f5 (patch)
treee290c6faccdb21747d3a18f436a1e0e0781f7d82 /tools
parente37f7d707be5e8c180498fd527e18d4c06794a0c (diff)
add libuuid to the ardour dependency stack (actually part of utils-linux)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12174 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/build-ardour-stack8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/build-ardour-stack b/tools/build-ardour-stack
index cb099330f1..e275136589 100755
--- a/tools/build-ardour-stack
+++ b/tools/build-ardour-stack
@@ -216,6 +216,14 @@ if [ ! -f curl-7.25.0.tar.bz2 ] ; then
fetch_as_is http://curl.haxx.se/download/curl-7.25.0.tar.bz2
fi
+if [ ! -f util-linux-2.21.tar.xz ] ; then
+ echo util-linux/uuid
+ fetch_as_is http://www.kernel.org/pub/linux/utils/util-linux/v2.21/util-linux-2.21.tar.xz
+fi
+
+tar xf util-linux-2.21.tar.xz && \
+ (set -e && cd util-linux-2.21 && ./configure --prefix=$PREFIX --enable-shared --disable-most-builds --without-ncurses --enable-libuuid && cd libuuid && make && make install) || die "uuid build failed"
+
tar xf boost_1_49_0.tar.bz2 && \
(set -e && cd boost_1_49_0 && ./bootstrap.sh --prefix=$PREFIX --with-libraries=exception && ./b2 && ./b2 install) || die "boost build failed"